<?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: Types and Data - Internal Tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023437#M714824</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;Both the tables ITAB2 and ITAB4 have body and the work area defined in that.. Am I right?  Yes, you are right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And ITAB3 as such can be separately used as workarea, but ITAB1 cannot be used... Is this right? Yes, this is right.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Oct 2007 18:07:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-25T18:07:16Z</dc:date>
    <item>
      <title>Types and Data - Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023436#M714823</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;I have a small question. Please help me resolve this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am declaring 2 internal tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ITAB1,&lt;/P&gt;&lt;P&gt;             COL1(5),&lt;/P&gt;&lt;P&gt;             COL2(5),&lt;/P&gt;&lt;P&gt;             END OF ITAB1.&lt;/P&gt;&lt;P&gt;DATA: ITAB2 TYPE TABLE OF ITAB1 WITH HEADERLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB3,&lt;/P&gt;&lt;P&gt;             COL1(5),&lt;/P&gt;&lt;P&gt;             COL2(5),&lt;/P&gt;&lt;P&gt;             END OF ITAB1.&lt;/P&gt;&lt;P&gt;DATA: ITAB4 LIKE TABLE OF ITAB3 WITH HEADERLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both the tables ITAB2 and ITAB4 have body and the work area defined in that.. Am I right? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And ITAB3 as such can be separately used as workarea, but ITAB1 cannot be used... Is this right? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expecting the reply at the earliest...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Smitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 18:03:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023436#M714823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T18:03:05Z</dc:date>
    </item>
    <item>
      <title>Re: Types and Data - Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023437#M714824</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;Both the tables ITAB2 and ITAB4 have body and the work area defined in that.. Am I right?  Yes, you are right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And ITAB3 as such can be separately used as workarea, but ITAB1 cannot be used... Is this right? Yes, this is right.&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;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 18:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023437#M714824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T18:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Types and Data - Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023438#M714825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Smitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can Declare the itab3 using HeaderLine 2, only insert "Occurs n" at code, like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB3 &amp;lt;b&amp;gt;occurs 0&amp;lt;/b&amp;gt;,&lt;/P&gt;&lt;P&gt;COL1(5),&lt;/P&gt;&lt;P&gt;COL2(5),&lt;/P&gt;&lt;P&gt;END OF ITAB1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe it's help u 2...&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;&lt;/P&gt;&lt;P&gt;Allan Cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 18:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023438#M714825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T18:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: Types and Data - Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023439#M714826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ferry Lianto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankyou very much... &lt;/P&gt;&lt;P&gt;Also my doubt is that ITAB1 is not even a structure, which cannot be used as work area..? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Smitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 18:12:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023439#M714826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T18:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: Types and Data - Internal Tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023440#M714827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Both are correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Type declarations you do when ever you wanted to create your own structure....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ECC some rules for the internal tables should be followed i guess...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do not used header line.&lt;/P&gt;&lt;P&gt;compsary used work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so some examples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_db type standard table of kna1,&lt;/P&gt;&lt;P&gt;wa_db type kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_itab,&lt;/P&gt;&lt;P&gt;fiel1..&lt;/P&gt;&lt;P&gt;2&lt;/P&gt;&lt;P&gt;3&lt;/P&gt;&lt;P&gt;end of ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: it_db type standard table of ty_itab,&lt;/P&gt;&lt;P&gt;wa_db type ty_itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so thats y u used types declaration....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Oct 2007 18:15:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-and-data-internal-tables/m-p/3023440#M714827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-25T18:15:37Z</dc:date>
    </item>
  </channel>
</rss>

