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

Former Member
0 Likes
694

what is tabstrip and plz explain about it?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
672

Hi,

Check this.

http://help.sap.com/saphelp_nw2004s/helpdata/en/04/10f2469e0811d1b4700000e8a52bed/content.htm

Regards,

Suruchi

Message was edited by:

Suruchi Mahajan

4 REPLIES 4
Read only

Former Member
0 Likes
672

Hi

Tabstrip is used to display multiple subscreens on the same area of the screen in designing transactions

see the links related to Module pool, in which you find the Tabstrip

Check the below link:

http://wiki.ittoolbox.com/index.php/FAQ:What_is_module_pool_program_in_abap%3F

http://help.sap.com/saphelp_46c/helpdata/en/35/26b1aaafab52b9e10000009b38f974/content.htm

http://sap.mis.cmich.edu/sap-abap/abap09/sld011.htm

http://sap.mis.cmich.edu/sap-abap/abap09/index.htm

http://www.geocities.com/ZSAPcHAT

http://www.allsaplinks.com/files/using_table_in_screen.pdf

http://help.sap.com/saphelp_webas630/helpdata/en/9f/db9cdc35c111d1829f0000e829fbfe/content.htm

http://www.sapdevelopment.co.uk/dialog/dialoghome.htm

http://www.sap-img.com/

http://help.sap.com/saphelp_46c/helpdata/en/08/bef2dadb5311d1ad10080009b0fb56/content.htm

http://www.sapgenie.com/links/abap.htm

http://help.sap.com/saphelp_nw04/helpdata/en/c9/5472fc787f11d194c90000e8353423/frameset.htm

You can also check the transaction ABAPDOCU which gives you lot of sample programs.

Also you can see the below examples...

Go to se38 and give demodynpro and press F4.

YOu will get a list of demo module pool programs.

One more T-Code is ABAPDOCU.

YOu can find more examples there.

See the prgrams:

DEMO_DYNPRO_TABLE_CONTROL_1 Table Control with LOOP Statement

DEMO_DYNPRO_TABLE_CONTROL_2 Table Control with LOOP AT ITAB

http://www.geocities.com/ZSAPcHAT

http://www.allsaplinks.com/files/using_table_in_screen.pdf

Reward points for useful Answers

Regards

Anji

Read only

Former Member
0 Likes
673

Hi,

Check this.

http://help.sap.com/saphelp_nw2004s/helpdata/en/04/10f2469e0811d1b4700000e8a52bed/content.htm

Regards,

Suruchi

Message was edited by:

Suruchi Mahajan

Read only

Former Member
0 Likes
672

hi

An easy way to present information that belongs together logically

Displays various components of an application on a single screen and allows the user to navigate between the components

Container for other screen objects

Use a tabstrip when you have different components which form a logical unit

Can be used in Batch input programs

DO NOT use a tabstrip if the

screen environment has to change

If there is an order in which the components have to be processed

If the number of tabs are dynamically controlled in the components

To create a tabstrip control

Define the tab area

Define the tab titles – add further tabs if requred – behaves like a pushbutton

Assign a subscreen area (you then call a subscreen here )

In the ABAP program use the CONTROLS statement and declare an object with the same name and type TABSTRIP eg. : CONTROLS : tab1 type tabstrip.

hope this helps...

.

<b>do reward if useful...</b>

regards

dinesh

Read only

Former Member
0 Likes
672

Hi,

<b>Tabstrip control :</b>

A tabstrip control is a screen element that consists of multiple tabstrip pages. Every tabstrip page contains a single-line tab title which is linked with a function code which makes it possible to access the tabstrip page with a double-click. Below the tab title, a tabstrip page consists of a subscreen area. A subscreen area must be assigned to every tab title. To do this, you have two options:

Scrolling in the SAP GUI

A tab title is assigned to each subscreen area and the function codes of the individual tab titles are defined with the function type "P". If the user selects a tab title, the event PAI is not raised. The corresponding subscreens are incorporated once into every individual subscreen area using the statement CALL SUBSCREEN of the flow logic. If the user selects a tab title, then the SAP GUI scrolls to the corresponding tabstrip page and displays its content.

Scrolling in the ABAP program

To each tab title, the same subscreen area is assigned and the function codes of the individual tab titles are defined without typing. If the user selects a tab title, then the event PAI is triggered. The corresponding subscreen is dynamically incorporated into the subscreen area CALL SUBSCREEN when scrolling using the statement CALL SUBSCREEN of the flow logic. In the ABAP-program, you must activate the corresponding tabstrip title CONTROLS and the correct subscreen dynpro must be scheduled for the subscreen area.

<b>Use of Tabstrip in SAP :</b>

You esp. use tabstrip control when you want to display many subscreens together in one area ion your main screen . In Transaction MM01 , after you provide the values in the 1st screen , you are headed towards the next screen which has got many views linked . There for each view , when you click the control ( like basic view 1 / basic view 2 / MRP etc ) , the respective subscreen area appear on the screen .And you provide the values in their respective fields . this is a good example for understanding what are tabstrip controls . there may be any number of fields from any number of tables in a table control , I mean you can not take the fields directly from different tables and put it into the Tab. control , instead you can create a structure or itab collecting fields you want to present in the TC and the crete a table control taking reference from that structure .. I hope these explanations are satisfactory to you ...

Check these Demo programs in SE38

demo_dynpro_tabstrip_local

demo_dynpro_tabstrip_server

Check This,

http://help.sap.com/saphelp_nw2004s/helpdata/en/6d/5da5428295c911e10000000a1550b0/frameset.htm

http://help.sap.com/saphelp_nw2004s/helpdata/en/24/23b937ba187121e10000009b38f8cf/frameset.htm

http://help.sap.com/saphelp_nw2004s/helpdata/en/04/10f2469e0811d1b4700000e8a52bed/frameset.htm

Regards,

Padmam.