<?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: Creating a selection selection in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016886#M412241</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help me with that??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 Mar 2007 11:50:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-23T11:50:58Z</dc:date>
    <item>
      <title>Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016873#M412228</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;could anyone help me with the following...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im trying to create a selection screen which consists of 2 radio buttons of the same group and a text box. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to put the selection screen within a frame with a title.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The two radio buttons are labeled as All and Employee respectively. The textbox is used to enter the employee id. The label of the textbox is Employee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Employee radio button and the textbox must be displayed on the same line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 20:53:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016873#M412228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T20:53:16Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016874#M412229</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;Check this example..Hope this is what you want..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE v_text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_all RADIOBUTTON GROUP g1 USER-COMMAND usr.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(10) v_text3 FOR FIELD p_emp.&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: p_emp RADIOBUTTON GROUP g1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 3(10) v_text1 FOR FIELD p_emp.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 16(10) v_text2 FOR FIELD p_employ.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_employ(10).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  v_text = 'Details'.&lt;/P&gt;&lt;P&gt;  v_text1 = 'Employee'.&lt;/P&gt;&lt;P&gt;  v_text2 = 'Employee'.&lt;/P&gt;&lt;P&gt;  v_text3 = 'All'.&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;  IF p_all = '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-name = 'P_EMPLOY'.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&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;&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;Thanks&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 21:06:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016874#M412229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T21:06:24Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016875#M412230</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;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF LINE.
PARAMETERS: P_RAD1 RADIOBUTTON GROUP GRP1 DEFAULT 'X'.
SELECTION-SCREEN COMMENT 5(20) TEXT-001.
PARAMETERS: P_RAD2 RADIOBUTTON GROUP GRP1.
SELECTION-SCREEN COMMENT 30(20) TEXT-002.
SELECTION-SCREEN END OF LINE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 21:10:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016875#M412230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T21:10:37Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016876#M412231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Wow, thanks to both of you guys, that will certainly help, Ill get back to this thread once i test the code in SAP Frontend, I have lost my password and will have to wait till tomorrow to request a new one from our sys admin...but Ill reward you both anyway for helping me out ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Adam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2007 21:38:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016876#M412231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-12T21:38:51Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016877#M412232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This should be enuf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: P_radio1 RADIOBUTTON GROUP GRP1 DEFAULT 'X'.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 5(20) TEXT-XXX.(Enter u'r comment)&lt;/P&gt;&lt;P&gt;PARAMETERS: P_radio2 RADIOBUTTON GROUP GRP1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 30(20) TEXT-XXX.(Enter u'r comment).&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;&lt;/P&gt;&lt;P&gt;Hope this solves your problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PS : Please reward points if solution is helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2007 11:14:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016877#M412232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-16T11:14:21Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016878#M412233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK I have created the tables and joined them, now i just need to select records from them...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Im trying to user array for selection of records from the tables (joined) into the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     When ALL radio buttion is selected, all records from joined tables are displayed&lt;/P&gt;&lt;P&gt;     When EMPLOYEE radio button is selected, check whether the user has entered              values in the Employee text box&lt;/P&gt;&lt;P&gt;     If the text box is unfilled, the information message needs to be displayed requesting the user to enter values in the textbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i accomplish this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Adam Pholo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2007 14:44:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016878#M412233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-21T14:44:27Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016879#M412234</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Some modifications (enhancements) have been made to the program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2007 14:53:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016879#M412234</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-21T14:53:09Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016880#M412235</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help with me this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Mar 2007 23:18:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016880#M412235</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-21T23:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016881#M412236</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Add this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES: sscrfields.

AT SELECTION-SCREEN.
  IF sscrfields-ucomm= 'ONLI'.
    IF p_emp = 'X'.
      IF p_pernr IS INITIAL.
        CLEAR sscrfields-ucomm.
        MESSAGE i000 WITH 'Please Enter Employee Number'.
      ENDIF.
    ENDIF.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 03:16:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016881#M412236</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T03:16:02Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016882#M412237</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your feedback..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sscrfields table, is it an ABAP internal table or what...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;by the way...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to display the list within a looping structure...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a primary key which is emp_id, if its content changes, I want to display employee id, and on a new line at position 12 and length 50 display first name and last name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The remaining data I want to display at line 13...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 06:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016882#M412237</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T06:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016883#M412238</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error message that i get is "Relational operation ONLI not supported", how do i solve this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 16:31:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016883#M412238</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T16:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016884#M412239</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Adam!&lt;/P&gt;&lt;P&gt;I could identify three questions in your above two replies. I will answer them one after the other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The message you are getting is due to the mistake you are making in the ABAP editor. you have not given a space after the words - "IF sscrfields-ucomm" , as indicated in the code given by Srinivas. So, just modify that line as: &lt;/P&gt;&lt;P&gt;IF sscrfields-ucomm = 'ONLI'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.  'sscrfields' is a pre-defined system table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. The third part of your question is not so clear to me. Do you mean to ask that you want to display the contents of an internal table you have obtained in your program? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Feel free to ask any queries...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Allot points, if my answers have helped you&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Mar 2007 17:41:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016884#M412239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-22T17:41:25Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016885#M412240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi...thanks for clarity on 'ONLI'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as for the third question, yes i want to display the list of an internal table...Say i have already created the list and its primary key is emp_id, when i change the contents of the primary key field (which is emp_id, entering a new id),I want to display employee id, and on a new line at position 12 and length 50 display first name and last name. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is clear enough...?!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 00:58:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016885#M412240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T00:58:49Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016886#M412241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can anyone help me with that??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 11:50:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016886#M412241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T11:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016887#M412242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to do something like this. Check the help on the key words used here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SORT itab BY employeenumber.
LOOP AT itab.
  AT NEW employeenumber.
    WRITE:/ itab-employeenumber, itab-employeename.
  ENDAT.
  WRITE:/ itab-field1..... all other fields.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 15:38:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016887#M412242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T15:38:11Z</dc:date>
    </item>
    <item>
      <title>Re: Creating a selection selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016888#M412243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your help guys, i appreciate it more than any words could say&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have rewarded point btw...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Mar 2007 19:01:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/creating-a-selection-selection/m-p/2016888#M412243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-23T19:01:20Z</dc:date>
    </item>
  </channel>
</rss>

