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
I want to use table "Page Table Field" to read tooltips.
Add action with following code to a page (any):
action(TEST)
{
Caption = 'TEST';
Image = Start;
trigger OnAction()
var
PageTableField: Record "Page Table Field";
begin
PageTableField.Reset();
PageTableField.SetRange("Page ID", 456); //same with 8052
if PageTableField.FindSet() then
repeat
Message(PageTableField.Tooltip);
until PageTableField.Next() = 0;
end;
}
Client crash reading table.
Does anyone know a way to read this information via AL from saas?
The text was updated successfully, but these errors were encountered:
I want to use table "Page Table Field" to read tooltips.
Add action with following code to a page (any):
action(TEST)
{
Caption = 'TEST';
Image = Start;
Client crash reading table.
Does anyone know a way to read this information via AL from saas?
The text was updated successfully, but these errors were encountered: