<?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 change screen input in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-screen-input-in-table-control/m-p/2836680#M664200</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Expert Abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope everybody is in good health and state.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well my problem is that i am taking data in itab in a table control and i want to display the data in it only.&lt;/P&gt;&lt;P&gt;only if we select and line and click modify, 2 fields of it should be enabled for writing.&lt;/P&gt;&lt;P&gt;here's the code but is not working, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case OK_CODE.&lt;/P&gt;&lt;P&gt;WHEN 'EDIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF MARK = 'X'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME &amp;lt;&amp;gt; 'ITAB-CHQ_NO' OR SCREEN-NAME &amp;lt;&amp;gt; 'ITAB-DD_NO'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls suggest as to where am I wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards , Neetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 22 Sep 2007 06:23:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-22T06:23:50Z</dc:date>
    <item>
      <title>change screen input in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-screen-input-in-table-control/m-p/2836680#M664200</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Expert Abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope everybody is in good health and state.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well my problem is that i am taking data in itab in a table control and i want to display the data in it only.&lt;/P&gt;&lt;P&gt;only if we select and line and click modify, 2 fields of it should be enabled for writing.&lt;/P&gt;&lt;P&gt;here's the code but is not working, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case OK_CODE.&lt;/P&gt;&lt;P&gt;WHEN 'EDIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF MARK = 'X'.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-NAME &amp;lt;&amp;gt; 'ITAB-CHQ_NO' OR SCREEN-NAME &amp;lt;&amp;gt; 'ITAB-DD_NO'.&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls suggest as to where am I wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards , Neetu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2007 06:23:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-screen-input-in-table-control/m-p/2836680#M664200</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-22T06:23:50Z</dc:date>
    </item>
    <item>
      <title>Re: change screen input in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-screen-input-in-table-control/m-p/2836681#M664201</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neetu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to assign fields to a group , the fields which u don't want to be editable keep &lt;/P&gt;&lt;P&gt;it in single group for eg, 'GP1'. And now write the code like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF SCREEN-GROUP EQ 'GP1'&lt;/P&gt;&lt;P&gt;SCREEN-INPUT = '0'.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDIF.&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;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Sep 2007 07:03:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-screen-input-in-table-control/m-p/2836681#M664201</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-22T07:03:34Z</dc:date>
    </item>
  </channel>
</rss>

