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

Field Groups

Former Member
0 Likes
487

How to work with Field groups? How to use Import/Export statements

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
464

Hi,

Import/Export statements

-


DATA: V_DATA(5) VALUE 'ABCDE'.

EXPORT V_DATA TO MEMORY ID 'ZMYID'.

CLEAR: V_DATA.

IMPORT V_DATA FROM MEMORY ID 'ZMYID'.

WRITE: / V_DATA.

Thanks,

Naren

3 REPLIES 3
Read only

Former Member
0 Likes
465

Hi,

Import/Export statements

-


DATA: V_DATA(5) VALUE 'ABCDE'.

EXPORT V_DATA TO MEMORY ID 'ZMYID'.

CLEAR: V_DATA.

IMPORT V_DATA FROM MEMORY ID 'ZMYID'.

WRITE: / V_DATA.

Thanks,

Naren

Read only

ferry_lianto
Active Contributor
0 Likes
464