I have a requirement to hide a 'Customer Statistics FactBox' on the Sales Order List.
I want to do it from the AL Code and not from the design/personalization, How can I do that?
I have a requirement to hide a 'Customer Statistics FactBox' on the Sales Order List.
I want to do it from the AL Code and not from the design/personalization, How can I do that?
Hi,
What is Control1902018507?
Thanks,
It's Working.
hi,
below should do the job. Try it out.
pageextension 50000 MyExtension extends "Sales Order List" { layout { modify(Control1902018507) { Visible = false; } } }