2011 Jul 28 2:55 PM
Hello Experts,
I have created a module pool program....In that program I have one Main screen 100. Within that screen I have TABSTRIP control with 3 TABS and their corresponding subscreen areas.
Now in those tabs, I want SELECT-OPTIONS (like we have on report program selection screen)....so in TOP include of the main program I have written code to create those select options as below...
SELECTION-SCREEN BEGIN OF SCREEN 111 as subscreen.
--
--
--
SELECTION-SCREEn END OF SCREEN 111.
SELECTION-SCREEN BEGIN OF SCREEN 222 as subscreen.
--
--
--
SELECTION-SCREEn END OF SCREEN 222.
SELECTION-SCREEN BEGIN OF SCREEN 333 as subscreen.
--
--
--
SELECTION-SCREEn END OF SCREEN 333.
And I am calling this subscreen in my TABSTRIP TABS... and it is displaying properly....
But the problem is, After i enter some value in any field (or even click on any field of first tab), it doesn't scroll to second tab.
But if i run transaction again and try to switch between tabs, the switching happens, but the moment i click on any field of any of the tab, the switching doesn't happen and stops at that perticular tab only...
Please Help...
Thanks in advance..!
2011 Jul 29 5:37 AM
Hi,
Check the standard program give by SAP. i think something wrong at the user command.
DEMO_SEL_SCREEN_IN_TABSTRIP
Thanks,
Venkatesh
2011 Jul 29 5:37 AM
Hi,
Check the standard program give by SAP. i think something wrong at the user command.
DEMO_SEL_SCREEN_IN_TABSTRIP
Thanks,
Venkatesh
2011 Jul 29 8:32 AM
Hi venkatesh,
Thanks for the help... The problem is solved now...