‎2007 Nov 01 4:15 AM
‎2007 Nov 01 4:19 AM
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
‎2007 Nov 01 4:18 AM
Hi,
It is nothing but the creation of iternal table of type KNA1.
Regards,
Atish
‎2007 Nov 01 4:19 AM
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
‎2007 Nov 01 4:44 AM
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
‎2007 Nov 01 5:04 AM
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>