Application Development 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: 

Selection screen within Module pool screen

Former Member
0 Kudos

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..!

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Check the standard program give by SAP. i think something wrong at the user command.

DEMO_SEL_SCREEN_IN_TABSTRIP

Thanks,

Venkatesh

2 REPLIES 2

Former Member
0 Kudos

Hi,

Check the standard program give by SAP. i think something wrong at the user command.

DEMO_SEL_SCREEN_IN_TABSTRIP

Thanks,

Venkatesh

0 Kudos

Hi venkatesh,

Thanks for the help... The problem is solved now...