‎2009 Sep 01 3:10 AM
‎2009 Sep 01 6:13 AM
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
‎2009 Sep 01 3:13 AM
Hi ,
<li>Plz search forum before you post .
<li>Yes. You can one program from another program .
Try this way.
Thanks
Venkat.O
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.
‎2009 Sep 01 5:48 AM
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
‎2009 Sep 01 6:13 AM
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