<?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 Hide fields on screen without loop at screen/endloop in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781979#M648429</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear gurus,&lt;/P&gt;&lt;P&gt;Is there any way to hide fields on screen without using loop at screen statement? There are too many fields on the screen and it would take a lot of time to loop through them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Sep 2007 08:38:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-04T08:38:26Z</dc:date>
    <item>
      <title>Hide fields on screen without loop at screen/endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781979#M648429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear gurus,&lt;/P&gt;&lt;P&gt;Is there any way to hide fields on screen without using loop at screen statement? There are too many fields on the screen and it would take a lot of time to loop through them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 08:38:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781979#M648429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-04T08:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: Hide fields on screen without loop at screen/endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781980#M648430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SELECT-OPTIONS S_PTYPE FOR SAPLANE-PLANETYPE &amp;lt;b&amp;gt;NO-DISPLAY&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 08:42:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781980#M648430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-04T08:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: Hide fields on screen without loop at screen/endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781981#M648431</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;1. Assign the Screen fields to Modification group (in the Screen painter field attributes)&lt;/P&gt;&lt;P&gt;   Then in the PBO module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          IF SCREEN-GROUP1  = 'ABC'.&lt;/P&gt;&lt;P&gt;              SCREEN-INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;              SCREEN-ACTIVE = 0.&lt;/P&gt;&lt;P&gt;               MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;            EXIT.&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;this will give a better performance of LOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if Helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 08:47:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781981#M648431</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-09-04T08:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: Hide fields on screen without loop at screen/endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781982#M648432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashant,&lt;/P&gt;&lt;P&gt;I believe I mentioned screen not selection screen.  The field is a dictionary field.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 08:48:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781982#M648432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-04T08:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Hide fields on screen without loop at screen/endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781983#M648433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use MODIF-ID &lt;/P&gt;&lt;P&gt;E.g.&lt;/P&gt;&lt;P&gt;PARAMETERS show_all AS CHECKBOX USER-COMMAND flag. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME. &lt;/P&gt;&lt;P&gt;PARAMETERS: p1 TYPE c LENGTH 10, &lt;/P&gt;&lt;P&gt;                        p2 TYPE c LENGTH 10, &lt;/P&gt;&lt;P&gt;                        p3 TYPE c LENGTH 10. &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME. &lt;/P&gt;&lt;P&gt;PARAMETERS: p4 TYPE c LENGTH 10 MODIF ID bl2, &lt;/P&gt;&lt;P&gt;            p5 TYPE c LENGTH 10 MODIF ID bl2, &lt;/P&gt;&lt;P&gt;            p6 TYPE c LENGTH 10 MODIF ID bl2. &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT. &lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN. &lt;/P&gt;&lt;P&gt;    IF show_all &amp;lt;&amp;gt; 'X' AND &lt;/P&gt;&lt;P&gt;       screen-group1 = 'BL2'. &lt;/P&gt;&lt;P&gt;       screen-active = '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;Please reward points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Taranam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 08:48:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781983#M648433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-04T08:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Hide fields on screen without loop at screen/endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781984#M648434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Varma,&lt;/P&gt;&lt;P&gt;That would definitely improve performance, but can't it be done without the 'LOOP AT SCREEN' statement???&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 08:50:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781984#M648434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-04T08:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Hide fields on screen without loop at screen/endloop</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781985#M648435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sanjay..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to Hide the fields only during runtime based on the Condition then it is must to use the LOOP...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;reward if Helpful..&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Sep 2007 09:03:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hide-fields-on-screen-without-loop-at-screen-endloop/m-p/2781985#M648435</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-09-04T09:03:07Z</dc:date>
    </item>
  </channel>
</rss>

