<?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: EEWB in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/eewb/m-p/3888147#M933991</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;Plz try this. Forgot to put the scree-input = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = &amp;lt;GRP_NAME&amp;gt;.&lt;/P&gt;&lt;P&gt;screen-active = 0.&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;mahantesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Jun 2008 05:48:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-02T05:48:54Z</dc:date>
    <item>
      <title>EEWB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/eewb/m-p/3888144#M933988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one help me as i want to invisible some fields( i have created the table which i want to indivisible for selected users) that i have created via EEWB..but unable to do ,i have tried all the options but no result, nothing is worked ....&lt;/P&gt;&lt;P&gt;===============================================================================&lt;/P&gt;&lt;P&gt;I have tried the given logic suggested by Mahantesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Keep the selected user in the Z table, and select all users from the table. If the current user exists in that table, then write the following code,&lt;/P&gt;&lt;P&gt;Assign the group for the fields those have to be make invisible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = &amp;lt;GRP_NAME&amp;gt;.&lt;/P&gt;&lt;P&gt;screen-active = 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; but unable to solved the problem.&lt;/P&gt;&lt;P&gt;I have dibugg the whole PBO event, i have set the Screen-Active to 0.. and it is modifying the screen in dibugging But in actual Screen nothing changed. i have tried all the options it is not working ....please help us it is very Urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if some one has face this type of problem please let me know ASAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Martin - Data Migration Team(UK)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2008 20:25:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/eewb/m-p/3888144#M933988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-31T20:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: EEWB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/eewb/m-p/3888145#M933989</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;try using  this it may help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from ztable where user = user&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc eq o.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'xxx'. &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;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2008 20:55:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/eewb/m-p/3888145#M933989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-31T20:55:26Z</dc:date>
    </item>
    <item>
      <title>Re: EEWB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/eewb/m-p/3888146#M933990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Even I have  tried Screen-Input also ...it is not working , it is modifying the screen in dibugging But in actual Screen nothing changed. i have tried all the options it is not working ....please help us it is very Urgent&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 31 May 2008 21:07:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/eewb/m-p/3888146#M933990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-31T21:07:24Z</dc:date>
    </item>
    <item>
      <title>Re: EEWB</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/eewb/m-p/3888147#M933991</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;Plz try this. Forgot to put the scree-input = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = &amp;lt;GRP_NAME&amp;gt;.&lt;/P&gt;&lt;P&gt;screen-active = 0.&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;mahantesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jun 2008 05:48:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/eewb/m-p/3888147#M933991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-02T05:48:54Z</dc:date>
    </item>
  </channel>
</rss>

