<?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 adding one more fields to table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408441#M1547708</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 table control which created based on internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I add one more field to internal table, to be displayed in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i did. i activated the code and try to import the field from the program using the screen painter tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can not found that field in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;br&lt;/P&gt;&lt;P&gt;ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Nov 2010 06:25:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-10T06:25:36Z</dc:date>
    <item>
      <title>adding one more fields to table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408441#M1547708</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 table control which created based on internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I add one more field to internal table, to be displayed in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what i did. i activated the code and try to import the field from the program using the screen painter tool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can not found that field in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;br&lt;/P&gt;&lt;P&gt;ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 06:25:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408441#M1547708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-10T06:25:36Z</dc:date>
    </item>
    <item>
      <title>Re: adding one more fields to table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408442#M1547709</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;If you want to add a new field to your table control, you will have to include the field from either its respective database table (Add from Dictionary)  and add the field to the internal table.&lt;/P&gt;&lt;P&gt;Or you can declare a variable (let's say &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; DATA: gv_io(10) TYPE c &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; ) and then add the variable as a column onto your table control (Add from Program). Also you gotto add the field to the internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 06:48:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408442#M1547709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-10T06:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: adding one more fields to table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408443#M1547710</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;move the data of your internal table into some other internal table first.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now take one data variable having the field you want to add and&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; loop at new internal table&lt;/P&gt;&lt;P&gt;, concatenate that variable into your new table.&lt;/P&gt;&lt;P&gt; end loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can take one structure having all the fields of old internal table plus new field. n then refer this structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 06:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408443#M1547710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-10T06:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: adding one more fields to table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408444#M1547711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ali, &lt;/P&gt;&lt;P&gt;Activate the include where you declared the internal table. In fact, you activate whole program once. Still if you don't get, just place one input filed on the table control, give your field name(ITAB-FILED) and activate. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat.O&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 07:07:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408444#M1547711</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-11-10T07:07:23Z</dc:date>
    </item>
    <item>
      <title>Re: adding one more fields to table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408445#M1547712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks Venkat.O,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the fields appear in the screen painter, but how i can add it as a column in table control?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 07:48:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408445#M1547712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-10T07:48:02Z</dc:date>
    </item>
    <item>
      <title>Re: adding one more fields to table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408446#M1547713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ali,&lt;/P&gt;&lt;P&gt;If it is customized program, Just delete table control in screen painter. Again place table control on the screen and select all fields from internal table and place on table control if you are not able place single field on the table control. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also place single field on table control in screen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkat.O&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 07:58:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408446#M1547713</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2010-11-10T07:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: adding one more fields to table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408447#M1547714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just add the field from internal table to table control, but one issue with header for the column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How i can rename it , blank header and lock one(not editable)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;br,&lt;/P&gt;&lt;P&gt;ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Nov 2010 08:09:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/adding-one-more-fields-to-table-control/m-p/7408447#M1547714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-10T08:09:24Z</dc:date>
    </item>
  </channel>
</rss>

