Code: Alles auswählen.
report.
data: begin of my_structure,
fld01 type i,
fld02 type i,
fld03 type i,
fld04 type i,
fld05 type i,
fld06 type i,
fld07 type i,
fld08 type i,
fld09 type i,
end of my_structure.
data: begin of component,
root type c length 3 value 'FLD',
nr type n length 2,
end of component.
field-symbols: <fldxx> like my_Structure-fld01.
do 9 times.
move sy-index to component-nr.
assign component component of structure my_structure to <fldxx>.
write: /01 component, <fldxx>.
enddo.
do 9 times.
move sy-index to component-nr.
assign component component of structure my_structure to <fldxx>.
compute <fldxx> = sy-index * 10.
enddo.
uline.
do 9 times.
move sy-index to component-nr.
assign component component of structure my_structure to <fldxx>.
write: /01 component, <fldxx>.
enddo.
Folgende Benutzer bedankten sich beim Autor Dele für den Beitrag:
SAP_ENTWICKLER
Code: Alles auswählen.
* Position übernehmen
CONCATENATE gc_oustruc 'POS' gv_posit INTO gv_feldname.
ASSIGN gv_feldname TO <fnamez>.
gv_numc2 = gs_qmlbl-pos.
ASSIGN (gv_numc2) TO <fnamez>.
Folgende Benutzer bedankten sich beim Autor Wann für den Beitrag:
SAP_ENTWICKLER
Folgende Benutzer bedankten sich beim Autor Dele für den Beitrag:
SAP_ENTWICKLER