Application Development 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: 

typetable

Former Member
0 Kudos

what is meant by typetable. and table types

1 ACCEPTED SOLUTION

Former Member
0 Kudos

data: lt_kna1 TYPE TABLE of kna1. creates an internal table for your program.

TABLE TYPE: is a ddic object that you create in se11 transaction, in which you can store data in the database.

<REMOVED BY MODERATOR>

regards.

Ashish.

Edited by: Alvaro Tejada Galindo on Apr 7, 2008 4:39 PM

6 REPLIES 6

Former Member
0 Kudos

data: lt_kna1 TYPE TABLE of kna1. creates an internal table for your program.

TABLE TYPE: is a ddic object that you create in se11 transaction, in which you can store data in the database.

<REMOVED BY MODERATOR>

regards.

Ashish.

Edited by: Alvaro Tejada Galindo on Apr 7, 2008 4:39 PM

Former Member
0 Kudos

Hi ,

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(se11) 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.

Please check the link for detailed information

http://help.sap.com/saphelp_nw70/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm

<REMOVED BY MODERATOR>

Regards

Byju

Edited by: Alvaro Tejada Galindo on Apr 7, 2008 4:40 PM

former_member184119
Active Contributor
0 Kudos

data: lt_kna1 TYPE TABLE of kna1. creates an internal table for your program.

TABLE TYPE: is a ddic object that you create in se11 transaction, in which you can store data in the database.

<REMOVED BY MODERATOR>

Regard

sas

Edited by: saslove sap on Apr 7, 2008 8:51 AM

Edited by: Alvaro Tejada Galindo on Apr 7, 2008 4:40 PM

Former Member
0 Kudos

Hi,

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(se11) 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.

data: lt_kna1 TYPE TABLE of kna1. creates an internal table for your program.

TABLE TYPE: is a ddic object that you create in se11 transaction, in which you can store data in the database.

<REMOVED BY MODERATOR>

Jagadish

Edited by: Alvaro Tejada Galindo on Apr 7, 2008 4:42 PM

prasanth_kasturi
Active Contributor
0 Kudos

hi,

tabletype is the type of data dictionary table u create in the data dictionary.

typetable is the internal table you use in se38

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.

<REMOVED BY MODERATOR>

prasanth

Edited by: Alvaro Tejada Galindo on Apr 7, 2008 4:44 PM

Former Member
0 Kudos

thnks for the replies