ā2007 Jul 16 7:33 AM
Hi,
what is the difference between
TYPE TABLE OF &
TYPE STANDARD TABLE OF
Thanks,
Amol
ā2007 Jul 16 7:43 AM
hi,
table type means creates only work area for u.
standard table table type means creates body and work area for u.
if helpful reward some points.
with regards,
Suresh.A
ā2007 Jul 16 7:38 AM
Amol,
Both the statements will give the same Standard Internal table
This is because if we dont specify the table type , the system takes it as Standard table.
If you want the table to be Sorted/Hashed type declaration will be done as follows
Data : itab type sorted/hashed table of <type>.
ā2007 Jul 16 7:39 AM
Hi,
Both are Same.
If we give TYPE TABLE OF it will automatically take it as TYPE STANDARD TABLE OF.
Regards,
Padmam.
ā2007 Jul 16 7:43 AM
hi,
table type means creates only work area for u.
standard table table type means creates body and work area for u.
if helpful reward some points.
with regards,
Suresh.A
ā2007 Jul 16 7:45 AM
Hi,
Both are same, when you dont mention the TABLE TYPE , in ABAP its by default STANDARD.
Regards,
Sesh
ā2013 Oct 09 10:44 AM
Table type means to create workarea,
Standard table is to create structure and workarea.
ā2015 Aug 07 9:56 AM
"Type Standard table" Means we want only standard table out of Different type of tables,
Types of table:-
1) Standard
2) Sorted
3) Hashed
Hence if we want Sorted table or hashed table we have to write type Sorted table/type HASH TABLE OF
Also Type table of is nothing but referring to Standard table only unless specified.
Thanks