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

how to export internal table values using memory id?

Former Member
0 Likes
2,018

hi,

how to export internal table values using memory id?

9 REPLIES 9
Read only

Former Member
0 Likes
1,109

USE FOLLOWING SYNTAX.

EXPORT IT(Internal Table) TO MEMORY ID 'XYZ'.

Read only

0 Likes
1,109

ok..but how ca we create memory id?

Read only

0 Likes
1,109

Hi,

You need not to create memory id your self , The ID you Specify , it will be created by System.

Read only

0 Likes
1,109

HI,

Memory I.D. is something that you dont create. Its just a reference name that you use. You can even use 'VIGNESH' as your memory i.d. When you import you need to use the same name.

For understanding purpose give some meaningful name based on the scenario.

Best Regards,

Ram.

Read only

0 Likes
1,109

ITS NAME U CAN GIVE ANYTHING IN MEMORY ID .

U DONT NEED TO CREATE MEMORY ID.OK

Read only

0 Likes
1,109

ya ok i got it...thanks

Read only

Former Member
0 Likes
1,109

Hi,

Check thi slink-

Read only

Former Member
0 Likes
1,109

HI Vignesh,

Once you populate your internal table, use the below given code.

EXPORT parameter_list TO medium

Parameter List - your internal table.

medium - Memory i.d.to where you want to export. You can choose any name of your oqn.

While you IMPORT the data, you need to use the same memory I.D.

To get syntax help, type EXPORT in your ABAP editor and press F1. Select EXPORT Cluster..

Best Regards.

Ram..

Read only

0 Likes
1,109

ya ok i got it...thanks