<?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: I need a selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725867#M316470</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need this if i click on any selection screen other 2 fileds should be disable&lt;/P&gt;&lt;P&gt;is my que clear for u all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Nov 2006 11:27:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-16T11:27:39Z</dc:date>
    <item>
      <title>I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725856#M316459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need a selection screen if there r 3 selection screen in O/P screen &lt;/P&gt;&lt;P&gt;If i click on 1 selection other 2 should be disable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 16:12:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725856#M316459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T16:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725857#M316460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not clear. Can you rephrase your question?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 16:15:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725857#M316460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T16:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725858#M316461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i enter in 1 selection screen&lt;/P&gt;&lt;P&gt;othere 2 fields should be disable&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 16:24:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725858#M316461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T16:24:59Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725859#M316462</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;Do you want to have a radio button to click on that to disable some of the selection fields..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you have a tab strip in your selection screen..??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain your requirement in detail..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 16:28:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725859#M316462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T16:28:16Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725860#M316463</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swaroop,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out this code ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
************************************************************************
*              AT SELECTION SCREEN OUTPUT                              *
************************************************************************
AT SELECTION-SCREEN OUTPUT.
  IF p_deta = 'X' OR p_strt = 'X'.
    LOOP AT SCREEN.
      IF screen-group1 = 'ABC'.
        screen-input = '0'.
        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>Wed, 15 Nov 2006 17:11:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725860#M316463</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T17:11:59Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725861#M316464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi i think you are working on a Selection screen with radio button, check this one, works fine&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;&lt;/P&gt;&lt;P&gt;    IF SCREEN-NAME = 'POSNR' OR SCREEN-NAME = 'VBELN.&lt;/P&gt;&lt;P&gt;       &lt;/P&gt;&lt;P&gt;       IF RADIO = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 17:18:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725861#M316464</guid>
      <dc:creator>rahulkavuri</dc:creator>
      <dc:date>2006-11-15T17:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725862#M316465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try the below code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;example you have 3 parameters on the selection-screen p1, p2 and p3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  IF p1 is not initial.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'P2' or screen-name = 'P3'.&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;  ENDIF.&lt;/P&gt;&lt;P&gt;  IF p2 is not initial.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'P1' or screen-name = 'P3'.&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;  ENDIF.&lt;/P&gt;&lt;P&gt;  IF p3 is not initial.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'P1' or screen-name = 'P2'.&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;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 17:23:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725862#M316465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T17:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725863#M316466</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swaroop,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U have 3 options to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Option 1: By having 3 Radio Buttons for each field and by selecting corresponding radio Button the other fields were disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Option 2: By having 3 TabStrips for ecch field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Option 3: Disabling fields after entering value and PRESS ENTER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know ur option will suggest u code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any how for all u need to disable in EVENT: AT SELECTION-SCREEN OUTPUT.&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;Sanjeev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Nov 2006 17:32:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725863#M316466</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-15T17:32:21Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725864#M316467</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u plz send me the codeing for the 3 options&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 05:15:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725864#M316467</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T05:15:28Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725865#M316468</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Swaroop,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write like this, i hope your problem will solve&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: S_EBELN FOR EKKO-EBELN.MODIF ID S1.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MATNR TYPE MATNR MODIF ID S2,&lt;/P&gt;&lt;P&gt;                         P_WERKS TYPE WERKS_D MODIF ID S3.&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;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="4" type="ul"&gt;&lt;P&gt;BLOCK 2 ****&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&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 BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: R1 RADIOBUTTON GROUP G1 DEFAULT 'X' USER-COMMAND UG1,&lt;/P&gt;&lt;P&gt; R2 RADIOBUTTON GROUP G1  ,&lt;/P&gt;&lt;P&gt; R3 RADIOBUTTON GROUP G1  .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&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;&lt;/P&gt;&lt;P&gt;    IF R1 EQ 'X' .&lt;/P&gt;&lt;P&gt;        IF  SCREEN-GROUP1 EQ 'S2' AND  SCREEN-GROUP1 EQ 'S3'.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      SET CURSOR FIELD 'S_EBELN'.&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 R2 EQ 'X' &lt;/P&gt;&lt;P&gt;       IF SCREEN-GROUP1 EQ 'S1' AND  SCREEN-GROUP1 EQ 'S2'.&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      SET CURSOR FIELD 'P_MATNR'.&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 R3 EQ 'X'.&lt;/P&gt;&lt;P&gt;   IF SCREEN-GROUP1 EQ 'S1' AND SCREEN-GROUP1 EQ 'S3'  .&lt;/P&gt;&lt;P&gt;      SCREEN-INPUT = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      SET CURSOR FIELD 'P_MATNR'.&lt;/P&gt;&lt;P&gt;    ENDIF.&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;Thanks,&lt;/P&gt;&lt;P&gt;Murali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 05:34:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725865#M316468</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T05:34:18Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725866#M316469</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this Code.... I suppose this is exactly what u require... &lt;/P&gt;&lt;P&gt;Note : U need to press enter after populating any of the 3 parameters...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please tell me if it works and plz reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------" /&gt;&lt;P&gt;parameters : p1 , p2 , p3.&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;  if p1 is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'P2' or screen-name = 'P3'.&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;  else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if p2 is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;        IF screen-name = 'P1' or screen-name = 'P3'.&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;    else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      if p3 is not initial.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;          IF screen-name = 'P2' or screen-name = 'P1'.&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;P&gt;&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 05:55:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725866#M316469</guid>
      <dc:creator>former_member69765</dc:creator>
      <dc:date>2006-11-16T05:55:22Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725867#M316470</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I need this if i click on any selection screen other 2 fileds should be disable&lt;/P&gt;&lt;P&gt;is my que clear for u all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Nov 2006 11:27:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725867#M316470</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-16T11:27:39Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725868#M316471</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx u all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2006 06:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725868#M316471</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-17T06:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: I need a selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725869#M316472</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thx u all&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Nov 2006 06:03:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/i-need-a-selection-screen/m-p/1725869#M316472</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-17T06:03:47Z</dc:date>
    </item>
  </channel>
</rss>

