2008 Aug 07 5:37 PM
Hi All,
I have created a Zprogram where i have two fields namely ReportMonth and DocumentNumber in an internal table,Based upon every report month i need to call a Standard program with values in the selection screen being filled from my Z-PROG,the Standard program has both the Doucument No, and Report month in the selection screen.Please help me in this regard
Thanks
Sundar
2008 Aug 07 5:43 PM
Hi,
Take a look at the ABAP help for the command SUBMIT, this should satisfy your requirement.
Regards,
Nick
Hi All,
I have created a Zprogram where i have two fields namely ReportMonth and DocumentNumber in an internal table,Based upon every report month i need to call a Standard program with values in the selection screen being filled from my Z-PROG,the Standard program has both the Doucument No, and Report month in the selection screen.Please help me in this regard
Thanks
Sundar
2008 Aug 07 5:43 PM
Hi,
Take a look at the ABAP help for the command SUBMIT, this should satisfy your requirement.
Regards,
Nick
2008 Aug 07 5:47 PM
HI
[Check The Example|http://www.sapdevelopment.co.uk/reporting/rep_submit.htm]
Regards
Pavan
2008 Aug 07 6:10 PM
Try like this
loop at ur internal table.
SUBMIT <Program name>
WITH P_DOCno itable-docno
WITH P_Reportmonth itable-remonth
AND RETURN.
endloop.
2010 Feb 02 1:53 PM
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |