KVSCOREReloadExpTierNtfctn#
Procedures#
SendOrRecallNotification(Integer) :#
Summary: Call this procedure to send or recall a notification if the experience tier has to be reloaded.
procedure SendOrRecallNotification(ApplicationAreaFieldId: Integer):
Parameters:
ApplicationAreaFieldId
: The FieldId of the Application Area to check from the Application Area Setup Record
Example:
trigger OnOpenPage()
var
TempApplicationAreaSetup: Record "Application Area Setup" temporary;
ReloadExpTierNtfctn: Codeunit KVSCOREReloadExpTierNtfctn;
begin
ReloadExpTierNtfctn.SendOrRecallNotification(TempApplicationAreaSetup.FieldNo(MyAppArea));
end;