Search This Blog

Tuesday, May 01, 2007

Internal table in ABAP memory

Remote access to internal table of other program


field-symbols: type table.
data: wa type string.
data: pointer_tab(20) type c.

pointer_tab = '(ZRICH_0001)ITAB[]'.
assign (pointer_tab) to .
loop at into wa.
write:/ wa. endloop.

1 comment:

Dfloth said...

What so you don't have to redefine the table?