<?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 desable table control and push buttons in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/desable-table-control-and-push-buttons/m-p/3624741#M873282</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if gv_trtyp eq 'A'.&lt;/P&gt;&lt;P&gt;    loop at tc_value-cols into cols.&lt;/P&gt;&lt;P&gt;      move 0 to cols-screen-input .&lt;/P&gt;&lt;P&gt;      move 0 to cols-screen-active .&lt;/P&gt;&lt;P&gt;      modify tc_value-cols from cols index sy-tabix.&lt;/P&gt;&lt;P&gt;      clear cols.   &lt;STRONG&gt;" after pressing enter key then it is happening&lt;/STRONG&gt;    endloop.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name eq 'CONT'.    &lt;STRONG&gt;'' this is push buttons&lt;/STRONG&gt;*         OR screen-name = 'ZCURR-ZEDATU'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OR screen-name = 'ZCURR-ZWMENG'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OR screen-name = 'ZCURR-ZREASON'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OR screen-name = 'ZCURR-ZCOMMENT'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        move 0 to screen-input.&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;***********the above logic is on table control not working properly need to disable table control as well as push buttons both&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Apr 2008 06:44:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-10T06:44:05Z</dc:date>
    <item>
      <title>desable table control and push buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/desable-table-control-and-push-buttons/m-p/3624741#M873282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if gv_trtyp eq 'A'.&lt;/P&gt;&lt;P&gt;    loop at tc_value-cols into cols.&lt;/P&gt;&lt;P&gt;      move 0 to cols-screen-input .&lt;/P&gt;&lt;P&gt;      move 0 to cols-screen-active .&lt;/P&gt;&lt;P&gt;      modify tc_value-cols from cols index sy-tabix.&lt;/P&gt;&lt;P&gt;      clear cols.   &lt;STRONG&gt;" after pressing enter key then it is happening&lt;/STRONG&gt;    endloop.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;      if screen-name eq 'CONT'.    &lt;STRONG&gt;'' this is push buttons&lt;/STRONG&gt;*         OR screen-name = 'ZCURR-ZEDATU'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OR screen-name = 'ZCURR-ZWMENG'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OR screen-name = 'ZCURR-ZREASON'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OR screen-name = 'ZCURR-ZCOMMENT'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        move 0 to screen-input.&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;***********the above logic is on table control not working properly need to disable table control as well as push buttons both&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 06:44:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/desable-table-control-and-push-buttons/m-p/3624741#M873282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T06:44:05Z</dc:date>
    </item>
    <item>
      <title>Re: desable table control and push buttons</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/desable-table-control-and-push-buttons/m-p/3624742#M873283</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;During processing of a table control or a step loop, the changes affect the current line of the table control or the current step loop group. Before the processing of a table control, the change to the attributes of a screen element that is part of a line in the table control does not effect the table control, since the values are transferred from the structure created using CONTROLS. Before a step loop is processed, the change to the attributes of a screen elements that is part of a step loop group affects all groups in the step loop. &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
MODULE modify_0100 OUTPUT. 
  LOOP AT SCREEN. 
    IF screen-name = 'VAL'. 
      screen-active    = '0'. 
      MODIFY SCREEN. 
    ENDIF. 
  ENDLOOP. 
ENDMODULE. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Apr 2008 07:25:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/desable-table-control-and-push-buttons/m-p/3624742#M873283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-10T07:25:38Z</dc:date>
    </item>
  </channel>
</rss>

