<?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: subscreen selection screen for function pool program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-selection-screen-for-function-pool-program/m-p/7778594#M1585206</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 guess u can try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your screen layout create 2 seperate fields - one for the high value and one for the low value. insert an icon beside the high value which will call the multiple selections popup screen on user command. use funtion module COMPLEX_SELECTIONS_DIALOG to achieve this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 16 Mar 2011 07:29:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-16T07:29:09Z</dc:date>
    <item>
      <title>subscreen selection screen for function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-selection-screen-for-function-pool-program/m-p/7778593#M1585205</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 have a requirement wherein i need to make the parameter field flexible( meaning can exclude, include values etc). Same function as select-options. The parameter was created in a dialog progmming.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem here is that i am using function pool. I have tried to use subscreen but it is only applicable on report program. Is anyone knows if this is possible. Or is there any way to make the field as select-option without using call subscreen? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 07:09:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-selection-screen-for-function-pool-program/m-p/7778593#M1585205</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T07:09:37Z</dc:date>
    </item>
    <item>
      <title>Re: subscreen selection screen for function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-selection-screen-for-function-pool-program/m-p/7778594#M1585206</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 guess u can try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your screen layout create 2 seperate fields - one for the high value and one for the low value. insert an icon beside the high value which will call the multiple selections popup screen on user command. use funtion module COMPLEX_SELECTIONS_DIALOG to achieve this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 07:29:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-selection-screen-for-function-pool-program/m-p/7778594#M1585206</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T07:29:09Z</dc:date>
    </item>
    <item>
      <title>Re: subscreen selection screen for function pool program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-selection-screen-for-function-pool-program/m-p/7778595#M1585207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;No need to create separate Fields ,only create as parameter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for your Reference check below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : lv_title             TYPE sy-title,&lt;/P&gt;&lt;P&gt;            ls_description TYPE rsfldesc,&lt;/P&gt;&lt;P&gt;            lt_selopt          TYPE STANDARD TABLE OF rsdsselopt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER : p_field TYPE ausp-atwrt .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lv_title = 'TEST'.&lt;/P&gt;&lt;P&gt;  ls_description-type    = 'C'.&lt;/P&gt;&lt;P&gt;  ls_description-length  = '30'.&lt;/P&gt;&lt;P&gt;  ls_description-olength = '30'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'COMPLEX_SELECTIONS_DIALOG'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      title                    = lv_title&lt;/P&gt;&lt;P&gt;      description       = ls_description&lt;/P&gt;&lt;P&gt;      help_field         = 'AUSP-ATWRT'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      range               = lt_selopt&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      no_range_tab      = 1&lt;/P&gt;&lt;P&gt;      cancelled         = 2&lt;/P&gt;&lt;P&gt;      internal_error    = 3&lt;/P&gt;&lt;P&gt;      invalid_fieldname = 4&lt;/P&gt;&lt;P&gt;      OTHERS            = 5.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 2.&lt;/P&gt;&lt;P&gt;    MESSAGE ID sy-msgid TYPE 'S' 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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 16 Mar 2011 09:44:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/subscreen-selection-screen-for-function-pool-program/m-p/7778595#M1585207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-16T09:44:36Z</dc:date>
    </item>
  </channel>
</rss>

