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

table type

Former Member
0 Likes
746

hi gurus

what is the use of table type in data dictionary???

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
717

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.

6 REPLIES 6
Read only

Former Member
0 Likes
717

hi check this..

Read only

Former Member
0 Likes
718

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.

Read only

Former Member
0 Likes
717

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

Read only

Former Member
0 Likes
717

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.

Read only

bpawanchand
Active Contributor
0 Likes
717

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