‎2008 Feb 08 4:02 PM
Hi,
Can any one please explain brief idea how we use Export and Import function.
Thanks in advance,
Chandu.
‎2008 Feb 08 4:20 PM
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.
‎2008 Feb 08 4:21 PM
export object_tab to memory id 'IW75'.
import object_tab from memory id 'IW75'.
‎2008 Feb 08 4:24 PM
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