<?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 Select options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167925#M996417</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; my requirement is that my selct options shd accept single input as well as multiple single inputs &lt;/P&gt;&lt;P&gt;it shd not have ranges, for which i have used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_route for zvmt_cg_mxvol-route no intervals obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;through no interval option the ranges go&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when we click on extension button that time the screen which appears  has 4 tabs i want to disable the 2nd , 3rd and 4th tab ... how can i do it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherwise is there any other way i can provide user with this type of select on the selection screen ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help will be app &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 Jul 2008 12:42:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-11T12:42:18Z</dc:date>
    <item>
      <title>Select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167925#M996417</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; my requirement is that my selct options shd accept single input as well as multiple single inputs &lt;/P&gt;&lt;P&gt;it shd not have ranges, for which i have used&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : S_route for zvmt_cg_mxvol-route no intervals obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;through no interval option the ranges go&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when we click on extension button that time the screen which appears  has 4 tabs i want to disable the 2nd , 3rd and 4th tab ... how can i do it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;otherwise is there any other way i can provide user with this type of select on the selection screen ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;help will be app &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 12:42:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167925#M996417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T12:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167926#M996418</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use FM :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT_OPTIONS_RESTRICT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Include type pool SSCR&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;type-pools sscr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Define the object to be passed to the RESTRICTION parameter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data restrict type sscr_restrict.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Auxiliary objects for filling RESTRICT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data opt_list type sscr_opt_list.&lt;/P&gt;&lt;P&gt;data ass      type sscr_ass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Define the selection screen objects&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;First block: 3 SELECT-OPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;selection-screen begin of block block_0 with frame title text-bl0.&lt;/P&gt;&lt;P&gt;select-options sel_0_0 for sy-tvar0.&lt;/P&gt;&lt;P&gt;select-options sel_0_1 for sy-tvar1.&lt;/P&gt;&lt;P&gt;select-options sel_0_2 for sy-tvar2.&lt;/P&gt;&lt;P&gt;select-options sel_0_3 for sy-tvar3.&lt;/P&gt;&lt;P&gt;selection-screen end   of block block_0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Second block: 2 SELECT-OPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;selection-screen begin of block block_1 with frame title text-bl1.&lt;/P&gt;&lt;P&gt;select-options sel_1_0 for sy-subrc.&lt;/P&gt;&lt;P&gt;select-options sel_1_1 for sy-repid.&lt;/P&gt;&lt;P&gt;selection-screen end   of block block_1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Define the option list&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ALL: All options allowed&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  move 'ALL'        to opt_list-name.&lt;/P&gt;&lt;P&gt;  move 'X' to: opt_list-options-bt,&lt;/P&gt;&lt;P&gt;               opt_list-options-cp,&lt;/P&gt;&lt;P&gt;               opt_list-options-eq,&lt;/P&gt;&lt;P&gt;               opt_list-options-ge,&lt;/P&gt;&lt;P&gt;               opt_list-options-gt,&lt;/P&gt;&lt;P&gt;               opt_list-options-le,&lt;/P&gt;&lt;P&gt;               opt_list-options-lt,&lt;/P&gt;&lt;P&gt;               opt_list-options-nb,&lt;/P&gt;&lt;P&gt;               opt_list-options-ne,&lt;/P&gt;&lt;P&gt;               opt_list-options-np.&lt;/P&gt;&lt;P&gt;  append opt_list to restrict-opt_list_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NOPATTERN: CP and NP not allowed&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear opt_list.&lt;/P&gt;&lt;P&gt;  move 'NOPATTERN'  to opt_list-name.&lt;/P&gt;&lt;P&gt;  move 'X' to: opt_list-options-bt,&lt;/P&gt;&lt;P&gt;               opt_list-options-eq,&lt;/P&gt;&lt;P&gt;               opt_list-options-ge,&lt;/P&gt;&lt;P&gt;               opt_list-options-gt,&lt;/P&gt;&lt;P&gt;               opt_list-options-le,&lt;/P&gt;&lt;P&gt;               opt_list-options-lt,&lt;/P&gt;&lt;P&gt;               opt_list-options-nb,&lt;/P&gt;&lt;P&gt;               opt_list-options-ne.&lt;/P&gt;&lt;P&gt;  append opt_list to restrict-opt_list_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;NOINTERVLS: BT and NB not allowed&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear opt_list.&lt;/P&gt;&lt;P&gt;  move 'NOINTERVLS' to opt_list-name.&lt;/P&gt;&lt;P&gt;  move 'X' to: opt_list-options-cp,&lt;/P&gt;&lt;P&gt;               opt_list-options-eq,&lt;/P&gt;&lt;P&gt;               opt_list-options-ge,&lt;/P&gt;&lt;P&gt;               opt_list-options-gt,&lt;/P&gt;&lt;P&gt;               opt_list-options-le,&lt;/P&gt;&lt;P&gt;               opt_list-options-lt,&lt;/P&gt;&lt;P&gt;               opt_list-options-ne,&lt;/P&gt;&lt;P&gt;               opt_list-options-np.&lt;/P&gt;&lt;P&gt;  append opt_list to restrict-opt_list_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EQ_AND_CP: only EQ and CP allowed&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear opt_list.&lt;/P&gt;&lt;P&gt;  move 'EQ_AND_CP'  to opt_list-name.&lt;/P&gt;&lt;P&gt;  move 'X' to: opt_list-options-cp,&lt;/P&gt;&lt;P&gt;               opt_list-options-eq.&lt;/P&gt;&lt;P&gt;  append opt_list to restrict-opt_list_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;JUST_EQ: Only EQ allowed&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear opt_list.&lt;/P&gt;&lt;P&gt;  move 'JUST_EQ' to opt_list-name.&lt;/P&gt;&lt;P&gt;  move 'X' to opt_list-options-eq.&lt;/P&gt;&lt;P&gt;  append opt_list to restrict-opt_list_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assign selection screen objects to option list and sign&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;KIND = 'A': applies to all SELECT-OPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  move: 'A'          to ass-kind,&lt;/P&gt;&lt;P&gt;        '*'          to ass-sg_main,&lt;/P&gt;&lt;P&gt;        'NOPATTERN'  to ass-op_main,&lt;/P&gt;&lt;P&gt;        'NOINTERVLS' to ass-op_addy.&lt;/P&gt;&lt;P&gt;  append ass to restrict-ass_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;KIND = 'B': applies to all SELECT-OPTIONS in block BLOCK_0,&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;            that is, SEL_0_0, SEL_0_1, SEL_0_2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear ass.&lt;/P&gt;&lt;P&gt;  move: 'B'          to ass-kind,&lt;/P&gt;&lt;P&gt;        'BLOCK_0'    to ass-name,&lt;/P&gt;&lt;P&gt;        'I'          to ass-sg_main,&lt;/P&gt;&lt;P&gt;        '*'          to ass-sg_addy,&lt;/P&gt;&lt;P&gt;        'NOINTERVLS' to ass-op_main.&lt;/P&gt;&lt;P&gt;  append ass to restrict-ass_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;KIND = 'S': applies to SELECT-OPTION SEL-0-2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear ass.&lt;/P&gt;&lt;P&gt;  move: 'S'          to ass-kind,&lt;/P&gt;&lt;P&gt;        'SEL_0_2'    to ass-name,&lt;/P&gt;&lt;P&gt;        'I'          to ass-sg_main,&lt;/P&gt;&lt;P&gt;        '*'          to ass-sg_addy,&lt;/P&gt;&lt;P&gt;        'EQ_AND_CP'  to ass-op_main,&lt;/P&gt;&lt;P&gt;        'ALL'        to ass-op_addy.&lt;/P&gt;&lt;P&gt;  append ass to restrict-ass_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;KIND = 'S': Applies to SELECT-OPTION SEL_0_3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  clear ass.&lt;/P&gt;&lt;P&gt;  move: 'S'        to ass-kind,&lt;/P&gt;&lt;P&gt;        'SEL_0_3'  to ass-name,&lt;/P&gt;&lt;P&gt;        'I'        to ass-sg_main,&lt;/P&gt;&lt;P&gt;        'N'        to ass-sg_addy,&lt;/P&gt;&lt;P&gt;        'JUST_EQ'  to ass-op_main.&lt;/P&gt;&lt;P&gt;  append ass to restrict-ass_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call function module&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'SELECT_OPTIONS_RESTRICT'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;             restriction                = restrict&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;          DB                          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;             too_late                   = 1&lt;/P&gt;&lt;P&gt;             repeated                   = 2&lt;/P&gt;&lt;P&gt;             not_during_submit          = 3&lt;/P&gt;&lt;P&gt;            db_call_after_report_call  = 4&lt;/P&gt;&lt;P&gt;            selopt_without_options     = 5&lt;/P&gt;&lt;P&gt;             selopt_without_signs       = 6&lt;/P&gt;&lt;P&gt;             invalid_sign               = 7&lt;/P&gt;&lt;P&gt;            report_call_after_db_error = 8&lt;/P&gt;&lt;P&gt;              empty_option_list          = 9&lt;/P&gt;&lt;P&gt;             invalid_kind               = 10&lt;/P&gt;&lt;P&gt;             repeated_kind_a            = 11&lt;/P&gt;&lt;P&gt;             others                     = 12.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Exception handling&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 12:47:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167926#M996418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T12:47:00Z</dc:date>
    </item>
    <item>
      <title>Re: Select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167927#M996419</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;tables : mARA.&lt;/P&gt;&lt;P&gt;select-options : p_matnr for  mara-matnr NO INTERVALS NO-EXTENSION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USE NO EXTENSION TOOO..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sravanthi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 12:48:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167927#M996419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T12:48:04Z</dc:date>
    </item>
    <item>
      <title>Re: Select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167928#M996420</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 goto &lt;STRONG&gt;FM - SELECT_OPTIONS_RESTRICT&lt;/STRONG&gt; and see how it is used in any of the programs. &lt;/P&gt;&lt;P&gt;simply giving no-intervals is not enough&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Kothand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 12:48:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167928#M996420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T12:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167929#M996421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use FM SELECT_OPTIONS_RESTRICT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Define the object to be passed to the RESTRICTION parameter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data wa_restrict type sscr_restrict.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Auxiliary objects for filling RESTRICT&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  data : wa_optlist type sscr_opt_list,&lt;/P&gt;&lt;P&gt;         wa_ass type sscr_ass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Restricting the  Parameter selection to only EQ .&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  wa_optlist-name = 'OBJECTKEY1'.&lt;/P&gt;&lt;P&gt;  wa_optlist-options-eq = c_flag .&lt;/P&gt;&lt;P&gt;  append wa_optlist to wa_restrict-opt_list_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_ass-kind = 'S' .&lt;/P&gt;&lt;P&gt;  wa_ass-name = 'S_NAME'.&lt;/P&gt;&lt;P&gt;  wa_ass-sg_main = 'I'.&lt;/P&gt;&lt;P&gt;  wa_ass-op_main = 'OBJECTKEY1'.&lt;/P&gt;&lt;P&gt;  append wa_ass to wa_restrict-ass_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'SELECT_OPTIONS_RESTRICT'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      restriction            = wa_restrict&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      too_late               = 1&lt;/P&gt;&lt;P&gt;      repeated               = 2&lt;/P&gt;&lt;P&gt;      selopt_without_options = 3&lt;/P&gt;&lt;P&gt;      selopt_without_signs   = 4&lt;/P&gt;&lt;P&gt;      invalid_sign           = 5&lt;/P&gt;&lt;P&gt;      empty_option_list      = 6&lt;/P&gt;&lt;P&gt;      invalid_kind           = 7&lt;/P&gt;&lt;P&gt;      repeated_kind_a        = 8&lt;/P&gt;&lt;P&gt;      others                 = 9.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Joy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 Jul 2008 12:51:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/4167929#M996421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-11T12:51:19Z</dc:date>
    </item>
  </channel>
</rss>

