<?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 table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/3207150#M764580</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;when u create a internal table structure, &lt;STRONG&gt;instead of append use insert statement&lt;/STRONG&gt;  and specify the position of that particular field. then u can use it as a first field r whatever.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Dec 2007 07:42:00 GMT</pubDate>
    <dc:creator>asik_shameem</dc:creator>
    <dc:date>2007-12-17T07:42:00Z</dc:date>
    <item>
      <title>Regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/3207148#M764578</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;Is it possible to add a column to a dynamic internal table as a first column?.My requirement is...i have a dynamic internal table ..now i have to add(enchancement) a column as first to this dynamic internal table. if possible ...suggest me how to proceed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Padmasri.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Padmasri on Dec 17, 2007 8:12 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 07:11:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/3207148#M764578</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T07:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/3207149#M764579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Given that you already have a field-symbol pointing at your original type named: &amp;lt;orgTable&amp;gt; and it also assumes that your table's row type is a structure, it wouldn't be too hard to modify it to support other types of line types. The following should work (although haven't tried it in the ABAP ide):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data lineType type ref to cl_abap_structdescr.&lt;/P&gt;&lt;P&gt;data tableType type ref to cl_abap_tabledescr.&lt;/P&gt;&lt;P&gt;data componentTable type component_table..&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;tableType ?= cl_abap_tabledescr=&amp;gt;describe_by_data( &amp;lt;orgType&amp;gt; ).&lt;/P&gt;&lt;P&gt;lineType ?= tableType-&amp;gt;get_table_line_type( ).&lt;/P&gt;&lt;P&gt;componentTable = lineType-&amp;gt;get_components( ).&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;append your additional type here.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;append fooType to componentTable.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;lineType ?= cl_abap_structDescr=&amp;gt;create( componentTable ).&lt;/P&gt;&lt;P&gt;tableType = cl_abap_tabledescr=&amp;gt;create( lineType ).&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;now create your new data area.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data newTable type ref to data.&lt;/P&gt;&lt;P&gt;field-symbol &amp;lt;newTable&amp;gt; type standard table.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;create data newTable handle tableType.&lt;/P&gt;&lt;P&gt;assign newTable-&amp;gt;* to &amp;lt;newTable&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Hope this is helpful, Do reward.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 07:28:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/3207149#M764579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T07:28:55Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding internal table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/3207150#M764580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;when u create a internal table structure, &lt;STRONG&gt;instead of append use insert statement&lt;/STRONG&gt;  and specify the position of that particular field. then u can use it as a first field r whatever.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 07:42:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-internal-table/m-p/3207150#M764580</guid>
      <dc:creator>asik_shameem</dc:creator>
      <dc:date>2007-12-17T07:42:00Z</dc:date>
    </item>
  </channel>
</rss>

