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

Export and import statement.

Former Member
0 Likes
650

what will be exported after the execution of follwoing 3 lines?

It will be ship-to party or sold-to party?

CUST1 = tkomk-kunnr.

CUSt2 = TKOMK-KUNWE.

export CUST1 to memory id cust2

what is use of second statement in above lines?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
624

The memory id is made dynamic here

the second line will get the memory id name

generally we declare like this

export CUST1 to memory id 'XXX' " where XXX is ur memory id

but here it is created dynamically

4 REPLIES 4
Read only

Former Member
0 Likes
625

The memory id is made dynamic here

the second line will get the memory id name

generally we declare like this

export CUST1 to memory id 'XXX' " where XXX is ur memory id

but here it is created dynamically

Read only

0 Likes
624

Is is mean the memory id will be created with the name as of contents of CUST2.

and the contents of CUST1 will be exported to CUST2.

e.g.:-

CUST1 = ABC after execution of line 1.

CUST2 = CDE after exceution of line2.

then at memory id CDE-->ABC will be exported.

right?

Read only

0 Likes
624

Yes you are correct!!!!

Read only

Former Member
0 Likes
624

Hi,

CUST1 = tkomk-kunnr. ---> Contains Ship to party value

CUSt2 = TKOMK-KUNWE. ---> Contains Sold to party value

Export CUST1 to memory id <b>cust2</> -


> Exporting the ship to party value to memory . The bolded Cust2 is the name of the memory id it holds the value of cust1 i.e., Ship to party.

So.. Ship to party value will be exported. and CUST1 contains Ship to party and CUST2 contains Sold to party value and CUST2of memory ID contains ship to party values.

CUST2 of memory ID and CUST2 contains different values.

Br,

Laxmi