Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Subscreen / tabstrip

Former Member
0 Likes
595

I am not sure if this can be done, but still want to confirm it ..

I have a tabstrip with 5 tabs.. Under certain conditions I want to replace a tabstrip with a subscreen of its own... for certain users I want to show the tabstrip and for others I want to show a single subscreen.. Is this possible?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
571

did u try doing it using the SCREEN table.

loop at screen.

if <your condition>.

if screen-name = 'TABSTRIP name'.

screen-active = '0'.

endif.

else.

if screen-name = 'TABSTRIP name'.

screen-active = '1'.

endif.

endif.

modify screen.

endloop.

just try this if it serves your req...

rgds,

PJ

3 REPLIES 3
Read only

Former Member
0 Likes
571

hi.

you can do this by defining the tabstrip in a subscreen.

Call the tabstrip in a sub screen area of ur main screen for those whom u want to show tabstrip, otherwise call those subscreens which u r calling in tabstrip, in that subscreen area of ur main screen, for those whom u want to show screens not tabstrip.

have a nice time ahead

Mithlesh

Read only

Former Member
0 Likes
572

did u try doing it using the SCREEN table.

loop at screen.

if <your condition>.

if screen-name = 'TABSTRIP name'.

screen-active = '0'.

endif.

else.

if screen-name = 'TABSTRIP name'.

screen-active = '1'.

endif.

endif.

modify screen.

endloop.

just try this if it serves your req...

rgds,

PJ