‎2007 Sep 27 5:15 AM
Hi All,
Wat is Table Type and wat is the use of it in SE11.
I want to know the procedure of <b>Creating Table Type in SE11</b> step-by-step.
Thanks & Regards,
<b>Anil Kumar</b>
‎2007 Sep 27 5:23 AM
Hi ,
Please check the <b>SAP help</b> , as all these things are provided in detail in it .
In case you find it difficult to find it or search for it here is the link
<a href="http://help.sap.com/saphelp_nw04/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm">Table Type</a>
Regards
ARUN
‎2007 Sep 27 5:23 AM
Hi ,
Please check the <b>SAP help</b> , as all these things are provided in detail in it .
In case you find it difficult to find it or search for it here is the link
<a href="http://help.sap.com/saphelp_nw04/helpdata/en/90/8d7304b1af11d194f600a0c929b3c3/frameset.htm">Table Type</a>
Regards
ARUN
‎2007 Sep 27 5:39 AM
check with this url which is taken from this forum only - https://www.sdn.sap.com/irj/sdn/advancedsearch?query=table+type&cat=sdn_all
‎2007 Sep 27 6:56 AM
Hi Anil..
Table Type : is a data type to Define internal tables(Standard , Sorted , Hashed ) in ABAP.
To Create a table type :
1. Create a Structure in SE11 with all the required fields (Eg: ZST_MARA)
2. Create the Table type and assign the Structure as the Line type.(Eg: ZTT_MARA)
Now you can use the Table type as a Global Data type to declare any internal tables
DATA: IT_MARA TYPE ZTT_MARA.
<b>reward if Helpful.</b>.