servus,
hat einer eine Idee von euch, warum ich diese Fehlermeldung bekomme:
Include ZWM_RF_BB_LIST_N_AUSGABEF01 Zeile: 181
Das Datenobjekt "<L_REF>" besitzt keine Struktur und daher auch keine
Komponente mit Namen "COLOR".
Include ZWM_RF_BB_LIST_N_AUSGABEF01 Zeile: 185
Das Datenobjekt "<L_REF>" besitzt keine Struktur und daher auch keine
Komponente mit Namen "COLOR".
Include ZWM_RF_BB_LIST_N_AUSGABEF01 Zeile: 194
Das Datenobjekt "<L_REF>" besitzt keine Struktur und daher auch keine
Komponente mit Namen "COLOR".
Vielleicht hat der eine oder andere eine Idee / Lösung. Ich sehe den Wald vor lauter Bäumen nicht mehr
)
Und hier das Coding-Abschnitt:
FIELD-SYMBOLS: <l_ref> TYPE ANY
, <l_inh> TYPE ANY
.
* TYPE lys_l_ref
LOOP AT p_cr_tb_gesamt_sonata ASSIGNING <l_ref>.
zeile = zeile + 1.
CLEAR spalte.
LOOP AT p_lc_tb_fieldcat INTO ls_fieldcat.
spalte = spalte + 1.
ASSIGN COMPONENT ls_fieldcat-fieldname OF STRUCTURE <l_ref> TO <l_inh>.
IF ls_fieldcat-fieldname = 'DIFFE'.
IF <l_inh> < 0.
wa_color-fieldname = 'DIFFE'.
wa_color-color-col = '3'.
APPEND wa_color TO <l_ref>-color. --------------------------------------------<==== Zeile 181
* col = 3.
ELSEIF <l_inh> = 0.
wa_color-fieldname = 'DIFFE'.
wa_color-color-col = '6'.
APPEND wa_color TO <l_ref>-color. --------------------------------------------<==== Zeile 186
* col = 6.
ENDIF.
ENDIF.
IF ls_fieldcat-fieldname = 'REICHWT'.
IF <l_inh> < 3.
wa_color-fieldname = 'REICHWT'.
wa_color-color-col = '6'.
APPEND wa_color TO <l_ref>-color.
* col = 6.
ENDIF.
IF <l_inh> < 1.
wa_color-fieldname = 'REICHWT'.
wa_color-color-col = '3'.
APPEND wa_color TO <l_ref>-color. --------------------------------------------<==== Zeile 194
* col = 3.
ENDIF.
ENDIF.
ENDLOOP.
ENDLOOP.