<?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 values range in a dynpro in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/values-range-in-a-dynpro/m-p/7576658#M1565941</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 need a field to get a range of values for MATKL field y  a DYNPRO, as SELECT-OPTIONS...NO INTERVALS does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i actually use help H_T023 for MATKL field in the DYNPRO, but it just let me choose one item&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´ve create my own help and now appears "SELECT-OPTIONS" option, but it just let me select a range of values to pick one of them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do i need to get a range of values .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks on advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Jan 2011 20:58:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-01-21T20:58:18Z</dc:date>
    <item>
      <title>values range in a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/values-range-in-a-dynpro/m-p/7576658#M1565941</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 need a field to get a range of values for MATKL field y  a DYNPRO, as SELECT-OPTIONS...NO INTERVALS does.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i actually use help H_T023 for MATKL field in the DYNPRO, but it just let me choose one item&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I´ve create my own help and now appears "SELECT-OPTIONS" option, but it just let me select a range of values to pick one of them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do i need to get a range of values .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks on advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jan 2011 20:58:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/values-range-in-a-dynpro/m-p/7576658#M1565941</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-21T20:58:18Z</dc:date>
    </item>
    <item>
      <title>Re: values range in a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/values-range-in-a-dynpro/m-p/7576659#M1565942</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to pick multiple values from a help list, you can either use POV and function F4IF_INT_TABLE_VALUE_REQUEST with MULTIPLE_CHOICE turned on or you can use a search help exit and set the value of CALLCONTROL-MULTISEL at PRESEL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Jan 2011 00:01:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/values-range-in-a-dynpro/m-p/7576659#M1565942</guid>
      <dc:creator>brad_bohn</dc:creator>
      <dc:date>2011-01-22T00:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: values range in a dynpro</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/values-range-in-a-dynpro/m-p/7576660#M1565943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your screen, define a subscreen area. Then, in the TOP include/global data area, define the select-options&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF SCREEN dynnr AS SUBSCREEN .
SELECT-OPTIONS S_MATKL FOR MARA-MATKL.
SELECTION-SCREEN END OF SCREEN dynnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, in PBO of your base screen, you need&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL SUBSCREEN sub_area INCLUDING prog dynnr.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in PAI&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL SUBSCREEN sub_area.&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;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 22 Jan 2011 13:30:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/values-range-in-a-dynpro/m-p/7576660#M1565943</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-01-22T13:30:08Z</dc:date>
    </item>
  </channel>
</rss>

