Hi,
I have a deep structure(line type CRMT_MKTIMEX_FIELD_TAB) inside one field-symbol and the contents are as follows:
1 FLD_POS I 4 1
2 FLD_NAME g 0
3 FLD_VALUE g 5 MXDIA
I have one structure as follows:
I want to update one more structure-field with the FLD_VALUE of field symbol.And I am writting the code as follows:
LOOP AT lt_field ASSIGNING <fs>.
gw_tab = <fs>-FLD_VALUE.
APPEND gw_tabto gt_cust_tab.
ENDLOOP.
But it throws error as "the data object <fs> has no structure and therefore no component called FLD_VALUE".Please help on this.