2007 Sep 02 11:52 AM
For a structured data object <s>, we can use the statement
ASSIGN COMPONENT <comp> OF STRUCTURE <s> TO <FS>.
to assign one of its components <comp> to the field symbol <FS>. It is said we can specify the component <comp> either as a literal or a variable but hoe to specify this as a variable?
2007 Sep 02 11:54 AM
For a structured data object <s>, we can use the statement
ASSIGN COMPONENT <comp> OF STRUCTURE <s> TO <FS>.
to assign one of its components <comp> to the field symbol <FS>. It is said we can specify the component <comp> either as a literal or a variable but hoe to specify this as a variable?
2007 Sep 02 11:54 AM
For a structured data object <s>, we can use the statement
ASSIGN COMPONENT <comp> OF STRUCTURE <s> TO <FS>.
to assign one of its components <comp> to the field symbol <FS>. It is said we can specify the component <comp> either as a literal or a variable but hoe to specify this as a variable?
2007 Sep 02 1:01 PM
loop at itab into wa_itab .
assign component wa_itab-fieldname of structure <l_line> to <l_field>.
endloop .