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

Tabstrip with Wizard

Former Member
0 Likes
541

Hi all,

I have created the Tabstrip with wizard screen with seven tabs as subscreens 001-007. And also i have created six table control screens with 25 rows and 10 coloums which i need to insert that table control screen in the subscreens of tabstrip screen from tab2. So now my problem is how to call the table control screen into the subscreens. Please help me out as it is very urgent.

Regards,

Santosh

Hi all,

I have created the Tabstrip with wizard screen with seven tabs as subscreens 001-007. And also i have created six table control screens with 25 rows and 10 coloums which i need to insert that table control screen in the subscreens of tabstrip screen from tab2. So now my problem is how to call the table control screen into the subscreens. Please help me out as it is very urgent.

Regards,

Santosh

2 REPLIES 2
Read only

former_member787646
Contributor
0 Likes
513

Hi,

In the main program where you have placed the TABSTRIP

control in that only you have to manage to display the subscreens when a user selects a tab.

Eg..

Case OK_CODE.

when 'FC1'.

SET SCR_NO = '101'.

SET TABSTRIP-ACTIVETAB = 'FC1'.

......................

......................

EndCase.

IN THE FLOW LOGIC you have to write the code.

Call Subscreen <subscreen area>

INCLUDING SY-CPROG SCR_NO.

Hope it helps you.

Murthy

Edited by: Kalyanam Seetha Rama Murthy on Jul 7, 2008 1:26 PM

Read only

0 Likes
513

Hi Kalyanam,

I am getting the desired output but now i am facing with another issue. The displayed table control screen is not displaying the column titles. So to display the column titles what to do?

Regards,

Santosh