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

Former Member
0 Likes
462

Hi,

Can any one please explain brief idea how we use Export and Import function.

Thanks in advance,

Chandu.

3 REPLIES 3
Read only

Former Member
0 Likes
439

If you are talking about calling a function , the simplest way is to click on Pattern Tab. Search for the name of the function in call function and execute. The function is called with its importing and exporting parameters.

Thanks.

Read only

former_member156446
Active Contributor
0 Likes
439

export object_tab to memory id 'IW75'.

import object_tab from memory id 'IW75'.

Read only

Former Member
0 Likes
439

You can use EXPORT ..IMPORT..

Ex..

data: t_data type standard table of string.

Export to memory

EXPORT t_data TO MEMORY ID 'ZMY_ID'.

Import from memory

IMPORT t_data FROM MEMORY ID 'ZMY_ID'.

Thanks,

Chandu