‎2006 Sep 28 10:57 AM
i have a tab control i want to make some tabs visible to some users and some to others how can i achive this
raman
‎2006 Sep 28 11:03 AM
Assign a group name to the tab.
In the PBO, write a code to make that invisible.
loop at screen.
IF user = 'XYZ'.
IF screen-group1 = 'SPA'.
screen-invisible = '1'.
MODIFY SCREEN.
ENDIF.
ENDIF.
endloop.
Regards,
Prakash.
‎2006 Sep 28 11:03 AM
u can check the parameter invisible = 'X' in attributes of tab strip