<?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: Select-Options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571948#M587321</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont know how to meet you requirement in the proper way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I will tell you how to get such a selection screen in a crooked way... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you said code like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 2(10) text-00.&lt;/P&gt;&lt;P&gt;select-options : s_ven for lfa1-lifnr.&lt;/P&gt;&lt;P&gt;selection-screen comment 40(10) text-001.&lt;/P&gt;&lt;P&gt;select-options : s_cty for lfa1-lifnr.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the report just add &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen 1000.&lt;/P&gt;&lt;P&gt;double click that .Goto layout do the modifications save it and activate the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now come back to the screen and delete 'call screen 1000.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will help you get the req modifications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 03 Aug 2007 08:48:17 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-03T08:48:17Z</dc:date>
    <item>
      <title>Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571945#M587318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;how to maintain select-options side by side.following code is not working properly.&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 2(10) text-00.&lt;/P&gt;&lt;P&gt;select-options : s_ven for lfa1-lifnr.&lt;/P&gt;&lt;P&gt;selection-screen comment 40(10) text-001.&lt;/P&gt;&lt;P&gt;select-options : s_cty for lfa1-lifnr.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried with selection-screen position statement also .but i can't get the output.without selection-screen comment text statement in the above code , i get the output like this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;low limit     high limit              low limit            high limit     multiple selctionbutton&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now how to get the comment .i want the output like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;name low      high  multiple selection    city   low    high    multipleselection&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls send the corresponding code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 08:29:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571945#M587318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-03T08:29:25Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571946#M587319</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;u can use line option for this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example &lt;/P&gt;&lt;P&gt;A pushbutton, an input field, and an output field in a line in the standard selection screen for an executable program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN: BEGIN OF LINE, 
                  PUSHBUTTON 2(10) push USER-COMMAND fcode, 
                  POSITION 16. 
PARAMETERS para TYPE c LENGTH 20. 
SELECTION-SCREEN: COMMENT 40(40) text, 
                  END OF LINE. 

INITIALIZATION. 
  push = 'Push'. 
  text = '&amp;lt;--- Fill field, then push button!'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jogdand M B&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 08:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571946#M587319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-03T08:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571947#M587320</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;We cannot place 2 select-options in the Same line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;selection-screen : begin of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen : END of line.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;this is only for Parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 08:47:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571947#M587320</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-03T08:47:56Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571948#M587321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont know how to meet you requirement in the proper way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I will tell you how to get such a selection screen in a crooked way... &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you said code like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of line.&lt;/P&gt;&lt;P&gt;selection-screen comment 2(10) text-00.&lt;/P&gt;&lt;P&gt;select-options : s_ven for lfa1-lifnr.&lt;/P&gt;&lt;P&gt;selection-screen comment 40(10) text-001.&lt;/P&gt;&lt;P&gt;select-options : s_cty for lfa1-lifnr.&lt;/P&gt;&lt;P&gt;selection-screen end of line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now in the report just add &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call screen 1000.&lt;/P&gt;&lt;P&gt;double click that .Goto layout do the modifications save it and activate the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now come back to the screen and delete 'call screen 1000.'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will help you get the req modifications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 08:48:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571948#M587321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-03T08:48:17Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571949#M587322</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;Remove the comments and try giving SELECTION TEXTS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USe the menu option Goto-&amp;gt;Text Elements-&amp;gt;Selection Texts.&lt;/P&gt;&lt;P&gt;Maintain selection texts for your select options and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 08:49:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571949#M587322</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-08-03T08:49:13Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571950#M587323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think it's possible with selection-screen, cause the minimal column position of the icon for extended selection is less than the maximal value of the first (low) field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at this sample &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 1(1) text-001.
  SELECT-OPTIONS : s_ven FOR lfa1-name1.
  SELECTION-SCREEN END OF LINE.
  SELECTION-SCREEN BEGIN OF LINE.
  SELECTION-SCREEN COMMENT 47(1) text-002.
  SELECT-OPTIONS : s_cty FOR lfa1-ort01.
  SELECTION-SCREEN END OF LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;First character of s_cty-low is as the same column that the arrow icon. If I try to put 48 in place of 47, i got an error when generating dynpro 100 at activation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could create a dynpro and simulate the selection screen,but that many work for a porr result?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Aug 2007 08:56:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2571950#M587323</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-08-03T08:56:49Z</dc:date>
    </item>
  </channel>
</rss>

