<?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>topic Re: Internal Table ???? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775458#M334510</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please declare like this&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Types declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TYPES : BEGIN OF t_pernr ,&lt;/P&gt;&lt;P&gt;        pernr TYPE pa0000-pernr,&lt;/P&gt;&lt;P&gt;        END OF t_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA :  gt_pernr  TYPE STANDARD TABLE OF t_pernr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Header line declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA : gw_pernr type t_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sutapa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Dec 2006 06:57:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-22T06:57:35Z</dc:date>
    <item>
      <title>Internal Table ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775455#M334507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;                 Some of you have told that OCCURS has become obsolete now. Then how an internal table should be declared now? there are many ways. But how to declare an internal table with selected fields with out using OCCURS statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Ramana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 06:50:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775455#M334507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T06:50:40Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775456#M334508</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;declare like following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: begin of itab_type,
       a(10),
       b(20),
       end of itab_type.
       
       
DATA: itab type standard table of itab_type initial size 0.    &lt;/CODE&gt;&lt;/PRE&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 06:54:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775456#M334508</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-12-22T06:54:46Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775457#M334509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi venkat,&lt;/P&gt;&lt;P&gt;U can declare an internal table like this also,&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF t_ekpo,&lt;/P&gt;&lt;P&gt;  ebeln TYPE ekpo-ebeln,&lt;/P&gt;&lt;P&gt;  ebelp TYPE ekpo-ebelp,&lt;/P&gt;&lt;P&gt; END OF t_ekpo.&lt;/P&gt;&lt;P&gt;DATA: it_ekpo TYPE STANDARD TABLE OF t_ekpo .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 06:56:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775457#M334509</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T06:56:30Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775458#M334510</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Please declare like this&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Types declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TYPES : BEGIN OF t_pernr ,&lt;/P&gt;&lt;P&gt;        pernr TYPE pa0000-pernr,&lt;/P&gt;&lt;P&gt;        END OF t_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Internal table declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA :  gt_pernr  TYPE STANDARD TABLE OF t_pernr,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Header line declaration&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA : gw_pernr type t_pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sutapa.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 06:57:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775458#M334510</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T06:57:35Z</dc:date>
    </item>
    <item>
      <title>Re: Internal Table ????</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775459#M334511</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;declare a type with the required fields,&lt;/P&gt;&lt;P&gt;then declare an internal table using this type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types:begin of x_test,&lt;/P&gt;&lt;P&gt;        a type i,&lt;/P&gt;&lt;P&gt;        b type c,&lt;/P&gt;&lt;P&gt;       end of x_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : i_test type standard table of x_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this the one way of decalring internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think u need to go through some basics concept of internal table so as to clearur doubts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sonika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 07:01:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1775459#M334511</guid>
      <dc:creator>former_member632991</dc:creator>
      <dc:date>2006-12-22T07:01:42Z</dc:date>
    </item>
  </channel>
</rss>

