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

MIGO data transfer to print program

vinothkumar_k
Explorer
0 Likes
1,465

while MIGO Posting for the purchase order, i have transferred the migo grn internal table data using export memory id in FM MB_CREATE_GOODS_MOVEMENT through enhancement spot and print program is triggering for update transaction but IMPORT statement system fails to get the internal table.i thought ABAP memory stored the data for one session. Any other method to get the logic from one session to other session using internal table.

1 ACCEPTED SOLUTION

while MIGO Posting for the purchase order, i have transferred the migo grn internal table data using export memory id in FM MB_CREATE_GOODS_MOVEMENT through enhancement spot and print program is triggering for update transaction but IMPORT statement system fails to get the internal table.i thought ABAP memory stored the data for one session. Any other method to get the logic from one session to other session using internal table.

3 REPLIES 3
Read only

stanislaslemaire
Participant
1,196

Hello, F1 is our friend 😉 Go to help on EXPORT instruction, you will see all possibility !
Try to use SHARED MEMORY, or EXPORT .. TO DATABASE...
But the best is to use shared object.

Read only

vinothkumar_k
Explorer
0 Likes
1,196

Hi,

Frederic , Thanks for your suggestion. I have implemented it using the OO class mehtod. thanks