Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Help regarding structures

Former Member
0 Likes
459

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
438

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

3 REPLIES 3
Read only

Former Member
0 Likes
438

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

Read only

0 Likes
438

Hi sudheer,

can you also throw some light on the table FIELD_DIF.

Read only

Former Member
0 Likes
439

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