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: 

tab strip

Former Member
0 Kudos

can anybody send me notes on tabstrip in reports

Points will be given

1 ACCEPTED SOLUTION

athavanraja
Active Contributor
0 Kudos

check out this demo program

DEMO_SEL_SCREEN_WITH_TABSTRIP

Regards

Raja

2 REPLIES 2

athavanraja
Active Contributor
0 Kudos

check out this demo program

DEMO_SEL_SCREEN_WITH_TABSTRIP

Regards

Raja

Former Member
0 Kudos

Hi Pintu,

TO define a TaBStrip ,..you must define a tabstrip area and the associated tab pages, and assign a subscreen to the tab pages... You do not have to (indeed, cannot) declare the tabstrip control or program the screen

flow logic in your ABAP program, since both are automatically generated.

this s gow you define it..

SELECTION-SCREEN: BEGIN OF TABBED BLOCK <tab_area> FOR <n> LINES,
TAB (<len>) <tab1> USER-COMMAND <ucom1>
END OF BLOCK <tab_area>.

refer this <a href="http://www.sap-img.com/ge001.htm">Sample code</a> ...

regards

satesh