Why do you need this change?
I need to be able to add an additional filter to CurrExchRateUpdateSetup before the repeat until loop
Describe the request
Current code
CurrExchRateUpdateSetup.SetRange(Enabled, true);
if CurrExchRateUpdateSetup.FindSet() then
New code
CurrExchRateUpdateSetup.SetRange(Enabled, true);
OnBeforeCurrExchRateUpdateSetupLoop(CurrExchRateUpdateSetup);
if CurrExchRateUpdateSetup.FindSet() then
the new event would be as follows...
[IntegrationEvent(false, false)]
local procedure OnBeforeCurrExchRateUpdateSetupLoop(var CurrExchRateUpdateSetup: Record "Curr. Exch. Rate Update Setup")
begin
end;
Internal work item: AB#639745
Why do you need this change?
I need to be able to add an additional filter to CurrExchRateUpdateSetup before the repeat until loop
Describe the request
Current code
New code
the new event would be as follows...
Internal work item: AB#639745