Hi All,
i have an internal table with type Forkey ( here i put names of some fields that i need)
and i have a dynamique structure of those fields.
I explain: my internal table is:
TYPES: BEGIN OF itab,
field TYPE forkey,
END OFitab.
and i did create a dynamique structure wih name of fields
My question is how to insert appropriete data into the appropriete field of my dynamic structure .
I tried ASSIGN COMPONENT ds_itab OF STRUCTURE <ls_tabx> TO <ls_structure>. but it's not working
regards