You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add IsHandled pattern to procedure AutoUpdateExchangeRates.
local procedure AutoUpdateExchangeRates()
var
JobQueueEntry: Record "Job Queue Entry";
DummyRecId: RecordID;
IsHandled: Boolean;
begin
OnBeforeAutoUpdateExchangeRates(Rec, IsHandled);
if IsHandled then
exit;
if Enabled then begin
[...]
local procedure OnBeforeAutoUpdateExchangeRates(CurrExchRateUpdateSetup: "Curr. Exch. Rate Update Setup": record "Curr. Exch. Rate Update Setup"; var IsHandled: boolean)
begin
end;
Additional context
Extensibility for exchange rates services.
The text was updated successfully, but these errors were encountered:
kontax85
changed the title
[Event Request] Table 1650 "Curr. Exch. Rate Update Setup" - AutoUpdateExchangeRates
[Event Request] Table 1650 "Curr. Exch. Rate Update Setup" - Procedure AutoUpdateExchangeRates
Feb 20, 2025
Describe the request
Add IsHandled pattern to procedure AutoUpdateExchangeRates.
[...]
Additional context
Extensibility for exchange rates services.
The text was updated successfully, but these errors were encountered: