‎2008 Jul 04 3:45 PM
‎2008 Jul 04 3:49 PM
table type is used to create internal table in prog. that can be passed to method, Function module, subroutine as exporting or importing parameter.
Regards,
Joy.
‎2008 Jul 04 3:47 PM
‎2008 Jul 04 3:49 PM
table type is used to create internal table in prog. that can be passed to method, Function module, subroutine as exporting or importing parameter.
Regards,
Joy.
‎2008 Jul 04 3:56 PM
‎2008 Jul 04 4:02 PM
Hi Diana,
Please check this link
[Table Types|http://help.sap.com/saphelp_nw04/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm]
Table Types
A table type describes the structure and functional attributes of an internal table in ABAP. In ABAP programs you can reference a table type TTYP defined in the ABAP Dictionary with the command DATA <inttab> TYPE TTYP. An internal table <inttab> is created in the program with the attributes defined for TTYP in the ABAP Dictionary.
Best regards,
raam
‎2008 Jul 04 5:39 PM
Table Type
A table type is a type that describes the structure and functions of an internal table in the ABAP program. It can be used in the ABAP program analogously to types that are predefined in the ABAP program or defined directly in the ABAP program to define data objects and types.
Table types can be used in the ABAP Dictionary to define structures (structured types) and other table types:
A component of a structure can have a table type as type. This defines a structured type with a component that is a table.
A table type can be used as the row type of another table type. This defines a table of tables.
A table type describes the following attributes of an internal table:
The structure and data type attributes of the table row are defined by the row type.
The key definition describes the structure of the table key.
The key category defines whether the key is unique, that is if all the records of the table have different key values.
The access mode defines how the table is accessed and how its records are managed internally
Regards,
Rock.
‎2008 Jul 04 6:48 PM
Hi
A Table type describes the structure and functional attributes if a internal table in ABAP program.
A table type is defined by:
its line type, that defines the structure and data type attributes of a line of the internal table
the options for managing and accessing the data ( access mode) in the internal table
the key ( key definition and key category) of the internal table
Regards
Pavan