<?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: Need help with select options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645676#M1444109</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;I dont want to read based on select options .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And more over I dont need any select query .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to read the select option values dynamically .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 16 Feb 2010 10:54:07 GMT</pubDate>
    <dc:creator>kamesh_g</dc:creator>
    <dc:date>2010-02-16T10:54:07Z</dc:date>
    <item>
      <title>Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645673#M1444106</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;My requirement is particular . And i have searched in forums I did not proper answer .So I am posting my thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one select option on selection screen  and I ma using DYNPRO_VALUE_READ fm to read selection screen value but Limitation with this FM is reading only one  value of select option .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to read all records of select options  using FM  DYNPRO_VALUE_READ  or if other fm is there please let me know .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kamesh...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 09:50:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645673#M1444106</guid>
      <dc:creator>kamesh_g</dc:creator>
      <dc:date>2010-02-16T09:50:49Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645674#M1444107</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;You can read the values of the select-option by looping the select option variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : Begin of block b1.&lt;/P&gt;&lt;P&gt;select-option : s_matnr for mara-matnr.&lt;/P&gt;&lt;P&gt;selection-screen : End of block b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this you can read the values from the select-option s_matnr by&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at s_matnr.&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;The values of the select-option will be available in s_manr-low and s_matnr-high fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 10:00:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645674#M1444107</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T10:00:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645675#M1444108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can read the values of the select-option &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at s_optionr.&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;or if wnat for select quesy select * from dbtablw where field1 IN S_option..&lt;/P&gt;&lt;P&gt;or suppose want to read for low then s_option-low and if high then s_option-high.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 10:12:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645675#M1444108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T10:12:12Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645676#M1444109</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;I dont want to read based on select options .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And more over I dont need any select query .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to read the select option values dynamically .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 10:54:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645676#M1444109</guid>
      <dc:creator>kamesh_g</dc:creator>
      <dc:date>2010-02-16T10:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645677#M1444110</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&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4199563"&gt;&lt;/A&gt;]&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 11:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645677#M1444110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T11:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645678#M1444111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Kamesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this is because the FM: DYNP_VALUES_READ reads the data from the screen-fields only. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyways when i am trying to use DYNP_VALUES_READ on select-option, i am getting an exception &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt; (Did you use NO-INTERVAL addition with SELECT-OPTIONS)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please share your code ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 11:30:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645678#M1444111</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-02-16T11:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645679#M1444112</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CLEAR   lt_dynpfields.&lt;/P&gt;&lt;P&gt;  REFRESH lt_dynpfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lt_dynpfields-fieldname  = 'S_RES-LOW'.&lt;/P&gt;&lt;P&gt;  APPEND lt_dynpfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname     = sy-cprog&lt;/P&gt;&lt;P&gt;      dynumb     = sy-dynnr&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields = lt_dynpfields&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      OTHERS     = 0.  "EC&lt;/P&gt;&lt;P&gt;  CLEAR fc_fvalue.&lt;/P&gt;&lt;P&gt;  READ TABLE lt_dynpfields INDEX 1.&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc = 0.&lt;/P&gt;&lt;P&gt;  fc_fvalue = lt_dynpfields-fieldvalue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: KAMESH G on Feb 16, 2010 12:46 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 11:46:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645679#M1444112</guid>
      <dc:creator>kamesh_g</dc:creator>
      <dc:date>2010-02-16T11:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645680#M1444113</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;You can loop at select option and can access its field value just like an internal table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May I know why are you using FM for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 11:57:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645680#M1444113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-16T11:57:39Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645681#M1444114</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 am using this FM to capture the value what ever I have on selection scree. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And one more thing I have to use this Fm  as per requirement .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So please give idea how can i read  select option values at a time .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because depending on that I need to F4 help of other field on sel.screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And if you can look at this FM  you  will get idea of this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Feb 2010 13:38:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645681#M1444114</guid>
      <dc:creator>kamesh_g</dc:creator>
      <dc:date>2010-02-16T13:38:05Z</dc:date>
    </item>
    <item>
      <title>Re: Need help with select options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645682#M1444115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use FM rs_refresh_ from _selectoptions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: poornima pendyala on Apr 4, 2010 7:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 04 Apr 2010 13:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-help-with-select-options/m-p/6645682#M1444115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-04T13:49:39Z</dc:date>
    </item>
  </channel>
</rss>

