<?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: create a select options with multiple selection in dialog programmin in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225462#M478178</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you help me for get tha value of parameter of selection option from dynpro?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Apr 2011 15:40:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-04-29T15:40:36Z</dc:date>
    <item>
      <title>create a select options with multiple selection in dialog programmin</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225458#M478174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have created a dialog window...I want a select option with multple selection.How can i do this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 10:12:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225458#M478174</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T10:12:11Z</dc:date>
    </item>
    <item>
      <title>Re: create a select options with multiple selection in dialog programmin</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225459#M478175</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;for dialog programming you can't design selection screen using select-options&lt;/P&gt;&lt;P&gt;only for report programs you can use it.&lt;/P&gt;&lt;P&gt;Instead you can use Ranges for the dialog programming .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 10:13:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225459#M478175</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T10:13:50Z</dc:date>
    </item>
    <item>
      <title>Re: create a select options with multiple selection in dialog programmin</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225460#M478176</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;well select options will be automatically placed on a generated selection screen.&lt;/P&gt;&lt;P&gt;No way to place them on y self designed Dynpro.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT you can do a new Dynpro (dialog window) and make at least 2 subscreen areas on it. In one of your subscren areas you can now call a selection screen as subscreen. this should fulfill your requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 May 2007 10:15:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225460#M478176</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-03T10:15:35Z</dc:date>
    </item>
    <item>
      <title>Re: create a select options with multiple selection in dialog programmin</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225461#M478177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Illinda and others members of SDN,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i got many threads stating that there is no way to create a select-option in dialog programing. But it is possible:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am giving a step by step indication to how to create a select-options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. create your selection screen model as subscreen by:&lt;/P&gt;&lt;P&gt;    SELECTION-SCREEN BEGIN OF SCREEN 2000 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;     PARAMETRS: P_MATNR LIKE MARA-MATNR.&lt;/P&gt;&lt;P&gt;     SELECT-OPTIONS: S_BISMAT FOR MARA-BISMAT.&lt;/P&gt;&lt;P&gt;   SELECTION-SCREEN END OF SCREEN 2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. create a screen ( example 100 ) in your module-pool dedicated for selection-screen. on this screen layout sketch a sub-screen name like subscree_2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. write this bit of code in PBO and PAI of the screen 100;&lt;/P&gt;&lt;P&gt;   CALL SUBSCREEN SUBSCREEN_2000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. include this code in PBO:&lt;/P&gt;&lt;P&gt;   INCLUDING SY-REPID '2000'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. write user_command of PAI, call screen which is going to executable after selection-screen. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. create a transcation for this dialog module pool with screen 100.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. execute this transaction and you can see it's behaving like cool with select-options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLEASE GIVE POINTS IF IT USEFULL;;;;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 11:06:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225461#M478177</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T11:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: create a select options with multiple selection in dialog programmin</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225462#M478178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you help me for get tha value of parameter of selection option from dynpro?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 15:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-select-options-with-multiple-selection-in-dialog-programmin/m-p/2225462#M478178</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-29T15:40:36Z</dc:date>
    </item>
  </channel>
</rss>

