I tried to modify the caption of action like below using Visual Code AL, but It doesn't work as expected. And also how can I add new icon to the Business Central on Cloud if I want to change the icon for the Bank Accounts that in yellow circle?
Can I get some example of the code to change the Customer and Bank Accounts?
Thanks
I tried to modify the field, but it doesn't work for actions. The code I tried:
pageextension 50100 DemoAddFieldCardExt extends "Customer Card"
{actions
{
// Add changes to page actions here
modify(Customer)
{
CaptionML = ENU = 'Students';
}
}
}