2007 Sep 16 2:16 PM
hi,
after migo I call another transaction in a user exit, however migo will finish after this transaction,is it possible to call a transaction and continue to execute current transaction,like program of java or .net,several process work in same time?
thanks.
2007 Sep 16 6:39 PM
Call the function module 'ABAP4_CALL_TRANSACTION' by passing the required transaction code.
you can choose to call this function module in either a BACKGROUND TASK or a NEW TASK.
*Use this if processing does not require a dialog
CALL FUNCTION 'ABAP4_CALL_TRANSACTION' IN BACKGROUND TASK
*Use this if dialog must be displayed.
CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK
Message was edited by:
Srihari Hebbar
hi,
after migo I call another transaction in a user exit, however migo will finish after this transaction,is it possible to call a transaction and continue to execute current transaction,like program of java or .net,several process work in same time?
thanks.
2007 Sep 16 3:47 PM
2007 Sep 16 6:39 PM
Call the function module 'ABAP4_CALL_TRANSACTION' by passing the required transaction code.
you can choose to call this function module in either a BACKGROUND TASK or a NEW TASK.
*Use this if processing does not require a dialog
CALL FUNCTION 'ABAP4_CALL_TRANSACTION' IN BACKGROUND TASK
*Use this if dialog must be displayed.
CALL FUNCTION 'ABAP4_CALL_TRANSACTION' STARTING NEW TASK
Message was edited by:
Srihari Hebbar
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |