<?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 Modify table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-table-control/m-p/2845954#M666716</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;I want to modify the column display. I mean, I create a table control but after that, I want to change the column order (for example, I add a new field). If I do that, the columns does not appears properly (not appears in the correct order).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know what is the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Sep 2007 13:20:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-20T13:20:16Z</dc:date>
    <item>
      <title>Modify table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-table-control/m-p/2845954#M666716</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;I want to modify the column display. I mean, I create a table control but after that, I want to change the column order (for example, I add a new field). If I do that, the columns does not appears properly (not appears in the correct order).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does anybody know what is the problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 13:20:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-table-control/m-p/2845954#M666716</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T13:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: Modify table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-table-control/m-p/2845955#M666717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mayor,&lt;/P&gt;&lt;P&gt;             Check the structure sequence you have applied for table control. The other thing the value you fetching to Internal Table and Structure You have applied for Table control should be in the same order.Then after if you are unable to solve the problem, send me the code I will do that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Alvaro Tejada Galindo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 13:34:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-table-control/m-p/2845955#M666717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T13:34:21Z</dc:date>
    </item>
    <item>
      <title>Re: Modify table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-table-control/m-p/2845956#M666718</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 cannot change the order in the table control which is already created.&lt;/P&gt;&lt;P&gt;what all changes u want should be done only in the structure that u have passed to the table control. There would be structure mismatch when u add a new field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 13:51:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-table-control/m-p/2845956#M666718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T13:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Modify table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modify-table-control/m-p/2845957#M666719</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 with a TC of a standard dynpro for infotypes (3000). When I debug the code, the table CXTAB_CONTROL has the table field COLS with the right order but in this table the field COLS-INDEX is not correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example CXTAB_CONTROL-COLS is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CXTAB_CONTROL-COLS[1]-SCREEN-NAME = FIELD1&lt;/P&gt;&lt;P&gt;CXTAB_CONTROL-COLS[2]-SCREEN-NAME = FIELD2&lt;/P&gt;&lt;P&gt;CXTAB_CONTROL-COLS[3]-SCREEN-NAME = FIELD3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CXTAB_CONTROL-COLS[1]-INDEX = 1&lt;/P&gt;&lt;P&gt;CXTAB_CONTROL-COLS[2]-INDEX = 3&lt;/P&gt;&lt;P&gt;CXTAB_CONTROL-COLS[3]-INDEX = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it might be &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CXTAB_CONTROL-COLS[2]-INDEX = 2&lt;/P&gt;&lt;P&gt;CXTAB_CONTROL-COLS[3]-INDEX = 3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that you can modify this, because for non standard TC you can change the column order.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Sep 2007 14:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modify-table-control/m-p/2845957#M666719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-20T14:18:45Z</dc:date>
    </item>
  </channel>
</rss>

