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

tab strip

Former Member
0 Likes
480

can anybody send me notes on tabstrip in reports

Points will be given

1 ACCEPTED SOLUTION
Read only

athavanraja
Active Contributor
0 Likes
450

check out this demo program

DEMO_SEL_SCREEN_WITH_TABSTRIP

Regards

Raja

2 REPLIES 2
Read only

athavanraja
Active Contributor
0 Likes
451

check out this demo program

DEMO_SEL_SCREEN_WITH_TABSTRIP

Regards

Raja

Read only

Former Member
0 Likes
450

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