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
518

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>

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
500

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

3 REPLIES 3
Read only

Former Member
0 Likes
501

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

Read only

Former Member
0 Likes
500

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

Read only

varma_narayana
Active Contributor
0 Likes
500

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>.