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

what is table type ?

Former Member
0 Likes
694

data it table type of kna1?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
673

Hi,

table type are created in SE11. for global types for internal table.

also if you have a structure like KNA1. Then you can use the following to declare an internal table.

DATA: ITAB TYPE TABLE OF KNA1.

Thanks

naren

4 REPLIES 4
Read only

Former Member
0 Likes
673

Hi,

It is nothing but the creation of iternal table of type KNA1.

Regards,

Atish

Read only

Former Member
0 Likes
674

Hi,

table type are created in SE11. for global types for internal table.

also if you have a structure like KNA1. Then you can use the following to declare an internal table.

DATA: ITAB TYPE TABLE OF KNA1.

Thanks

naren

Read only

former_member194152
Contributor
0 Likes
673

Hi,

Table type are internal table which defined in data dictionary so that we can reuse them and also it is necessary for smart form processing coz for data transfer bw form and driver program required proper work area(structure) and table type(internal table) defined in data dictionary.

Regards

GAgan

Read only

varma_narayana
Active Contributor
0 Likes
673

Hi..

Table Type : It is a Data type for Declaring Internal Tables.

Eg: SLIS_T_FIELDCAT_ALV. defined in the Type pool SLIS.

So when u declare :

<b>DATA : T_FCAT TYPE SLIS_T_FIELDCAT_ALV. </b>

it will create an internal table.

<b>DATA : WA_FCAT TYPE LINE OF SLIS_T_FIELDCAT_ALV. </b>

this will create the Work area based on the Table type.

reward if Helpful.<b></b>