‎2008 Jan 14 1:53 PM
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
‎2008 Jan 14 2:00 PM
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.........
‎2008 Jan 14 2:04 PM
HI,
Here is a easy example with a Tabstrip
[http://www.sapdev.co.uk/reporting/selscr/selscr_tabstrip.htm]
Regards
‎2008 Jan 14 2:12 PM
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.
‎2008 Jan 15 5:34 AM
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
‎2008 Jan 15 5:55 AM
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
‎2008 Jan 15 5:40 AM
Hi,
For any sample code check following t-codes:
1. DWDM
2. ABAPDOCU
Reward points, if useful.
Regards,
Nishant Gupta