Why do you need this change?
We need the possibility to add additional filters to the report slection, based on custom fields.
Describe the request
Hello,
can you please add a new Event OnCopyReportSelectionToReportSelection in Procedure on Table 77 "Report Selections" ?
procedure CopyReportSelectionToReportSelection(var TempToReportSelections: Record "Report Selections" temporary): Boolean
begin
OnCopyReportSelectionToReportSelection(Rec);
TempToReportSelections.Reset();
TempToReportSelections.DeleteAll();
if FindSet() then
repeat
TempToReportSelections := Rec;
if TempToReportSelections.Insert() then;
until Next() = 0;
exit(TempToReportSelections.FindSet());
end;
Describe the request
We need the possibility to add additional filters to the report slection, based on custom fields.
[IntegrationEvent(false, false)]
local procedure OnCopyReportSelectionToReportSelection(var ReportSelections: Record "Report Selections")
begin
end;
Internal work item: AB#608817
Why do you need this change?
We need the possibility to add additional filters to the report slection, based on custom fields.
Describe the request
Hello,
can you please add a new Event OnCopyReportSelectionToReportSelection in Procedure on Table 77 "Report Selections" ?
Describe the request
We need the possibility to add additional filters to the report slection, based on custom fields.
Internal work item: AB#608817