Application Development 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: 

how to export internal table values using memory id?

Former Member
0 Kudos

hi,

how to export internal table values using memory id?

9 REPLIES 9

Former Member
0 Kudos

USE FOLLOWING SYNTAX.

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

0 Kudos

ok..but how ca we create memory id?

0 Kudos

Hi,

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

0 Kudos

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.

0 Kudos

ITS NAME U CAN GIVE ANYTHING IN MEMORY ID .

U DONT NEED TO CREATE MEMORY ID.OK

0 Kudos

ya ok i got it...thanks

Former Member
0 Kudos

Hi,

Check thi slink-

Former Member
0 Kudos

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..

0 Kudos

ya ok i got it...thanks