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

Import/Export. in Other program

Former Member
0 Likes
514

Hi All,

I would like to export a internal table in MV45AFZZ program and import it in transfer Order creating user-exit, EXIT_SAPML03T_003 in Include ZXLTOU14..

Can you please help me, if this is possible.

Thank you.

Anu.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
444

If user is in same context, can export to / import from memory id (ABAP memory) or set PID (SAP memory). Otherwise, check out SHMA, SHMM (Shared Memory) if always on same server (but propagate tool also available in SHMM), or use INDX-like table with export/import using your own INDX-like db table. See table INDX for model and there is documentation on how-to for all these methods that can be found via search.

2 REPLIES 2
Read only

Former Member
0 Likes
444

Hi Anitha,

Try this out (MV45AFZZ)table-field.

You can check this in Debugging mode and check if the values are available and use it in your exit..

Thanks

Ajay

Read only

Former Member
0 Likes
445

If user is in same context, can export to / import from memory id (ABAP memory) or set PID (SAP memory). Otherwise, check out SHMA, SHMM (Shared Memory) if always on same server (but propagate tool also available in SHMM), or use INDX-like table with export/import using your own INDX-like db table. See table INDX for model and there is documentation on how-to for all these methods that can be found via search.