Get value of table field from field symbol containing the name of the field
Hi,
Here is an example from my program:
CONCATENATE 'WA_STANDARD' '-' 'GS_COMP-NAME' INTO F_FIELD.
ASSIGN F_FIELD TO <F_FIELD>.
F_FIELD = <F_FIELD>.
How do i get the actual value of WA_STANDARD-GS_COMP-NAME, which is located in the table (already looping)?
Please help.