<?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: table control screen properties changes in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699988#M1452283</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for Your Reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have already tried your coding&lt;/P&gt;&lt;P&gt;but its not working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;consider&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table control contains two row&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first row contains indicator yes - here field should be grey out.&lt;/P&gt;&lt;P&gt;second row contains indicator no - here value should be enterd for that field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Mar 2010 04:58:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-04T04:58:10Z</dc:date>
    <item>
      <title>table control screen properties changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699984#M1452279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; I want to change the screen properties like (screen-input,screen-invisible) for each row based on the &lt;/P&gt;&lt;P&gt;indicator field within the table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for eg &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF lum_ind = 'NO'.&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    if screen-group1 = 'LUM'.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 04:29:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699984#M1452279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-04T04:29:51Z</dc:date>
    </item>
    <item>
      <title>Re: table control screen properties changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699985#M1452280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  There are many thread regarding this.&lt;/P&gt;&lt;P&gt;And the way you told is right, it should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Making Columns as invisible...you can try this way &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT actuals_main-cols INTO wsl_col WHERE&lt;/P&gt;&lt;P&gt;                          screen-name = 'ZACTUALS_STRUC-CNTR' OR&lt;/P&gt;&lt;P&gt;                          screen-name CP 'ZACTUALS_STRUC-STATUS*'  .&lt;/P&gt;&lt;P&gt;    wsl_col-invisible = 1.&lt;/P&gt;&lt;P&gt;    MODIFY actuals_main-cols FROM wsl_col.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to grey out the fields...try this way.&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        IF screen-name = 'COL1'.&lt;/P&gt;&lt;P&gt;          screen-input = 0.&lt;/P&gt;&lt;P&gt;        ENDIF.&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;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vamsi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 04:35:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699985#M1452280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-04T04:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: table control screen properties changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699986#M1452281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 04:43:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699986#M1452281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-04T04:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: table control screen properties changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699987#M1452282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for Your Reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have already tried your coding&lt;/P&gt;&lt;P&gt;but its not working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;consider&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table control contains  two row&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first row contains indicator yes - here field should be grey out.&lt;/P&gt;&lt;P&gt;second row contains indicator no - here value should be enterd for that field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 04:50:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699987#M1452282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-04T04:50:03Z</dc:date>
    </item>
    <item>
      <title>Re: table control screen properties changes</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699988#M1452283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for Your Reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have already tried your coding&lt;/P&gt;&lt;P&gt;but its not working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;consider&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table control contains two row&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first row contains indicator yes - here field should be grey out.&lt;/P&gt;&lt;P&gt;second row contains indicator no - here value should be enterd for that field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Mar 2010 04:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-screen-properties-changes/m-p/6699988#M1452283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-04T04:58:10Z</dc:date>
    </item>
  </channel>
</rss>

