Skip to Content
0
Nov 13, 2020 at 04:29 PM

FIELD_SYMBOL INTERNAL TABLE WITH HEAD APPEND

61 Views

HI

I need to append a record to the internal table 'TKOMV' in the SAPMM06E program.

The table is declared

*------- TKOMV ( Tabelle der Konditionen im Beleg)
DATA: BEGIN OF tkomv OCCURS 50.
INCLUDE STRUCTURE komv.
DATA: END OF tkomv.

And a need to access from the a FM User-exit 'EXIT_SAPLMEKO_002'

I create a FIELD-SYMBOLS <fs_tkomv> TYPE ANY TABLE.

ASSIGN ('(SAPMM06E)tkomv[]') TO <fs_tkomv>.

But i do not know how to append at it.

Can anybody help me?

Thanks!