‎2008 Oct 12 4:36 AM
hi sap gurus
what is the meaning by same structures regarding internal tables??
tnx!!
‎2008 Oct 12 4:40 AM
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
‎2008 Oct 12 4:40 AM
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
‎2008 Oct 12 4:46 AM
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
‎2008 Oct 12 4:58 AM
‎2020 Aug 13 12:53 PM
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.