<?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: Hi... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545818#M579103</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi reddy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    we can satisfy your requiremnet only thro module pool if that ok wid you let me send you the program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;ASHA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Jul 2007 12:35:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-20T12:35:55Z</dc:date>
    <item>
      <title>Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545809#M579094</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;&lt;/P&gt;&lt;P&gt; here is my requirement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There should two radio buttons in the output screen..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i check one radio button it has to show two text fields in the same screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i check second radio button it has to show two check boxes in the same screen...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it would be appreciated by reward points if any one clarifies my doubt...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nagi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 11:20:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545809#M579094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T11:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545810#M579095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;See this sample program and do accordingly&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: pa_file TYPE rlgrap-filename MODIF ID abc,&lt;/P&gt;&lt;P&gt;pa_lifnr TYPE lfa1-lifnr MODIF ID abc,&lt;/P&gt;&lt;P&gt;pa_vkorg TYPE vbak-vkorg MODIF ID abc.&lt;/P&gt;&lt;P&gt;&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 TITLE text-002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: pa_kunnr TYPE vbak-kunnr MODIF ID def.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_lifnr FOR gs_lfa1-lifnr MODIF ID def,&lt;/P&gt;&lt;P&gt;s_date FOR gs_lfa1-erdat MODIF ID def,&lt;/P&gt;&lt;P&gt;s_augru FOR gs_vbak-augru MODIF ID def,&lt;/P&gt;&lt;P&gt;s_vbeln FOR gs_vbak-vbeln MODIF ID def.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: pa_upd RADIOBUTTON GROUP g1 USER-COMMAND uc01 DEFAULT 'X'."#EC *&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(60) text-004 FOR FIELD pa_upd.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: pa_rep RADIOBUTTON GROUP g1 ."#EC *&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(60) text-005 FOR FIELD pa_rep.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF pa_rep EQ gc_x.&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 = gc_abc.&lt;/P&gt;&lt;P&gt;screen-input = gc_zero_num.&lt;/P&gt;&lt;P&gt;ELSEIF screen-group1 = gc_def.&lt;/P&gt;&lt;P&gt;screen-active = gc_one_num.&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;ELSEIF pa_upd EQ gc_x.&lt;/P&gt;&lt;P&gt;*For Reprocessing&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = gc_def.&lt;/P&gt;&lt;P&gt;screen-input = gc_zero_num.&lt;/P&gt;&lt;P&gt;ELSEIF screen-group1 = gc_abc.&lt;/P&gt;&lt;P&gt;screen-active = gc_one_num.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;CLEAR pa_upd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points for useful Answers&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 11:24:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545810#M579095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T11:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545811#M579096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Check the code&lt;/P&gt;&lt;P&gt;parameters:ch type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case ch.&lt;/P&gt;&lt;P&gt;when 1.&lt;/P&gt;&lt;P&gt;write:/ 'Test'.&lt;/P&gt;&lt;P&gt;when 2.&lt;/P&gt;&lt;P&gt;selection-screen begin of screen 900.&lt;/P&gt;&lt;P&gt;parameters:name(30) type c ,&lt;/P&gt;&lt;P&gt;           name1(30) type c.&lt;/P&gt;&lt;P&gt;selection-screen end of screen 900.&lt;/P&gt;&lt;P&gt;call selection-screen 900..&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 11:25:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545811#M579096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T11:25:16Z</dc:date>
    </item>
    <item>
      <title>Re: Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545812#M579097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want this requirement without using screens.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 11:28:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545812#M579097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T11:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545813#M579098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Then u should use &lt;/P&gt;&lt;P&gt;Loop at screen.&lt;/P&gt;&lt;P&gt;screen-active = 0.&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;whatever screen u want to be active make it 1.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 11:37:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545813#M579098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T11:37:45Z</dc:date>
    </item>
    <item>
      <title>Re: Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545814#M579099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi roja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u explain clearly how to get using loop at screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 11:41:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545814#M579099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T11:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545815#M579100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Look at this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have designed the selecton screen like this&lt;/P&gt;&lt;P&gt;PARAMETERS:RB_PRE RADIOBUTTON GROUP G1 DEFAULT 'X' USER-COMMAND RB,&lt;/P&gt;&lt;P&gt;           RB_APP RADIOBUTTON GROUP G1 ,&lt;/P&gt;&lt;P&gt;           P_FILE_A  TYPE dxfields-longpath  MODIF ID AAA DEFAULT&lt;/P&gt;&lt;P&gt;'\usr\sap\II3\DVEBMGS00\WORK\cust.txt',&lt;/P&gt;&lt;P&gt;           P_FILE    TYPE RLGRAP-FILENAME MODIF ID BBB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then i gave the code to make one active and the other inactive&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----When file from Presentation server is selected&lt;/P&gt;&lt;P&gt;  IF RB_PRE = 'X'.&lt;/P&gt;&lt;P&gt;*----To make the application server inactive&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF SCREEN-GROUP1 = 'AAA'.&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;  ELSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----When file from Presentation server is selected&lt;/P&gt;&lt;P&gt;    RB_APP = 'X'.&lt;/P&gt;&lt;P&gt;*----To make the application server inactive&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF SCREEN-GROUP1 = 'BBB'.&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;  ENDIF.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 11:49:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545815#M579100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T11:49:37Z</dc:date>
    </item>
    <item>
      <title>Re: Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545816#M579101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tables: VBAK.&lt;/P&gt;&lt;P&gt;Parameters: P_RB1 Rsdiobutton Group GRP1 User-command ucomm Default 'X'.&lt;/P&gt;&lt;P&gt;Select-options: S_VBELN For VBAK-VBELN Modif Id 123.&lt;/P&gt;&lt;P&gt;Parameters: P_RB2 Radiobutton Group GRP1.&lt;/P&gt;&lt;P&gt;Parameters: P_CHK1 As Checkbox Modif Id 234,&lt;/P&gt;&lt;P&gt;                   P_CHK2 As Checkbox Modif Id 234.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At Selection-screen Output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop At Screen.&lt;/P&gt;&lt;P&gt;If P_RB2 Is Not Initial.&lt;/P&gt;&lt;P&gt;If Screen-Group1 = '123'.&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;EndIf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If P_RB1 Is Not Initial.&lt;/P&gt;&lt;P&gt;If Screen-Group1 = '234'.&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;EndIf.&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;If you want the fields to totally disapper instead of input ...put active = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 11:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545816#M579101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T11:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545817#M579102</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;see this code.&lt;/P&gt;&lt;P&gt;tables:sscrfields.&lt;/P&gt;&lt;P&gt;PARAMETERS:check RADIOBUTTON GROUP rad1 USER-COMMAND RAD DEFAULT 'X',&lt;/P&gt;&lt;P&gt;field RADIOBUTTON GROUP rad1.&lt;/P&gt;&lt;P&gt;PARAMETERS:field1(10),field2(10).&lt;/P&gt;&lt;P&gt;PARAMETERS:check1 as CHECKBOX,&lt;/P&gt;&lt;P&gt;check2 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;    if check = 'X'.&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        if screen-name = 'CHECK1' OR SCREEN-NAME = 'CHECK2'.&lt;/P&gt;&lt;P&gt;          screen-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;        ELSEIF screen-name = 'FIELD1' OR SCREEN-NAME = 'FIELD2' OR&lt;/P&gt;&lt;P&gt;              SCREEN-NAME = '%_FIELD1_%_APP_%-TEXT'OR SCREEN-NAME = '%_FIELD2_%_APP_%-TEXT'.&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;    elseif FIELD = 'X'.&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        if screen-name = 'FIELD1' OR SCREEN-NAME = 'FIELD2' OR&lt;/P&gt;&lt;P&gt;              SCREEN-NAME = '%_FIELD1_%_APP_%-TEXT'OR SCREEN-NAME = '%_FIELD2_%_APP_%-TEXT'.&lt;/P&gt;&lt;P&gt;          screen-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;        ELSEIF screen-name = 'CHECK1' OR SCREEN-NAME = 'CHECK2'.&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;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;case sscrfields-ucomm.&lt;/P&gt;&lt;P&gt;  when 'RAD'.&lt;/P&gt;&lt;P&gt;    if check = 'X'.&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        if screen-name = 'CHECK1' OR SCREEN-NAME = 'CHECK2'.&lt;/P&gt;&lt;P&gt;          screen-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;        ELSEIF  screen-name = 'FIELD1' OR SCREEN-NAME = 'FIELD2' OR&lt;/P&gt;&lt;P&gt;              SCREEN-NAME = '%_FIELD1_%_APP_%-TEXT'OR SCREEN-NAME = '%_FIELD2_%_APP_%-TEXT'.&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;    elseif FIELD = 'X'.&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        if screen-name = 'FIELD1' OR SCREEN-NAME = 'FIELD2' OR&lt;/P&gt;&lt;P&gt;              SCREEN-NAME = '%_FIELD1_%_APP_%-TEXT'OR SCREEN-NAME = '%_FIELD2_%_APP_%-TEXT'.&lt;/P&gt;&lt;P&gt;          screen-ACTIVE = 1.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;        ELSEIF screen-name = 'CHECK1' OR SCREEN-NAME = 'CHECK2'.&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;    endif.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&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;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 12:27:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545817#M579102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T12:27:30Z</dc:date>
    </item>
    <item>
      <title>Re: Hi...</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545818#M579103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi reddy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    we can satisfy your requiremnet only thro module pool if that ok wid you let me send you the program..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;ASHA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jul 2007 12:35:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/2545818#M579103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-20T12:35:55Z</dc:date>
    </item>
  </channel>
</rss>

