Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Error reading tooltips #285

Open
Doriano-Ponzo-EOS opened this issue Jan 14, 2025 · 0 comments
Open

Error reading tooltips #285

Doriano-Ponzo-EOS opened this issue Jan 14, 2025 · 0 comments

Comments

@Doriano-Ponzo-EOS
Copy link

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant