Hi Thomas,
You can use Field Symbols for that purpose.
Use the following syntax:
ASSIGN unstructured string TO <fs_table> CASTING TYPE (INT_TBL_NAME).
Where <fs_table> can be declared as follows:
FIELD-SYMBOLS: <fs_table> TYPE ANY.
And INT_TBL_NAME is a variable that holds the name of the dynamic structure.
Regards,
Urmila
Add a comment