I have the following code:
loop at i_tab assigning <fs>.
at new <fs>-component1.
This does not compile-- Field symbol not assigned.
i_tab is an internal table with a header line and does have a component1.
This compiles.
loop at i_tab assigning <fs>.
at new i_tab-component.
Why doesn't the code with the Field Symbol compile?