Dear Experts,
I have a structure in dynpro consists of 3 columns (link_text, R_DATA, link_tooltip), and one of the columns (R_DATA) is a deep structure ref to RN1_PREC_DOCUMENTS, this structure contains detail data of each line of data.
I want to loop this data using below code but I still can't get the r_data values. Please advice.
DATA: ld_data TYPE RN1_PREC_DOCUMENTS. LOOP AT it_data ASSIGNING FIELD-SYMBOL(<fs>). MOVE-CORRESPONDING <fs> to ld_data. ENDLOOP.
