‎2007 Jul 10 9:23 AM
Hi folks!
Does anybody know whether it is possible to build an internal table from DDIC-structures dynamically?
I have a deep structured itab_upload(whose structure is defined in the DDIC), which contains 2 fields(Number Name) and a third field which contains itab_desc.
This itab_desc can contain either 2 fields(Number Name) and a third field which contains another itab_desc <b>or</b> 3 fields for numbers(without any other itab).If itab_desc contains another itab_desc, the second itab_desc contains only 3 fields for numbers and names...
help will be very appreciated and points will be rewarded!
Felix
‎2007 Jul 11 9:27 AM
‎2007 Jul 11 11:53 AM
Hi Felix,
Please find below the material which will help you to solve your problem :-
Please reward points if helpful.
Regards.
Srikanta Gope.
srikanta.gope@tcs.com
‎2007 Jul 11 12:07 PM
field-symbols: <itab> type table.
data: w_tab type ef to data.
CREATE DATA w_tab TYPE STANDARD TABLE OF (DDIC-STR).
ASSIGN w_tab->* TO <itab>
reward poitns if useful
Regards
Prax