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: 

Hi i want to add three reports so pls provide the solution

Former Member
0 Kudos

Hi Friends,

Actually iam having three reports so the requirement is i want to execute those three reports under one click ie... when iam executing first one the remaing two also wants to execute under that one only\

So pls provide the solution and at the same time logic also

Thanks & Regards

Mohan Reddy

10 REPLIES 10

JozsefSzikszai
Active Contributor
0 Kudos

hi,

one way would be to create a program which SUBMITs the first report, than SUBMITs the second and finally the third one.

hope this helps

ec

0 Kudos

Hi Frined thanks for ur quick reply

so we call the report within report as by using

Submit program program name via selection screen varient name

so where exactly i want to write this one pls provide thye solution

Thaks & Regards

Mohan Reddy

0 Kudos

hi,

put check boxs or radio buttons on the selection screen and default values for the check boxes or radio buttons as 'X'.

warm regards,

surendarreddy.

Former Member
0 Kudos

Hi,

you can do it by calling the one executable progam from other.

If you do not want to return back to the calling program , use SUBMIT statement

If you want to return back to the calling program , use SUBMIT...... AND RETURN statement.

FOR DETAILS CHECK

http://help.sap.com/saphelp_nw70/helpdata/EN/9f/db9dd035c111d1829f0000e829fbfe/content.htm

Former Member
0 Kudos

Sorry ....same post

former_member329859
Participant
0 Kudos

Hi,

you want to three reports at a time but it is not possible to u to see all three reports at a time so you have option of using 'hotspot' you will able to pass tcodes of other programs

ok

Former Member
0 Kudos

Hello,

Create a new report eg ZTEST.

Put in following sample code

the sample code is.

submit <prog-name> with parameter1 = val1

with parameter = val2......and so on

Use the above statement 3 times and execute it.

All 3 reports will be executed 1 by 1 without user intervention.

Hope this helps,

Rajat

kesavadas_thekkillath
Active Contributor
0 Kudos

just club these in a single report and execute it

submit REPORTA and return.

submit REPORTB and return.

submit REPORTC and return.

if u want to pass selection parameters to the report include that too...check in F1 help.

Former Member
0 Kudos

hi

create one new program in SE38..in that write like this.

submit program1.

submit program2.

submit program3.

Former Member
0 Kudos

This message was moderated.