2009 Jul 03 3:20 PM
Hi experts,
i m using call transaction to call a program. Inside this program the fm GN_DELIVERY_CREATE is called.
after calling thid function module , the processing of the program breaks and will not continue ..any body knows this problem?
any suggestion hoe to slove this
Thanks.
2009 Jul 03 6:15 PM
Hi,
try this:
CALL TRANSACTION XXXX OPTIONS FROM opt .
opt shoud be a structure of type CTU_PARAMS .
you need to set opt-RACOMMIT to 'X' .
Best regards.
Hi experts,
i m using call transaction to call a program. Inside this program the fm GN_DELIVERY_CREATE is called.
after calling thid function module , the processing of the program breaks and will not continue ..any body knows this problem?
any suggestion hoe to slove this
Thanks.
2009 Jul 03 3:43 PM
Hi,
few information about the problem, thus we can't help you.
Davide
2009 Jul 03 6:15 PM
Hi,
try this:
CALL TRANSACTION XXXX OPTIONS FROM opt .
opt shoud be a structure of type CTU_PARAMS .
you need to set opt-RACOMMIT to 'X' .
Best regards.
2009 Jul 03 8:56 PM
Thanks Pablo , when i use the following code
wa_option-RACOMMIT = 'X'.
CALL TRANSACTION 'ZTESTSCREEN' USING it_bdcd options from wa_option.
...
This act as call transaction with mode 'A' .. so you get always the command code as popup.
1.I want the call transaction to act as in mode 'N' . How to do that ?
'2. does this work on the background processing ?
1.Problem solved
wa_option-dismode = 'E'.
wa_option-RACOMMIT = 'X'.
CALL TRANSACTION 'ZTESTSCREEN' USING it_bdcd options from wa_option.
Thanks.
Edited by: Moo Yac on Jul 3, 2009 10:16 PM
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |