on 2024 Jul 19 1:23 PM
MODULE USER_COMMAND_0110 INPUT. DATA : FCT_CREATE TYPE SY-UCOMM. IF SY-UCOMM = FCT_CREATE. CALL TRANSACTION 'T-CODE'. ENDIF. ENDMODULE.
Not going to that T-CODE please Guide me.
Thank You.
Request clarification before answering.
You must initialized FCT_CRAEATE. IF statement is not execute
MODULE USER_COMMAND_0110 INPUT.
DATA : FCT_CREATE TYPE SY-UCOMM.
FCT_CRAEATE = 'XXXX'. " You must initialized FCT_CRAEATE.
IF SY-UCOMM = FCT_CREATE.
CALL TRANSACTION 'T-CODE'.
ENDIF.
ENDMODULE.or use
SUBMIT ZPROGRAM WITH PARAMETER = 'VAL' AND RETURN VIA SELECTION-SCREEN.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@ninad18You choose fctType as T(transaction) so you must replace FCT_CRAEATE with a transaction in FctCode ( for example MM03 or ZXX)
or change fctType to <none> then use FctCode (in your program FCT_CRAEATE ) in PAI
MODULE USER_COMMAND_0110 INPUT.
CASE SY-UCOMM.
WHEN 'FCT_CREATE'.
CALL TRANSACTION 'T-CODE'.
ENDCASE.
ENDMODULE.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 6 | |
| 6 | |
| 4 | |
| 3 | |
| 3 | |
| 3 | |
| 3 | |
| 2 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.