Hi
i tried to move parameters from Z-program to RKPEP003.
The problem that Comapny code is a dynamic selection in program RKPEP003.
how can move data from Z-program to RKPEP003
i tried to use sumbit --> but the field does not exsist
and i tried to use set paramteres
maybe you can help me?
thanks have a nice day
Hi
DATA: TEXPR TYPE RSDS_TEXPR,
W_EXPR LIKE RSDSEXPR,
W_TEXPR TYPE RSDS_EXPR.
W_EXPR-FIELDNAME = 'BUKRS'.
W_EXPR-OPTION = 'EQ'.
W_EXPR-LOW = <COMPANY CODE>.
W_TEXPR-TABLENAME = 'PROJ'.
APPEND W_EXPR TO W_TEXPR-EXPR_TAB.
APPEND W_TEXPR TO TEXPR.
SUBMIT RKPEP003 WITH ........
WITH FREE SELECTIONS TEXPR AND RETURN.
Max
Add a comment