2008 Sep 25 10:50 AM
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
2008 Sep 25 10:52 AM
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
2008 Sep 25 10:55 AM
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
2008 Sep 25 10:53 AM
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.
2008 Sep 25 10:53 AM
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
2008 Sep 25 10:54 AM
2008 Sep 25 10:55 AM
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
2008 Sep 25 11:00 AM
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
2008 Sep 25 11:02 AM
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.
2008 Sep 25 11:03 AM
hi
create one new program in SE38..in that write like this.
submit program1.
submit program2.
submit program3.
2008 Sep 25 1:27 PM