Application Development 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: 

internal tables

Former Member
0 Kudos

hi sap gurus

what is the meaning by same structures regarding internal tables??

tnx!!

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Hi,

Could you please elaborate on your question ?

As per what i have understood. If they 2 or more internal tables are having the same structure it means those tables will have same fields (columns) arranged in the same order ( Order is very important ).

Hope this is what you asked for.

Regards

Pramod

4 REPLIES 4

Former Member
0 Kudos

Hi,

Could you please elaborate on your question ?

As per what i have understood. If they 2 or more internal tables are having the same structure it means those tables will have same fields (columns) arranged in the same order ( Order is very important ).

Hope this is what you asked for.

Regards

Pramod

Former Member
0 Kudos

Consider this,

data : begin of itab1,

name(10) type c,

number type n,

end of itab1.

data : begin of itab2,

name(10) type c,

number type n,

end of itab2.

these two table is have saming structure ie same field ,same datatype , field lengthetc.

Regards,

Midhun Abraham

0 Kudos

tnx guys!!!

chauhanmadhav17
Explorer
0 Kudos

Hi,

Same structures regarding internal tables means if you are having two internal tables with the same fields then they can be called as "Internal tables with same structure".

The fields in both the internal tables will be having same fields, same length, same Data element.

So, in short Internal Tables those are completely identical are to be called as Internal tables having same structure.