<?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: Regarding internal tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734286#M898770</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;henz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; thanks  to reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but  in 1. statemnet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i t shows the body of  the ztab( table type)&lt;/P&gt;&lt;P&gt; not strucutre..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; while  othere shows structure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   can u explain..&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;Spandana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 May 2008 05:11:22 GMT</pubDate>
    <dc:creator>spandana_babu</dc:creator>
    <dc:date>2008-05-02T05:11:22Z</dc:date>
    <item>
      <title>Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734278#M898762</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;&lt;/P&gt;&lt;P&gt;experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types  : BEGIN OF WA_KNA1,&lt;/P&gt;&lt;P&gt;       CNO(10) TYPE C,&lt;/P&gt;&lt;P&gt;       COUNTRY TYPE LAND1_GP,&lt;/P&gt;&lt;P&gt;       NAME LIKE KNA1-NAME1,&lt;/P&gt;&lt;P&gt;       END OF WA_KNA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data  : wa_kna2 type wa_kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 1.DATA IT_KNA1 like  TABLE OF WA_KNA2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.   data it_kna2 type table of wa_kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in  2nd statement  i replace  wa_kna1 with  wa_kna2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;it shows error that wa_kna2 unknown&lt;/STRONG&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; can any body explain..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********************************************************************************&lt;/P&gt;&lt;P&gt;data  : BEGIN OF WA_KNA1,&lt;/P&gt;&lt;P&gt;       CNO(10) TYPE C,&lt;/P&gt;&lt;P&gt;       NAME LIKE KNA1-NAME1,&lt;/P&gt;&lt;P&gt;       END OF WA_KNA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 1.   DATA IT_KNA1 like  TABLE OF wa_kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 2.   data it_kna1 type table of wa_kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 2nd stametn is shows error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please explain....&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;Spandana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 04:50:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734278#M898762</guid>
      <dc:creator>spandana_babu</dc:creator>
      <dc:date>2008-04-30T04:50:54Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734279#M898763</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;do this way ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : wa_kna2 &lt;STRONG&gt;like&lt;/STRONG&gt; wa_kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data it_kna1 type &lt;STRONG&gt;standard&lt;/STRONG&gt; table of wa_kna1.&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;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 04:55:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734279#M898763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T04:55:07Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734280#M898764</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;PRE&gt;&lt;CODE&gt;data it_kna2 like wa_kna2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_kna2 is not defined in types...so u should use like and not type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;madhumitha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 04:56:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734280#M898764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T04:56:22Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734281#M898765</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;&lt;/P&gt;&lt;P&gt;santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i am getting same error..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Spanadana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 05:10:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734281#M898765</guid>
      <dc:creator>spandana_babu</dc:creator>
      <dc:date>2008-04-30T05:10:32Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734282#M898766</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 problem is, if u declare WA_KNA1 in TYPES...the stmt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data it_kna2 type table of wa_kna1 ..will go and check WA_KNA1 in TYPES declaration. In general if u define TYPE TABLE OF in data declaration,, ABAP will go and check in TYPES declaration.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if u define LIKE TABLE OF it will go and check in DATA declaration whether refering table exists or not...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if usefulll !!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ABAPer 007&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 05:25:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734282#M898766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T05:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734283#M898767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Madhumitha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I feel sorry for you. Spandana hasn't provided you with a single point even you answered his/her question correctly (though there was a little typing mistake: "like table" instead of "like"). Spandana gave all 10 points to ABAPer 007. That's not fair.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Heinz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 07:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734283#M898767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-30T07:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734284#M898768</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;&lt;/P&gt;&lt;P&gt; i am using   line type &amp;amp; row type..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i created  line type as  zline,   table type as   ztab with line type of  zline  in se11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; when i  declare  like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.  data :w_it  type ztab&lt;/P&gt;&lt;P&gt;   it gives the body of  ztab..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; where&lt;/P&gt;&lt;P&gt; while  we r declaring in standard table like mara..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.   data : w_it  type  mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; it gives the  work area of mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types  : BEGIN OF WA_KNA1," occurs 0,&lt;/P&gt;&lt;P&gt;       CNO(10) TYPE C,&lt;/P&gt;&lt;P&gt;       COUNTRY TYPE LAND1_GP,&lt;/P&gt;&lt;P&gt;       NAME LIKE KNA1-NAME1,&lt;/P&gt;&lt;P&gt;       END OF WA_KNA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3  .data : &lt;STRONG&gt;w_it type wa_kna1&lt;/STRONG&gt;.  "  it  also gives the work area&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please expalin  wt diff b/w  1,2, 3&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;Spanadana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2008 11:51:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734284#M898768</guid>
      <dc:creator>spandana_babu</dc:creator>
      <dc:date>2008-04-30T11:51:31Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734285#M898769</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;1. wa_it has the structure as ztab has,&lt;/P&gt;&lt;P&gt;2. wa_it has the structure of mara and &lt;/P&gt;&lt;P&gt;3. wa_it has the structure of wa_kna1, i.e. it consists of the fields cno, country and name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;None of the three data declarations is an internal table!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have success,&lt;/P&gt;&lt;P&gt;Heinz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2008 06:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734285#M898769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-01T06:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734286#M898770</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;henz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; thanks  to reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but  in 1. statemnet&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i t shows the body of  the ztab( table type)&lt;/P&gt;&lt;P&gt; not strucutre..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; while  othere shows structure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   can u explain..&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;Spandana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 05:11:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734286#M898770</guid>
      <dc:creator>spandana_babu</dc:creator>
      <dc:date>2008-05-02T05:11:22Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734287#M898771</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Spandana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Statement 1 shows you the body in case when your ztab is declares as TYPE TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps,&lt;/P&gt;&lt;P&gt;Heinz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 15:13:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734287#M898771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T15:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734288#M898772</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;heinz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; thank u very much&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i understand completely....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank u&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Spanadana&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 May 2008 03:50:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-tables/m-p/3734288#M898772</guid>
      <dc:creator>spandana_babu</dc:creator>
      <dc:date>2008-05-03T03:50:40Z</dc:date>
    </item>
  </channel>
</rss>

