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: 

Internal tables

Former Member
0 Kudos

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

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Take a look at the ABAP help for the command SUBMIT, this should satisfy your requirement.

Regards,

Nick

4 REPLIES 4

Former Member
0 Kudos

Hi,

Take a look at the ABAP help for the command SUBMIT, this should satisfy your requirement.

Regards,

Nick

bpawanchand
Active Contributor
0 Kudos

HI

[Check The Example|http://www.sapdevelopment.co.uk/reporting/rep_submit.htm]

Regards

Pavan

former_member585060
Active Contributor
0 Kudos

Try like this

loop at ur internal table.

SUBMIT <Program name>

WITH P_DOCno itable-docno

WITH P_Reportmonth itable-remonth

AND RETURN.

endloop.

Former Member
0 Kudos

helpful