Dear friends,
I am creating a page with around 400 fields, and 300 fields of them should change the visibility and caption dynamically according to the user setup record from set up table.
My requirement is to set the visibility and caption of 300 fields in code C/AL dynamically. As far as I know, I can set a boolean variable as visible property for fields. But what about caption? Also, as I have so much fields, can I simplified the process by some code like below
_FieldControl.visible(false);
_FieldControl.caption('ABC');
Thanks in advance.
*This post is locked for comments