★ Featured App

FinanzOnline VAT Reg. No. Validation
VAT Reg. No. validation via the Austrian FinanzOnline (FON) service.
More information AppSource
Update Notification
The "NCEX Check Update Status Mgt." codeunit can be used to add an update notification, e.g. on the setup page of a NAVAX extension. The following code shows the implementation on a setup page. The code is identical for all extensions.
trigger OnOpenPage()
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;
![]() | FinanzOnline VAT Reg. No. Validation VAT Reg. No. validation via the Austrian FinanzOnline (FON) service. More information ![]() |