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
557

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
534

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

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

3 REPLIES 3
Read only

Former Member
0 Likes
535

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

Former Member
0 Likes
534