Hi Selva Kumar,
First let me tell you that you can use single "subscreen area" for different tabstrips, as well as single "subscreen". But using a single subscreen for each tab is of no use. Any how using single shared subscreen area can be used so that you can open different subscreens with different tabs without assigning different subscreen areas for each tab.
For your query, following requirements must be met:
- Create a third tab using Pushbutton and drag it to the tabstrip.
- All tab pages share a common subscreen area.
- All tab titles have function code type ' ' (space).
Code sample:
PROCESS BEFORE OUTPUT.
MODULE ..........
.............
CALL SUBSCREEN subarea INCLUDING SY-CPROG dynnr.
PROCESS AFTER INPUT.
CALL SUBSCREEN subarea.
MODULE.........
The PBO must contain a module before the subscreen is called, in which you place the name of the subscreen in the corresponding variable. Assign an initial vale to the subscreen variable so that the screen is processed the first time.
In PAI block, call a module in which the Function code of the ACTIVETAB title is placed in the active tab field of the structure you created with the type TABSTRIP.
Regards-
Chirag Keswani