Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

is it possible to create anther process in program?

Former Member
0 Likes
643

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.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
580

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.

2 REPLIES 2
Read only

Former Member
0 Likes
580

you can try to use call function in update task...

Read only

Former Member
0 Likes
581

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