<?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: deactivate row input in table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivate-row-input-in-table-control/m-p/4406945#M1047327</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;&lt;/P&gt;&lt;P&gt;Loop the screen table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can solve your problem with taht.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Aug 2008 14:43:05 GMT</pubDate>
    <dc:creator>naveen_inuganti2</dc:creator>
    <dc:date>2008-08-27T14:43:05Z</dc:date>
    <item>
      <title>deactivate row input in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivate-row-input-in-table-control/m-p/4406944#M1047326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a internal table on the screen and the user can modify data inside. I want to deactivate input only for someone row. I have to use table control option ??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to use :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*declaration&lt;/P&gt;&lt;P&gt;CONTROLS: tab_rgsubv        TYPE TABLEVIEW USING SCREEN '0700'.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF it_zpsregsubv OCCURS 0,&lt;/P&gt;&lt;P&gt;       flag       TYPE c,&lt;/P&gt;&lt;P&gt;       mandt      LIKE zpssbvregsubv-mandt,&lt;/P&gt;&lt;P&gt;       zzps_posnr LIKE zpssbvregsubv-zzps_posnr,&lt;/P&gt;&lt;P&gt;       zznrg      LIKE zpssbvregsubv-zznrg,&lt;/P&gt;&lt;P&gt;       zzbegdi    LIKE zpssbvregsubv-zzbegdi,&lt;/P&gt;&lt;P&gt;       zzdgbi     LIKE zpssbvregsubv-zzdgbi,&lt;/P&gt;&lt;P&gt;       flag2      TYPE c,&lt;/P&gt;&lt;P&gt;      END OF it_zpsregsubv .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;etct etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT it_zpsregsubv WITH CONTROL tab_rgsubv .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE deactivate .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but there's a error message: Unable to interpret "WITH".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can solve my problem ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tka a lot,&lt;/P&gt;&lt;P&gt;bye.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2008 14:38:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivate-row-input-in-table-control/m-p/4406944#M1047326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-27T14:38:34Z</dc:date>
    </item>
    <item>
      <title>Re: deactivate row input in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivate-row-input-in-table-control/m-p/4406945#M1047327</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;&lt;/P&gt;&lt;P&gt;Loop the screen table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can solve your problem with taht.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naveen.I&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2008 14:43:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivate-row-input-in-table-control/m-p/4406945#M1047327</guid>
      <dc:creator>naveen_inuganti2</dc:creator>
      <dc:date>2008-08-27T14:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: deactivate row input in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivate-row-input-in-table-control/m-p/4406946#M1047328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try by setting the SCREEN attributes.&lt;/P&gt;&lt;P&gt;See the below example code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT SCREEN.
  IF screen-name = 'ZSRSK-ADVNO' .
     screen-input = 0.
     MODIFY SCREEN.
  ENDIF.
ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2008 14:44:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivate-row-input-in-table-control/m-p/4406946#M1047328</guid>
      <dc:creator>Firoz_Ashraf</dc:creator>
      <dc:date>2008-08-27T14:44:37Z</dc:date>
    </item>
    <item>
      <title>Re: deactivate row input in table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/deactivate-row-input-in-table-control/m-p/4406947#M1047329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tks for help,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but not run... and with this code, if run, i deactive all colomn.... I have deactivate only some row of colomn...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TKS,&lt;/P&gt;&lt;P&gt;BYE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Aug 2008 14:54:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/deactivate-row-input-in-table-control/m-p/4406947#M1047329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-27T14:54:50Z</dc:date>
    </item>
  </channel>
</rss>

