<?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 Creating internal table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929665#M385291</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;How to define a internal table for a data base table .&lt;/P&gt;&lt;P&gt;i need all the fields available in the database table also should available in the internal table without declaring each fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please hlep me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Feb 2007 21:39:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-16T21:39:20Z</dc:date>
    <item>
      <title>Creating internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929665#M385291</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;How to define a internal table for a data base table .&lt;/P&gt;&lt;P&gt;i need all the fields available in the database table also should available in the internal table without declaring each fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please hlep me&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 21:39:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929665#M385291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T21:39:20Z</dc:date>
    </item>
    <item>
      <title>Re: Creating internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929666#M385292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi KP,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use include structure statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check this sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: BEGIN OF I_MARA OCCURS 0.
        INCLUDE STRUCTURE MARA.
DATA: END OF I_MARA.
&lt;/CODE&gt;&lt;/PRE&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>Fri, 16 Feb 2007 21:42:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929666#M385292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T21:42:10Z</dc:date>
    </item>
    <item>
      <title>Re: Creating internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929667#M385293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Or you could just say......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: imara type table of mara.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 21:44:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929667#M385293</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-02-16T21:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: Creating internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929668#M385294</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;data: I_table type standard table of mara initial size 0.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 21:45:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929668#M385294</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T21:45:18Z</dc:date>
    </item>
    <item>
      <title>Re: Creating internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929669#M385295</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;another way ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ITAB LIKE MARA OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 21:49:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929669#M385295</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-16T21:49:08Z</dc:date>
    </item>
    <item>
      <title>Re: Creating internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929670#M385296</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 could use the below format..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data itab like table of mara.&lt;/P&gt;&lt;P&gt;data wa like line of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data itab like table of mara with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Hakim&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Feb 2007 21:55:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-internal-table/m-p/1929670#M385296</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2007-02-16T21:55:52Z</dc:date>
    </item>
  </channel>
</rss>

