I'm writing a code in AL to insert all actions of all pages in the system in a table, BUT somehow looping over Record "Page Action"
, In this code snippet I've just shown the name of the action but still running this procedure
didn't show any action:
procedure populateActions()
var
PageAction: Record "Page Action";
begin
PageAction.Reset();
if PageAction.FindSet() then begin
repeat begin
Message(PageAction.Name);
end until PageAction.Next() = 0;
end;
end;