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

using submit to call RCCLORD program

Former Member
0 Likes
864

Hi,

I want to call RCCLORD program in my zprogram by passing the below fields from my z program:

Process order, Plant,Order Type.

Can any one tell me how do i write it.. need the exact syntax to pass the values to the selection screen of the called program.

thanks,

2 REPLIES 2
Read only

Former Member
0 Likes
682

Try something like following

tables :aufk.
SELECT-OPTIONS: S_AUFNR for aufk-aufnr,
                S_WERKS for aufk-WERKS,
                S_AUART for aufk-auart.

SUBMIT RCCLORD
   with S_AUFNR in S_AUFNR
   with S_WERKS in s_werks
   with S_AUART in S_AUART
   AND RETURN.

Read only

0 Likes
682

This message was moderated.