<?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: Hiding fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658020#M1095980</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean change the flow logic of a standard program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Oct 2008 11:38:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-24T11:38:15Z</dc:date>
    <item>
      <title>Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658005#M1095965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am calling a selection screen as a sub screen. Now in some cases i need hide this selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can i do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 10:28:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658005#M1095965</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T10:28:02Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658006#M1095966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what about not calling it for these cases?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 10:29:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658006#M1095966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T10:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658007#M1095967</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 like this....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 LOOP AT SCREEN.
     IF screen-group1 = 'B2' OR screen-group1 = 'B3'.-----&amp;gt;modif id of the selection screen parameters or select options...
       screen-active = 0.------&amp;gt;to make invisible
     ELSE.
       screen-active = 1.

      ENDIF.
     MODIFY SCREEN.
   ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 10:29:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658007#M1095967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T10:29:54Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658008#M1095968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Lisa ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;At selection-screen output.
Loop at screen.
"write ur logic.
Endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 10:31:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658008#M1095968</guid>
      <dc:creator>Mohamed_Mukhtar</dc:creator>
      <dc:date>2008-10-24T10:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658009#M1095969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to use &lt;STRONG&gt;at selection-screen output&lt;/STRONG&gt; event in this case.&lt;/P&gt;&lt;P&gt;though it is module pool, but you are calling selection-screen as subscreen. you have to palce the logic there .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at selection-screen output.
if &amp;lt;some condition&amp;gt;. "place your condtion here
loop at screen.

if screen-name = 'ABC'.
 screen-active = 0. "hide the fields
 modify screen.
endif.

endloop.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 10:31:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658009#M1095969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T10:31:05Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658010#M1095970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This may help u.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
   IF SCREEN-NAME/GROUP1/GROUP2/... = '...'.
      SCREEN-ACTIVE = 0.
      MODIFY SCREEN.
   ENDIF.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sukriti Saha on Oct 24, 2008 4:01 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 10:31:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658010#M1095970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T10:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658011#M1095971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi, &lt;/P&gt;&lt;P&gt;just change the visibility property of the fields according to the condition.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 10:31:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658011#M1095971</guid>
      <dc:creator>arjun_thakur</dc:creator>
      <dc:date>2008-10-24T10:31:40Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658012#M1095972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;     IF SCREEN-GROUP1 = 'OUT'.&lt;/P&gt;&lt;P&gt;      SCREEN-INVISIBLE = 0.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 1.&lt;/P&gt;&lt;P&gt;      SCREEN-REQUIRED = 1.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      SCREEN-INVISIBLE = 1.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;      SCREEN-REQUIRED = 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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 10:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658012#M1095972</guid>
      <dc:creator>former_member342104</dc:creator>
      <dc:date>2008-10-24T10:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658013#M1095973</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;Create a blank subscreen and call the selection screen or the blank screen based on the condtion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO, declare the program name and subscreen number as varaibles, and change the value of the screen number based on the condtion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Navneeth K.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 10:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658013#M1095973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T10:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658014#M1095974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can i stop calling it. my call statement is in flow logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:22:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658014#M1095974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658015#M1095975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Roy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where do i need to write this logic?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:24:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658015#M1095975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:24:07Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658016#M1095976</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;just below your selection screen in...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN OUTPUT.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;debarshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:27:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658016#M1095976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:27:59Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658017#M1095977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have screen in that user can select in what mode he can go like CREATE, DISPLAY, CHANGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when he selects display then i need to hide this selection screen. Now could you please tell me how can do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:31:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658017#M1095977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:31:22Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658018#M1095978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where ever you designed the selection screen, under that place the logic. see my post.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:36:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658018#M1095978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:36:39Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658019#M1095979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How does it works? Could you please make a small program and tell me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initial i need a screen with one field and three buttons like CREATE,DISPLAY and CHANGE . after the user enter some value if he press DISPLAY button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need another screen where it should contain subscreen. when it is display it should be able to hide else. we should display this screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lisa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:37:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658019#M1095979</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658020#M1095980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you mean change the flow logic of a standard program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658020#M1095980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658021#M1095981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I included some code in the flow logic of the standard program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:44:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658021#M1095981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:44:21Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658022#M1095982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ztest_sub.

DATA: ok_code TYPE sy-ucomm.

SELECTION-SCREEN BEGIN OF SCREEN 1100 AS SUBSCREEN.
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-100.

PARAMETERS: p_matnr TYPE matnr.

SELECTION-SCREEN END OF BLOCK b1.
SELECTION-SCREEN END OF SCREEN 1100.


AT SELECTION-SCREEN OUTPUT.
  IF ok_code = 'DISP'.
    LOOP AT SCREEN.
      IF screen-name CS 'P_MATNR'.
        screen-input = 0.  "if you want to input disable 
*        screen-active = 0.  "if you want to Hide 
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
  ENDIF.

START-OF-SELECTION.

  CALL SCREEN 100.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE status_0100 OUTPUT.
  SET PF-STATUS 'YYY'.  "I just set the status
  "here i added the buttons DISP , CHANGE etc

ENDMODULE.                 " STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE user_command_0100 INPUT.
  IF sy-ucomm EQ 'BACK'.
    LEAVE TO SCREEN 0.
  ENDIF.
  "handle the other buttons tooo..

ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;flow logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.
  CALL SUBSCREEN sub INCLUDING sy-repid '1100'.
  MODULE status_0100.
*
PROCESS AFTER INPUT.
  MODULE user_command_0100.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a subscreen area sub. along with other elements. in the element list add the ok_code also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:45:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658022#M1095982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:45:00Z</dc:date>
    </item>
    <item>
      <title>Re: Hiding fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658023#M1095983</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;PRE&gt;&lt;CODE&gt;
AT SELECTION-SCREEN OUTPUT.

loop at screen.
 
if screen-name = 'DISPLAY'.
 IF screen-group = 'BL1'.
 screen-active = 1. ----&amp;gt; fields will be shown
 screen-input = 0. -------&amp;gt; input off
else.
screen-active = 0.------------&amp;gt;  other field will be invisible
 endif.
 modify screen.
endif.
 
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try like this...might work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Debarshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Oct 2008 11:45:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hiding-fields/m-p/4658023#M1095983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-24T11:45:24Z</dc:date>
    </item>
  </channel>
</rss>

