Why do you need this change?
We'd like to add some custom logic in the Export Item Budget to Excel report.
Describe the request
We would like to request these events, and to expose these global variables, please.
[IntegrationEvent(false, false)]
local procedure OnBeforeUploadFile(var TempExcelBuffer: Record "Excel Buffer" temporary; var ServerFileName: Text; var ClientFileName: Text; var SheetName: Text[250]; var IsHandled: Boolean)
begin
end;
[IntegrationEvent(false, false)]
local procedure OnAfterDateFilterCheck(var TempExcelBuffer: Record "Excel Buffer" temporary)
begin
end;
[IntegrationEvent(true, false)]
local procedure OnBeforeEnterFilterInCellForLineColumnDimCode(var RowNo: Integer)
begin
end;
[IntegrationEvent(true, false)]
local procedure OnBeforeEnterAllCells(ItemBudgetName: Record "Item Budget Name"; var RowNo: Integer; var ColumnNo: Integer; var TempExcelBuffer: Record "Excel Buffer" temporary; var IsHandled: Boolean)
begin
end;
[IntegrationEvent(true, false)]
local procedure OnBeforeOpenExcel(DoUpdateExistingWorksheet: Boolean; var TempExcelBuffer: Record "Excel Buffer" temporary; ItemBudgetName: Record "Item Budget Name"; var IsHandled: Boolean)
begin
end;
[IntegrationEvent(false, false)]
local procedure OnBeforeFindRecordOnFindLine(ItemBudgetName: Record "Item Budget Name")
begin
end;
[IntegrationEvent(false, false)]
local procedure OnBeforeFindRecordOnNextLine(ItemBudgetName: Record "Item Budget Name")
begin
end;
[IntegrationEvent(false, false)]
local procedure OnBeforeFindRecordOnFindColumn(ItemBudgetName: Record "Item Budget Name")
begin
end;
[IntegrationEvent(false, false)]
local procedure OnBeforeFindRecordOnNextColumn(ItemBudgetName: Record "Item Budget Name")
begin
end;
Why do you need this change?
We'd like to add some custom logic in the
Export Item Budget to Excelreport.Describe the request
We would like to request these events, and to expose these global variables, please.