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

Former Member
0 Likes
450

Hi all,

IMPORT AFRUD_TAB FROM MEMORY ID 'ZCVS_AFRUD_CONF' .

FREE MEMORY ID 'ZCVS_AFRUD_CONF' .

I found from the above ID, table control screen in imported to the current pgm duting execution.

How to find the Memory-Id from where its picking?

3 REPLIES 3
Read only

Former Member
0 Likes
412

check table <b>TPARA</b>

Read only

ferry_lianto
Active Contributor
0 Likes
412

Hi Ravi,

You can use this programs to search 'ZCVS_AFRUD_CONF' where being used in another program (export).

RSRSCAN1

RPR_ABAP_SOURCE_SCAN

RKCTSEAR

Hope this will help.

Regards,

Ferry Lianto

Read only

Former Member
0 Likes
412

Hai Ravi

Check the following Code

Program 1

report zImport_0001.

data: itab type table of string with header line.

field-symbols: <fs> type table.

itab = 'This is the line 1'. append itab.

itab = 'This is the line 2'. append itab.

assign itab[] to <fs>.

export <fs> to memory id 'ZRICHTEST'.

submit zrich_0002 and return.

Program 2

REPORT zImport_0002 .

data: itab type table of string with header line.

field-symbols: <fs> type table.

data: wa type string.

assign itab[] to <fs>.

import <fs> from memory id 'ZRICHTEST'.

loop at <fs> into wa.

write:/ wa.

endloop.

Regards

Sreeni