Hi,
I have a problem with a piece of code comparable to this one:
FIELD-SYMBOLS: <structure_A> TYPE ANY, <structure_B> TYPE ANY, <component_name> TYPE ANY. ... <component_name> = 'WHATEVER'. ... " <structure_A>-<component_name> = <structure_B>-<component_name>.
The intention is to copy a value from a component of one structure to the same component of another structure. The crux is that the structures are defined dynamically and the component's name is known during runtime only.
Assume that the example is well-defined, i. e. all field symbols are initiated with suitable values.
--Florian