Nächstes Thema
★ Featured App
Finmatics Autonomous Accounting
Schnittstelle für KI-gesteuerte Belegverarbeitung von Finmatics.
Weitere Informationen
AppSource
trigger OnAfterGetCurrRecord()
var
AppInfo: ModuleInfo;
UpdateTaskParameters: Dictionary of [Text, Text];
begin
Clear(UpdateTaskID);
NavApp.GetCurrentModuleInfo(AppInfo);
UpdateTaskParameters.Add('AppID', AppInfo.Id());
CurrPage.EnqueueBackgroundTask(UpdateTaskID, Codeunit::"NCEX Check Update Status Mgt.", UpdateTaskParameters, 0, PageBackgroundTaskErrorLevel::Ignore);
end;
var
UpdateTaskID: Integer;
trigger OnPageBackgroundTaskCompleted(TaskId: Integer; Results: Dictionary of [Text, Text])
var
NCEXCheckUpdateStatusMgt: Codeunit "NCEX Check Update Status Mgt.";
begin
if (TaskId = UpdateTaskID) then
NCEXCheckUpdateStatusMgt.ShowUpdateNotification(Results);
end;
Finmatics Autonomous Accounting Schnittstelle für KI-gesteuerte Belegverarbeitung von Finmatics. Weitere Informationen AppSource |