<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: create Internal Table through SE11 in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243590#M529378</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinayak, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creation of internal tables through SE11 is not possible.&lt;/P&gt;&lt;P&gt;Internal table is created at run time to store the data temporarily. It is destroyed &lt;/P&gt;&lt;P&gt;as soon as the program execution is finished.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a ZTable or a table type in SE11 and then declare an internal table of type Ztable or table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;P&gt;Pls. reward appropriate points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Mar 2006 05:37:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-09T05:37:51Z</dc:date>
    <item>
      <title>create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaq-p/1243587</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear a::&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Can I create an Internal Table through SE11  and use in my  report ? How ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinayak Deosthali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:31:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaq-p/1243587</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T05:31:52Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243588#M529376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vinayak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. SE11 is for creating&lt;/P&gt;&lt;P&gt;  actual / physical /  database tables&lt;/P&gt;&lt;P&gt;   and not internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. internal table is&lt;/P&gt;&lt;P&gt;  a kind of variable only,&lt;/P&gt;&lt;P&gt;  (but in the format/structure of table with&lt;/P&gt;&lt;P&gt;   many fields and many rows)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. to use in code, we can define like this.&lt;/P&gt;&lt;P&gt;  data : itab like table of t001 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; or&lt;/P&gt;&lt;P&gt; data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;    bukrs like t001-bukrs,&lt;/P&gt;&lt;P&gt;    matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:33:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243588#M529376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T05:33:29Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243589#M529377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You cannot create an internal table in SE11, but you can create an internal table type using this transacation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create an internal table type, Select option 'Data type' in SE11 and create. Select 'Table type' on being prompted for the type to create.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use this in your program while creating an internal table, as follows:&lt;/P&gt;&lt;P&gt;DATA itab type standard table of &amp;lt;typename&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:37:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243589#M529377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T05:37:49Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243590#M529378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinayak, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creation of internal tables through SE11 is not possible.&lt;/P&gt;&lt;P&gt;Internal table is created at run time to store the data temporarily. It is destroyed &lt;/P&gt;&lt;P&gt;as soon as the program execution is finished.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create a ZTable or a table type in SE11 and then declare an internal table of type Ztable or table type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lokesh&lt;/P&gt;&lt;P&gt;Pls. reward appropriate points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:37:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243590#M529378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T05:37:51Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243591#M529379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vinayak,&lt;/P&gt;&lt;P&gt;u can't create an internal table using se11..But u can create structures using se11 and use those structures in ur report..&lt;/P&gt;&lt;P&gt;in se11 use datatype radio button to create structures and use the same..&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Internal tables&amp;lt;/b&amp;gt; are structured data types provided by ABAP/4.&lt;/P&gt;&lt;P&gt;They cannot be accessed outside the program environment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Purpose of internal tables&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Internal tables are used to reorganize the contents of database tables according to the needs of your program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Internal tables are used to perform calculations on subsets of database tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   The number of lines in an internal table is not fixed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Internal tables exist only during the run time of a program.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;syntax for internal tables:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;1.&amp;lt;/b&amp;gt;In this method an internal table is created with reference to existing structure ( another internal table  or Dictionary object).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg: DATA ITAB LIKE SFLIGHT OCCURS 10 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;2.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Create an internal table data object directly with the 'DATA' statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg:  DATA : BEGIN OF ITAB OCCURS  0,&lt;/P&gt;&lt;P&gt;	COLUMN1 TYPE I,&lt;/P&gt;&lt;P&gt;	COLUMN2 TYPE I,&lt;/P&gt;&lt;P&gt;	COLUMN3 TYPE I,&lt;/P&gt;&lt;P&gt;	END OF  ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ashok Kumar Prithiviraj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243591#M529379</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T05:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243592#M529380</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; The Tcode SE11 is used for creation of Permanent Database tables only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following are Different ways to create Internal Tables:&lt;/P&gt;&lt;P&gt;1.Data	:Itab like sflight occurs 0 with header line&lt;/P&gt;&lt;P&gt;		Here you are declaring internal table, which is similar to sflight i.e., itab like sflight i.e., you are referring to existing table (like).&lt;/P&gt;&lt;P&gt;(By default internal table created with this declaration is without header line).&lt;/P&gt;&lt;P&gt;		&lt;/P&gt;&lt;P&gt;2.Data	:Begin of itab occurs 0.&lt;/P&gt;&lt;P&gt;        Include structure sflight&lt;/P&gt;&lt;P&gt;  Data	:End of itab&lt;/P&gt;&lt;P&gt;	(Internal Table created with this type of declaration is similar to declaration done in &amp;#145;a&amp;#146; type the only difference is by default internal table created by this type is with header line)&lt;/P&gt;&lt;P&gt;		&lt;/P&gt;&lt;P&gt;3.Data	:Begin of itab occurs 0&lt;/P&gt;&lt;P&gt;  carrid like sflight-carrid,&lt;/P&gt;&lt;P&gt;  connid like sflight-connid,&lt;/P&gt;&lt;P&gt;  fldate like sflight-f1date&lt;/P&gt;&lt;P&gt;End of itab.&lt;/P&gt;&lt;P&gt;	By default internal table created by this type of declaration is with header line.  In this type of declaration, you are using only those fields from database table, which you require for processing.&lt;/P&gt;&lt;P&gt;		&lt;/P&gt;&lt;P&gt;4.Data	:Begin of itab occurs 0&lt;/P&gt;&lt;P&gt;  carrid like sflight-carrid,&lt;/P&gt;&lt;P&gt;  connid like sflight-connid,&lt;/P&gt;&lt;P&gt;  bookid like sbook-bookid&lt;/P&gt;&lt;P&gt;  id like scustom-id,&lt;/P&gt;&lt;P&gt;End of itab.&lt;/P&gt;&lt;P&gt;	Here you are combining fields from three different tables in one internal table.&lt;/P&gt;&lt;P&gt;		&lt;/P&gt;&lt;P&gt;5.Data	:Begin of itab occurs 0&lt;/P&gt;&lt;P&gt;  Carrid1 like sflight-carrid,&lt;/P&gt;&lt;P&gt;End of itab.&lt;/P&gt;&lt;P&gt;Here you are specifying different field names.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think now you got some Idea Regarding Internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:41:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243592#M529380</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T05:41:39Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243593#M529381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;U can not create internal table in SE11.&lt;/P&gt;&lt;P&gt;U can create DATABASE table &lt;/P&gt;&lt;P&gt;Or STucture &lt;/P&gt;&lt;P&gt;OR Table type&lt;/P&gt;&lt;P&gt;Which can be use in report or BSP applicaton or SMART forms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can use above in ur report to declare internal table.&lt;/P&gt;&lt;P&gt;U can use Pattern-&amp;gt;structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243593#M529381</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-03-09T05:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243594#M529382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot create Internal table using SE11.&lt;/P&gt;&lt;P&gt;But you can create database tables uisng SE11.&lt;/P&gt;&lt;P&gt;Internal table is something which we will use in the report/program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Eg..&lt;/P&gt;&lt;P&gt;MARA is the database table.&lt;/P&gt;&lt;P&gt;In the report,if we declare&lt;/P&gt;&lt;P&gt;data itab type standard table of mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab will be our internal table.&lt;/P&gt;&lt;P&gt;But it won't contain any data which is the database table Mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To populate content into it,we need to code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from mara into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This above code will make the internal table contains data of the database table MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this links for info about database.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm" target="test_blank"&gt;http://help.sap.com/saphelp_40b/helpdata/en/4f/991f82446d11d189700000e8322d00/applet.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:45:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243594#M529382</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2006-03-09T05:45:38Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243595#M529383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinayak&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Understand that internal tables are for only in programs.&lt;/P&gt;&lt;P&gt;For example if you want to use some SAP defined ar your own Z or Y tables, you generally copy the data into an internal table and manipulate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For declaring an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: begin of line
          connid LIKE spfli-connid,
          carrid LIKE spfli-carrid,
        .....
        .....
       end of line.

Data: itab TYPE standard table of line with header lne.

&amp;lt;b&amp;gt;for populating data&amp;lt;/b&amp;gt;

select connid carrid
into table itab
from spfli
 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:47:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243595#M529383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T05:47:50Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243596#M529384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the &amp;lt;b&amp;gt;table type&amp;lt;/b&amp;gt; option in se11 serves the same purpose.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can see that in &amp;lt;b&amp;gt;data type&amp;lt;/b&amp;gt; option&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:51:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243596#M529384</guid>
      <dc:creator>hymavathi_oruganti</dc:creator>
      <dc:date>2006-03-09T05:51:44Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243597#M529385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinayak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can't create internal tables using SE11.&lt;/P&gt;&lt;P&gt;we can define internal tables in Program only.&lt;/P&gt;&lt;P&gt;*Internal tables provide a means of taking data storing it in working memory in ABAP. &lt;/P&gt;&lt;P&gt;*In ABAP, internal tables fulfill the function of arrays. Since they are dynamic data objects, they save the programmer the task of dynamic memory management in his or her programs.&lt;/P&gt;&lt;P&gt;*Internal tables are a standard data type object which exists only during the runtime of the program.&lt;/P&gt;&lt;P&gt;*They are used to perform table calculations on subsets of database tables and for re-organising the contents of database tables according to users need&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 05:55:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243597#M529385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T05:55:55Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243598#M529386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can not create an internal table directly in SE11.&lt;/P&gt;&lt;P&gt;However, you can create a structure in SE11 and use it to create an internal table in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;If structure XYZ is present in dictionary,&lt;/P&gt;&lt;P&gt;you can create an internal table as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : XYZ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF t_xyz occurs 0.&lt;/P&gt;&lt;P&gt;          INCLUDE STRUCTURE XYZ.&lt;/P&gt;&lt;P&gt;DATA : END OF t_xyz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This approach is useful when you need a number of internal tables with same structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Shashank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 07:00:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243598#M529386</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T07:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243599#M529387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks for the prompt reply. I am also having the same concept. But this question was asked in IBM Interview last week In Pune and the interviewer told that this is possible through SE11. so I ask the same . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks once again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With regards&lt;/P&gt;&lt;P&gt;Vinayak&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 07:20:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243599#M529387</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T07:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243600#M529388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinayak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per the forum etiquette,u may pls award points&lt;/P&gt;&lt;P&gt;to helpful answers by clicking the STAR&lt;/P&gt;&lt;P&gt;on the left of that reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Mar 2006 11:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243600#M529388</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-09T11:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: create Internal Table through SE11</title>
      <link>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243601#M529389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am afraid that I'd have to agree with IBM and disagree with the posters here, and say that it &amp;lt;b&amp;gt;is&amp;lt;/b&amp;gt; possible to create an itab through SE11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go to SE11, select the "Data Type" radio button, and create a table with a line type of sflight.  Then run this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROGRAM ztst.

DATA: z_sflight TYPE z_tbl.
DATA: wa LIKE LINE OF z_sflight.

SELECT *
FROM sflight
INTO TABLE z_sflight.

LOOP AT z_sflight INTO wa.
  WRITE : / wa-carrid.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Mar 2006 19:27:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/create-internal-table-through-se11/qaa-p/1243601#M529389</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-14T19:27:54Z</dc:date>
    </item>
  </channel>
</rss>

