‎2007 Jun 15 2:26 PM
Hi all,
I am working on dynamic internal tables,
and i am unable to understand this part of code under the DATA:
is_x030l TYPE x030l,
it_dfies TYPE TABLE OF dfies,
is_dfies TYPE dfies,
it_fdiff TYPE TABLE OF field_dif,
is_fdiff TYPE field_dif.
kindly give some description about these structures and what exact purpose do they serve
TIA
Regards
Ravish Garg
‎2007 Jun 15 2:34 PM
hi,
is_xxxx are structure
it_xxxx are table ( without header line )
as the tables have not header line you need a structure to store the data when you read it :
loop at it_xxxx into is_xxxx.
is_xxxx-yyyy =
modify table it_xxxx from is_xxxx.
endloop.
regards
‎2007 Jun 15 2:32 PM
Hi,
X030I --> it is a table type structure, you can define/create the Dynamic tables using the this structres
DFIES --> You can create the Internal table fields Dynamically
Regards
Sudheer
‎2007 Jun 15 2:37 PM
Hi sudheer,
can you also throw some light on the table FIELD_DIF.
‎2007 Jun 15 2:34 PM
hi,
is_xxxx are structure
it_xxxx are table ( without header line )
as the tables have not header line you need a structure to store the data when you read it :
loop at it_xxxx into is_xxxx.
is_xxxx-yyyy =
modify table it_xxxx from is_xxxx.
endloop.
regards