In ABAP we can insert value into internal table with:
insert wa into table my_table.
Question is, if the name of my_table can only be determined at runtime, how to tackle it? Something like following doesn't work unfortunately:
insert wa into table ('my_table').
I tried with dynamic name in bracket but no success.