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

Internal tables

Former Member
0 Likes
523

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
Read only

Former Member
0 Likes
495

Hi,

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

Regards,

Nick

4 REPLIES 4
Read only

Former Member
0 Likes
496

Hi,

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

Regards,

Nick

Read only

bpawanchand
Active Contributor
0 Likes
495

HI

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

Regards

Pavan

Read only

former_member585060
Active Contributor
0 Likes
495

Try like this

loop at ur internal table.

SUBMIT <Program name>

WITH P_DOCno itable-docno

WITH P_Reportmonth itable-remonth

AND RETURN.

endloop.

Read only

Former Member
0 Likes
495

helpful