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 abap oo

Former Member
0 Likes
958

i want to write import and export in method.

what is thye syntax.

i write:

get free memory : zflag.

if zflag is initial.

bla bla.....

zflag= 1

endif.

1 REPLY 1
Read only

Former Member
0 Likes
333

Try as below:

IMPORT zflag = zflag FROM MEMORY ID <mid>.

and

EXPORT zflag = zflag TO MEMORY ID <mid>.

Make sure the definition of ZFLAG is same in both methods should they be used in different methods.

Regards

Eswar