<?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/1123359#M109528</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;See where that strcuture is used and give us the code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 23 Feb 2006 16:06:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-23T16:06:52Z</dc:date>
    <item>
      <title>INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123350#M109519</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;I have seen in a program the internal table like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; data: begin of i_table,&lt;/P&gt;&lt;P&gt;         record(2) type c,         &lt;/P&gt;&lt;P&gt;         matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;         smatn like knodd-smatn,&lt;/P&gt;&lt;P&gt;         laeda like mara-laeda,&lt;/P&gt;&lt;P&gt;         ......................&lt;/P&gt;&lt;P&gt;         ......................&lt;/P&gt;&lt;P&gt;       end of i_table.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and he's using that internal table later on in the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i tried to add some more fields to that internal table and use, it's giving syntax error saying that "OCCURS n" specification is missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How come he could used that internal table without "Occus n" specificaiton, and why it is giving error for me now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz clarify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 15:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123350#M109519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T15:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123351#M109520</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;he might have used it as &amp;lt;b&amp;gt;TYPES&amp;lt;/b&amp;gt;, is the code posted by u the same as written by him&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of i_table &amp;lt;b&amp;gt;occurs 5&amp;lt;/b&amp;gt;,&lt;/P&gt;&lt;P&gt;record(2) type c, &lt;/P&gt;&lt;P&gt;matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;smatn like knodd-smatn,&lt;/P&gt;&lt;P&gt;laeda like mara-laeda,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sekhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 15:56:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123351#M109520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T15:56:37Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123352#M109521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: begin of i_table &amp;lt;b&amp;gt;occurs 0,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;record(2) type c, &lt;/P&gt;&lt;P&gt;matnr like mara-matnr,&lt;/P&gt;&lt;P&gt;smatn like knodd-smatn,&lt;/P&gt;&lt;P&gt;laeda like mara-laeda,&lt;/P&gt;&lt;P&gt;......................&lt;/P&gt;&lt;P&gt;......................&lt;/P&gt;&lt;P&gt;end of i_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;occurs 0 is missing..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 15:57:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123352#M109521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T15:57:28Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123353#M109522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venugopal,&lt;/P&gt;&lt;P&gt;  Check in the same program,he must have defined some other internal table &amp;amp; used this structure.&lt;/P&gt;&lt;P&gt;like..&lt;/P&gt;&lt;P&gt;DATA: I_TABLE1 LIKE I_TABLE OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 15:59:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123353#M109522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T15:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123354#M109523</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;without the OCCURS you have define a structure not a table. So you can't append anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you will have later a command like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : it_table like table of i_table with header-line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgd&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 15:59:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123354#M109523</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-02-23T15:59:57Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123355#M109524</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no, u got me wrong.&lt;/P&gt;&lt;P&gt;that program was working fine without "occurs n" specification earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i tried to add some more fields to that, it is giving errors?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my question is: how come that program worked fine earlier without that "occurs n" specification?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it is clear now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is not such "TYPES" mentioning and no "WITH HEADER LINE" mentioning.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: venu gopal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:00:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123355#M109524</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:00: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/1123356#M109525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are trying to populate the internal table with the rows then you should specify the occurs n statement so that the system allocates the necessary memory for the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kishore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123356#M109525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123357#M109526</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venu gopal,&lt;/P&gt;&lt;P&gt;  According to the definition,it is a structure.He must have defined a internal table with that structure.&lt;/P&gt;&lt;P&gt;But when you define a  tbale without occurs n,it is a structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:03:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123357#M109526</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:03:16Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123358#M109527</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then they might have declared it some where like this&lt;/P&gt;&lt;P&gt;data: itab like i_table occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the error is coming because you might have used some where you are doing one of these..'&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; loop at i_table. or read table i_table or select into i_table&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:04:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123358#M109527</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123359#M109528</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;See where that strcuture is used and give us the code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:06:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123359#M109528</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:06:52Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123360#M109529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If we use DATA without occurs it acts as a structure&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u might have tried to Loop at that internal table , so it gave u the error&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:09:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123360#M109529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:09:53Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123361#M109530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The program may be earlier populating only Header and not the Body. Just check whether earlier append statement was there before your more fields addition? If this was there earlier too then you would have encountered the same problem earlier too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:10:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123361#M109530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:10:01Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123362#M109531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you added the extra fields, did you also add some coding like: append i_table or loop at i_table? That would explain why it worked before but not after your changes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:29:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123362#M109531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:29:10Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123363#M109532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes. you all r correct.&lt;/P&gt;&lt;P&gt;it was just a structure earlier.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now after adding the fileds, i'm trying to do the "append itab" and "loop at itab". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tht's why it is giving the error.&lt;/P&gt;&lt;P&gt;tht's cleared now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you please tell me how to overcome this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now that i'm trying to add some more fields to that stucture and trying to do the "append" and loop at itab", how should i proceed for that changes to be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx a lot.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:47:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123363#M109532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:47: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/1123364#M109533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Venu gopal,&lt;/P&gt;&lt;P&gt;  Declare another internal with this structure.Or just add &amp;lt;b&amp;gt;OCCURS 0&amp;lt;/b&amp;gt; to the existing definition of the internal table.&lt;/P&gt;&lt;P&gt;Also you can add your additional fields to this internal table definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Phani Kiran Nudurupati&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123364#M109533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123365#M109534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;declare like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;add the fields u want to the structure and declare like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:it_table like i_table occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sekhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:51:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123365#M109534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123366#M109535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just look for the &lt;/P&gt;&lt;P&gt;decalration of&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: itab like i_table occurs 0 with header line.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;do operation on the table &amp;lt;b&amp;gt;itab&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;what ever you want to do , loop or what ever..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 16:56:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123366#M109535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T16:56:16Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123367#M109536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're really changing the logic of the program. Without knowing the new requirements, it's hard to tell you how to proceed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In particular, the old logic may not work if you simply change the structure to an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:00:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123367#M109536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T17:00:22Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123368#M109537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the existing structure is like this, right.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: begin of i_table,&lt;/P&gt;&lt;P&gt;        record(2) type c, &lt;/P&gt;&lt;P&gt;        matnr  like mara-matnr,&lt;/P&gt;&lt;P&gt;        smatn like knodd-smatn,&lt;/P&gt;&lt;P&gt;        laeda like mara-laeda,&lt;/P&gt;&lt;P&gt;        ......................&lt;/P&gt;&lt;P&gt;        ......................&lt;/P&gt;&lt;P&gt;      end of i_table.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now i want to populate this stucture as an internal table , with adding my 3 more fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the extra 3 fields i should add are:&lt;/P&gt;&lt;P&gt;    ex_f1 type c,&lt;/P&gt;&lt;P&gt;    ex_f2 type c,&lt;/P&gt;&lt;P&gt;    ex_f3 type c,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: venu gopal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123368#M109537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T17:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123369#M109538</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;what do you mean by this...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: itab like i_table occurs 0 with header line.
extrafiled1 type c,
extrafield2 type c,
extrafield3 type c.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;and add those fields to the structure, since it is a structure , you/some one might have delcared internal table based on it, and populate the fields to that itab,&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Feb 2006 17:52:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table/m-p/1123369#M109538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-23T17:52:47Z</dc:date>
    </item>
  </channel>
</rss>

