‎2009 Jun 16 8:13 AM
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,
‎2009 Jun 16 8:25 AM
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.
‎2016 Apr 26 11:37 AM