‎2008 Apr 23 6:37 PM
Hello,
In a database table I have the name of strcutures, such as my_address1
in a loop, I am reading my database table and making up the name of the structure exactly like:
data v_my_structure type text40.
and then
concatenate 'real_structure-' wa_component into v_my_structure.
and then I though I would be able to use
concatenate v_my_structure ', ' 'california' into v_my_structure.
but when I do this it does not point to the structure, is there a way of doing this?
Or even an easier way of doing this?
Thanks
‎2008 Apr 23 6:52 PM
I'm not sure I understand your question, but it sounds like you need to use field-symbols. Use the ABAP help on this.
Doug