<?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 table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394597#M532789</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;In the Screen attributes, Select that column and set it as "Display only".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if you got the right answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Hari krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Jun 2007 08:37:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-18T08:37:34Z</dc:date>
    <item>
      <title>regarding table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394594#M532786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have developed a table control in which the datas are coming correctly&lt;/P&gt;&lt;P&gt;but in editable mode means if u want u can edit(make changes) on the table control,what i want is dat it sud  not be editable i,e no one can change it,,for this what sud i do with table control on the screen,,plz help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 08:25:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394594#M532786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T08:25:05Z</dc:date>
    </item>
    <item>
      <title>Re: regarding table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394595#M532787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just on table controls loop where you keep track of sy-loopc write below code&lt;/P&gt;&lt;P&gt;loop at screen&lt;/P&gt;&lt;P&gt;case screen-name&lt;/P&gt;&lt;P&gt;  when 'tab1-colname'.&lt;/P&gt;&lt;P&gt;     screen-input = '0'&lt;/P&gt;&lt;P&gt;     modify screen.&lt;/P&gt;&lt;P&gt;endloop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashutosh&lt;/P&gt;&lt;P&gt;Reward points if helpfull&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 08:28:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394595#M532787</guid>
      <dc:creator>former_member508729</dc:creator>
      <dc:date>2007-06-18T08:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: regarding table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394596#M532788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make all the fileds of the table control in the display mode in the layout itself. If you dont wnt to edit. or select the columns to and change the mode to display mode at in layout editor SE51 only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But if you wnt to change the attributes of the tab ctrl items at runtime.&lt;/P&gt;&lt;P&gt;do the code in the PBO of the table control loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;        loop at screen.
          if SCREEN-NAME = '&amp;lt;tablectrl-field1&amp;gt;' or
             SCREEN-NAME = '&amp;lt;tablectrl-field2&amp;gt;'.
            SCREEN-INPUT = 0.
            modify screen.
          endif.
        endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this will disable the field1 field2 of the table contrl n display in display mode only.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 08:31:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394596#M532788</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2007-06-18T08:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: regarding table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394597#M532789</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;In the Screen attributes, Select that column and set it as "Display only".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if you got the right answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Hari krishna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 08:37:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394597#M532789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T08:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: regarding table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394598#M532790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;If you mean the Input/Output setting, you can do this a number of ways. One is that you can go to the screen painter, and double click on the column(in the first cell). You will get a dialog where you can change the status of the field, either Input or Output, or Output Only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do reward points if this answers ur query.&lt;/P&gt;&lt;P&gt;Regards: &lt;/P&gt;&lt;P&gt;Sapna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jun 2007 08:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-table-control/m-p/2394598#M532790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-18T08:38:32Z</dc:date>
    </item>
  </channel>
</rss>

