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

internal tables

Former Member
0 Likes
798

hi sap gurus

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

tnx!!

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
668

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
Read only

Former Member
0 Likes
669

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

Read only

Former Member
0 Likes
668

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

Read only

0 Likes
668

tnx guys!!!

Read only

Former Member
0 Likes
668

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.