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

calling programs

vrgembali1979
Participant
0 Likes
508

Can i call the one report from another report ?

Regards,

Deva

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
479

Hi,

yes u can.

If both are Zee Report then you can use EXPORT/IMPORT MEMORY.

If you used SUBMIT statement to call the report, You can use EXPORT option in SUBMIT statement.

this way you can use one program data in another.

regards,

Archana

Edited by: Archana Kumari on Sep 1, 2009 7:14 AM

3 REPLIES 3
Read only

venkat_o
Active Contributor
0 Likes
479

Hi , <li>Plz search forum before you post . <li>Yes. You can one program from another program . Try this way.



DATA:
      it_rsparams TYPE STANDARD  TABLE OF rsparams,
      wa_rsparams LIKE LINE OF it_rsparams.
 
wa_rsparams-selname = ''. "Screen field name SD_SAKNR for G/L account
wa_rsparams-kind    = 'S'. "S=Select-options P=Parameters
wa_rsparams-sign    = 'I'.
wa_rsparams-option  = 'EQ'.
WA_RSPARAMS-LOW     = '11010'.
wa_rsparams-high    = space.
 
SUBMIT fagl_account_items_gl VIA SELECTION-SCREEN
WITH SELECTION-TABLE rsparams.
and return.
Thanks Venkat.O

Read only

Former Member
0 Likes
479

Hi,

Using SUBMIT statement you can call one report program from another report .

For further details of SUBMIT and its different Variants , plz check the [SUBMIT|http://help.sap.com/saphelp_nw70/helpdata/EN/9f/db9dd035c111d1829f0000e829fbfe/content.htm]

Regards,

Anirban

Read only

Former Member
0 Likes
480

Hi,

yes u can.

If both are Zee Report then you can use EXPORT/IMPORT MEMORY.

If you used SUBMIT statement to call the report, You can use EXPORT option in SUBMIT statement.

this way you can use one program data in another.

regards,

Archana

Edited by: Archana Kumari on Sep 1, 2009 7:14 AM