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 Strips

Former Member
0 Likes
732

Hi,

Good day experts,

Plz provide the sample programme which has shows the report with tabsrips.

ex: If i click the frist tabstrip, i will get the one departmental report. and if i click the second tabstrip i will get another department report.

regards,

raghu

6 REPLIES 6
Read only

Former Member
0 Likes
709

hi,,

DEMO_SEL_SCREEN_WITH_TABSTRIP is for tabstrip in sel-screen

DEMO_DYNPRO_TABSTRIP_LOCAL

DEMO_DYNPRO_TABSTRIP_SERVER

for tabstrip in Dialog pgm

try this in se38.........

Read only

Former Member
0 Likes
709

HI,

Here is a easy example with a Tabstrip

[http://www.sapdev.co.uk/reporting/selscr/selscr_tabstrip.htm]

Regards

Read only

Former Member
0 Likes
709

Hi,

u can use this code..........

REPORT .........................

SELECTION-SCREEN BEGIN OF SCREEN 100 AS SUBSCREEN.

PARAMETERS: p1 TYPE c LENGTH 10,

p2 TYPE c LENGTH 10,

p3 TYPE c LENGTH 10.

SELECTION-SCREEN END OF SCREEN 100.

SELECTION-SCREEN BEGIN OF SCREEN 200 AS SUBSCREEN.

PARAMETERS: q1 TYPE c LENGTH 10,

q2 TYPE c LENGTH 10,

q3 TYPE c LENGTH 10.

SELECTION-SCREEN END OF SCREEN 200.

SELECTION-SCREEN: BEGIN OF TABBED BLOCK mytab FOR 10 LINES,

TAB (20) button1 USER-COMMAND push1

DEFAULT SCREEN 100,

TAB (20) button2 USER-COMMAND push2

DEFAULT SCREEN 200,

END OF BLOCK mytab.

INITIALIZATION.

button1 = 'Selection Screen 1'.

button2 = 'Selection Screen 2'.

start-of-selection.

if push1 = 'X'.

perform..............

elseif

push2 = 'X'.

perform.........

endif.

regards...

sunil gupta.

Read only

0 Likes
709

Hi,

Good day experts,

Thank you for ur concern. i need tabstrips when progamme was executed then the tabstips will be appear. under the tabstrip, Different types of accounts should be come in the report.

for example : if i click the chick box on the selection-screen,which is for all department accounts. then 5 tabstrips will be shown. if i click frist tabstrip then one department account report should be appear.

i need the above requriment.plz help me.

regards,

kk

Read only

0 Likes
709

hi,

create a screen in your report.

call that screen if ur cond is satisfied.

in that screen make tabstrip using wizard.

subscreen(s) ll be created automatically.

when u click a tab one subscreen(respective) ll be called and in that subscreen u can display whatever u want

Read only

Former Member
0 Likes
709

Hi,

For any sample code check following t-codes:

1. DWDM

2. ABAPDOCU

Reward points, if useful.

Regards,

Nishant Gupta