2012 Sep 03 1:57 PM
Hi all,
I have a tabbed selection screen. How can I see during runtime which tab is active? I assumed sy-ucomm would do the trick, since I assign a user-command to a tab 'button'?
*.. build tabbed screen
selection-screen: begin of tabbed block mytab for 8 lines,
tab (20) button0 user-command push0
default screen 100,
tab (20) button1 user-command push1
default screen 101,
tab (20) button2 user-command push2
default screen 102,
end of block mytab.
thanks!
2012 Sep 03 2:08 PM
Hi,
Have a look at demo program DEMO_SEL_SCREEN_IN_TABSTRIP or DEMO_SEL_SCREEN_WITH_TABSTRIP (can be found using transaction abapdocu). You have to hold the active tab in the TABSTRIP variable.
Kind Regards,
Jeroen
2012 Sep 03 2:08 PM
Hi,
Have a look at demo program DEMO_SEL_SCREEN_IN_TABSTRIP or DEMO_SEL_SCREEN_WITH_TABSTRIP (can be found using transaction abapdocu). You have to hold the active tab in the TABSTRIP variable.
Kind Regards,
Jeroen
2012 Sep 03 2:13 PM