<?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: Selection Screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283896#M1634106</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii Anurag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u r question is if 1st radio button select taht time 1st input field is enable and 2nd input field disable and vicecersa ?&lt;/P&gt;&lt;P&gt;ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if r1= 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name   = 'field2'.&lt;/P&gt;&lt;P&gt;       screen-input    =  '0'.&lt;/P&gt;&lt;P&gt;       screen-output  = '0'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;     modfiy screen.&lt;/P&gt;&lt;P&gt; else.&lt;/P&gt;&lt;P&gt;   loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name   = 'field1'.&lt;/P&gt;&lt;P&gt;       screen-input    =  '0'.&lt;/P&gt;&lt;P&gt;       screen-output  = '0'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;     modfiy screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this code write on PROCESS BEFORE OUTPUT side.&lt;/P&gt;&lt;P&gt;Hope this is helpful for u..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vshal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: vshal13feb on Oct 11, 2011 3:31 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Oct 2011 13:31:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-10-11T13:31:12Z</dc:date>
    <item>
      <title>Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283892#M1634102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have designed selection screen with two input fields and two radio buttons.&lt;/P&gt;&lt;P&gt;if i select one radio button the respective input field is only able take input and &lt;/P&gt;&lt;P&gt;the second input field should be disable mode or invisible. in the same way if i&lt;/P&gt;&lt;P&gt;select second radio button.. the respective input field only able take input and the rest &lt;/P&gt;&lt;P&gt;should be in disable mode.&lt;/P&gt;&lt;P&gt;i have written some code... for second radiobutton  it is not working fine(respective input field in disable mode)&lt;/P&gt;&lt;P&gt;please see the below code and give me your suggesitons..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : p_date  FOR payr-zaldt NO-EXTENSION OBLIGATORY  MODIF ID C.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_budat FOR bkpf-budat NO-EXTENSION  OBLIGATORY MODIF ID R .&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;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;PARAMETERS : rb_chek RADIOBUTTON GROUP g1 DEFAULT 'X' MODIF ID CH,&lt;/P&gt;&lt;P&gt;             rb_rtgs RADIOBUTTON GROUP g1 MODIF ID RT.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  s_budat-high   = sy-datum - 1.&lt;/P&gt;&lt;P&gt;  APPEND s_budat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  p_date-high    = sy-datum - 1.&lt;/P&gt;&lt;P&gt;  APPEND p_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  IF rb_chek = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1    = 'R'.&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;   ELSEIF RB_RTGS = 'X'.&lt;/P&gt;&lt;P&gt;     LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        screen-group1 = 'C'.&lt;/P&gt;&lt;P&gt;        SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&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;Thanks &amp;amp; Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 12:49:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283892#M1634102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-11T12:49:15Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283893#M1634103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Set User Command for the radiobuttons. Or else AT SELECTION-SCREEN OUTPUT will not get triggered when you click the radio button.&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;SELECTION-SCREEN SKIP.&lt;/P&gt;&lt;P&gt;PARAMETERS : rb_chek RADIOBUTTON GROUP g1 DEFAULT 'X' MODIF ID CH USER-COMMAND 'UC1',&lt;/P&gt;&lt;P&gt;rb_rtgs RADIOBUTTON GROUP g1 MODIF ID RT.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 12:56:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283893#M1634103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-11T12:56:55Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283894#M1634104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I PUT USER COMMAND BUT I AM GETTING SAME OUTPUT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 13:14:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283894#M1634104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-11T13:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283895#M1634105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anurag , &lt;/P&gt;&lt;P&gt;  I have modified your code and it works , please see the code below .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECT-OPTIONS : p_date FOR bkpf-budat NO-EXTENSION MODIF ID c.
SELECT-OPTIONS : s_budat FOR bkpf-budat NO-EXTENSION  MODIF ID r .
SELECTION-SCREEN END OF BLOCK b1.

SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
SELECTION-SCREEN SKIP.
PARAMETERS : rb_chek RADIOBUTTON GROUP g1 DEFAULT 'X' MODIF ID ch USER-COMMAND AR,
rb_rtgs RADIOBUTTON GROUP g1 MODIF ID rt.
SELECTION-SCREEN END OF BLOCK b2.

INITIALIZATION.
  s_budat-high = sy-datum - 1.
  APPEND s_budat.

  p_date-high = sy-datum - 1.
  APPEND p_date.

AT SELECTION-SCREEN OUTPUT.
  LOOP AT SCREEN .
    IF rb_rtgs = 'X'.
     IF screen-group1 = 'R'.
       screen-input = 1 .
     ELSEIF screen-group1 = 'C'.
       screen-input = 0 .
     endif   .
     MODIFY SCREEN.
    ELSEIF  rb_chek = 'X'.
     IF screen-group1 = 'C'.
       screen-input = 1 .
     ELSEIF screen-group1 = 'R'.
       screen-input = 0 .
     endif   .
     MODIFY SCREEN.
    ENDIF.


  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 13:29:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283895#M1634105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-11T13:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283896#M1634106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hii Anurag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u r question is if 1st radio button select taht time 1st input field is enable and 2nd input field disable and vicecersa ?&lt;/P&gt;&lt;P&gt;ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if r1= 'X'.&lt;/P&gt;&lt;P&gt;    loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name   = 'field2'.&lt;/P&gt;&lt;P&gt;       screen-input    =  '0'.&lt;/P&gt;&lt;P&gt;       screen-output  = '0'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;     modfiy screen.&lt;/P&gt;&lt;P&gt; else.&lt;/P&gt;&lt;P&gt;   loop at screen.&lt;/P&gt;&lt;P&gt;    if screen-name   = 'field1'.&lt;/P&gt;&lt;P&gt;       screen-input    =  '0'.&lt;/P&gt;&lt;P&gt;       screen-output  = '0'.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;     modfiy screen.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this code write on PROCESS BEFORE OUTPUT side.&lt;/P&gt;&lt;P&gt;Hope this is helpful for u..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vshal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: vshal13feb on Oct 11, 2011 3:31 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 13:31:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283896#M1634106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-11T13:31:12Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283897#M1634107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In AT SELECTION-SCREEN OUTPUT. Loop the screen first and set the screen-input to 0 as posted by Arun.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 13:38:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283897#M1634107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-11T13:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283898#M1634108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have a look in this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_blogpost" href="https://community.sap.com/" __jive_macro_name="blogpost" modifiedtitle="true" __default_attr="54103"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Oct 2011 13:44:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283898#M1634108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-11T13:44:39Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283899#M1634109</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Arun,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your code might Work, But you have Removed the keyword 'OBLIGATORY' which was the problematic part without any mention of it :). SO, you change business requirement &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anurag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, you have mentioned both your fields OBLIGATORY but you want to FILL only 1 field based on your radio button condition. This is actually your problem because SAP checks LOW field of select-options when you mark it as OBLIG.. but you need to fill only 1 field, so other field will always give an error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, what you need to do is that DON'T MARK it as OBLIGATORY and make them mandatory based on coding as done below.&lt;/P&gt;&lt;P&gt;I try to change minimum within your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
SELECT-OPTIONS : p_date  FOR payr-zaldt NO-EXTENSION MODIF ID c.          "remove OBLIGATORY
SELECT-OPTIONS : s_budat FOR bkpf-budat NO-EXTENSION MODIF ID r .         "remove OBLIGATORY
SELECTION-SCREEN END OF BLOCK b1.

SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
SELECTION-SCREEN SKIP.
PARAMETERS : rb_chek RADIOBUTTON GROUP g1 DEFAULT 'X' MODIF ID CH USER-COMMAND u1,   "Add USER-COMM
             rb_rtgs RADIOBUTTON GROUP g1 MODIF ID RT.
SELECTION-SCREEN END OF BLOCK b2.

INITIALIZATION.
  s_budat-high = sy-datum - 1.
  APPEND s_budat.

  p_date-high = sy-datum - 1.
  APPEND p_date.

AT SELECTION-SCREEN OUTPUT.

  IF rb_chek = 'X'.
    LOOP AT SCREEN.
      IF screen-group1 = 'R'.
        screen-input = 0.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.

  ELSEIF rb_rtgs = 'X'.
    LOOP AT SCREEN.
     if screen-group1 = 'C'.            "U missed IF HERE :), added
      screen-input = 0.
      MODIFY SCREEN.
     endif.
    ENDLOOP.
  ENDIF.

"added below
START-OF-SELECTION.

 if rb_chek = 'X' and p_date[] is INITIAL.
   MESSAGE S208(00) with 'Date is mandatory' DISPLAY LIKE 'E'.
 elseif rb_rtgs = 'X' and s_budat[] is INITIAL.
   MESSAGE S208(00) with 'Date is mandatory' DISPLAY LIKE 'E'.
 endif.

 "also it is better to add 01.01.0001 in your LOW date fields rather that leaving it blank for clarity

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 03:51:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283899#M1634109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-12T03:51:59Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283900#M1634110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi anurag. radha&lt;/P&gt;&lt;P&gt;Try this way,&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
selection-screen begin of screen 100.
  SELECT-OPTIONS : p_date FOR payr-zaldt NO-EXTENSION OBLIGATORY MODIF ID C.
selection-screen end of screen 100.

selection-screen begin of screen 200.
SELECT-OPTIONS : s_budat FOR bkpf-budat NO-EXTENSION OBLIGATORY MODIF ID R .
selection-screen end of screen 200.

SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.
SELECTION-SCREEN SKIP.
PARAMETERS : rb_chek RADIOBUTTON GROUP g1 DEFAULT 'X' MODIF ID CH,
             rb_rtgs RADIOBUTTON GROUP g1 MODIF ID RT.
SELECTION-SCREEN END OF BLOCK b2.

if rb_chek = 'X'.

call selection-screen  100 starting at 10 10 ending at 100 10.
else.

call selection-screen  200 starting at 10 10 ending at 100 10.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;koolspy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 04:19:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283900#M1634110</guid>
      <dc:creator>koolspy_ultimate</dc:creator>
      <dc:date>2011-10-12T04:19:45Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283901#M1634111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to use 'screen-invisible' to maintain visibility,and you have to use this one in loop and endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;PavanKumar.G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 04:25:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283901#M1634111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-12T04:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283902#M1634112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you have to use 'screen-invisible' to maintain visibility,and you have to use this one in loop and endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;PavanKumar.G&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 04:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283902#M1634112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-12T04:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Selection Screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283903#M1634113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;My issue was resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you so much to all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Oct 2011 04:54:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen/m-p/8283903#M1634113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-12T04:54:09Z</dc:date>
    </item>
  </channel>
</rss>

