‎2007 Nov 28 1:08 AM
Hi all,
Could some one explain how to code dynamic tabstrip functionality.Based on a variable value the tab strip should change . Number of tabstrip can vary from 1 or 2 or 3.
Thanks in advance,
dan.
‎2007 Nov 28 7:20 AM
You should be able to set up your tabstrip with 3 tabs, and then just inactivate those you don't want to see in your PBO logic e.g.
loop at screen.
if screen-name = 'GTAB01'. "name of the pushbutton in tabstrip
screen-active = 0.
modify screen.
endif.
endloop.You can see the names of the tabstrip pushbuttons in the element list for the dynpro.
Jonathan
‎2007 Nov 28 7:20 AM
You should be able to set up your tabstrip with 3 tabs, and then just inactivate those you don't want to see in your PBO logic e.g.
loop at screen.
if screen-name = 'GTAB01'. "name of the pushbutton in tabstrip
screen-active = 0.
modify screen.
endif.
endloop.You can see the names of the tabstrip pushbuttons in the element list for the dynpro.
Jonathan
‎2007 Nov 28 2:17 PM