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

returning back from co11n

Former Member
0 Likes
718

Hi experts,

I have developed a report called zpp20. It works perfectly. However, in one place I call transaction co11n goods movements screen. Now, Iwant my prog. return back to zpp20 after it has been saved. I use BDCDATA with call transaction. Now, ı have looked for a user exit. But there is no working at the end of save process. What should I do?

Thanks in advance?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
645

Hi,

After call transaction completes, it should return to main program,searching User exit will not help you anyway because these are all used for modifying the standard SAP program.After call transaction what you are doing?

Thanks and Regards,

Manjunath M

Hi,

After call transaction completes, it should return to main program,searching User exit will not help you anyway because these are all used for modifying the standard SAP program.After call transaction what you are doing?

Thanks and Regards,

Manjunath M

3 REPLIES 3
Read only

Former Member
0 Likes
646

Hi,

After call transaction completes, it should return to main program,searching User exit will not help you anyway because these are all used for modifying the standard SAP program.After call transaction what you are doing?

Thanks and Regards,

Manjunath M

Read only

0 Likes
645

Thank you so much.

I really appreciate it.:)

Best regards...

Read only

awin_prabhu
Active Contributor
0 Likes
645

Hi,

Called program will automatically continue its execution after completion of CALL TRANSACTION statement.

Simply write your code after CALL TRANSACTION statement.

Also put a breakpoint in CALL TRANSACTION statement and press F6. It will automatically execute the whole transaction and will goto next statement for execution.

See F1 on CALL TRANSACTION for more information.

At CALL TRANSACTION the calling program and its data is kept, and after exiting the called transaction, processing is resumed in the calling program after the call.

When the transaction is called, the ABAP program linked with the transaction code is loaded in a new internal session. The session of the calling program is kept. The called program runs in an SAP LUW of its own.