<?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: Regarding Select-options in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-options/m-p/2612813#M599505</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT demo_sel_screen_select_options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA wa_carrid TYPE spfli-carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS airline FOR wa_carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT airline.&lt;/P&gt;&lt;P&gt;  WRITE: / 'SIGN:',   airline-sign,&lt;/P&gt;&lt;P&gt;           'OPTION:', airline-option,&lt;/P&gt;&lt;P&gt;           'LOW:',    airline-low,&lt;/P&gt;&lt;P&gt;           'HIGH:',   airline-high.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure of select options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOW Low value&lt;/P&gt;&lt;P&gt;HIGH High value&lt;/P&gt;&lt;P&gt;SIGN E = Excluding, I = Including&lt;/P&gt;&lt;P&gt;OPTION BT = Between EQ = Equal&lt;/P&gt;&lt;P&gt;data: l_sign(2) type c, &lt;/P&gt;&lt;P&gt;l_option(3) type c. &lt;/P&gt;&lt;P&gt;WRITE AT 3 &amp;#145;Printdoc:&amp;#146; INTENSIFIED ON. loop at s_prtdoc. if s_prtdoc-sign = &amp;#145;E&amp;#146;. l_sign = &amp;#145;&amp;lt;&amp;gt;&amp;#145;. else. l_sign = &amp;#145;=&amp;#146;. endif. if s_prtdoc-option = &amp;#145;EQ&amp;#146;. clear l_option. else. l_option = &amp;#145;to&amp;#146;. endif. write at 35 l_sign. write at 39 s_prtdoc-low. write at 55 l_option. write at 59 s_prtdoc-high. new-line. endloop. &lt;/P&gt;&lt;P&gt;REPORT:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Printdoc: = 800000000501 to 800000000501 &amp;lt;&amp;gt; 800000000502 = 800000000503&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 29 Jul 2007 14:23:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-29T14:23:16Z</dc:date>
    <item>
      <title>Regarding Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-options/m-p/2612812#M599504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select-options :s_kunnr for kna1-kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_kunnr-low = 1000.&lt;/P&gt;&lt;P&gt;the select options low value is 1000 and freeze the low value.mean's output mode onely.next high value is modified giving variable value.in select options how to freeze the only low value?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jul 2007 13:37:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-options/m-p/2612812#M599504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-29T13:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-options/m-p/2612813#M599505</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT demo_sel_screen_select_options.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA wa_carrid TYPE spfli-carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS airline FOR wa_carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT airline.&lt;/P&gt;&lt;P&gt;  WRITE: / 'SIGN:',   airline-sign,&lt;/P&gt;&lt;P&gt;           'OPTION:', airline-option,&lt;/P&gt;&lt;P&gt;           'LOW:',    airline-low,&lt;/P&gt;&lt;P&gt;           'HIGH:',   airline-high.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure of select options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOW Low value&lt;/P&gt;&lt;P&gt;HIGH High value&lt;/P&gt;&lt;P&gt;SIGN E = Excluding, I = Including&lt;/P&gt;&lt;P&gt;OPTION BT = Between EQ = Equal&lt;/P&gt;&lt;P&gt;data: l_sign(2) type c, &lt;/P&gt;&lt;P&gt;l_option(3) type c. &lt;/P&gt;&lt;P&gt;WRITE AT 3 &amp;#145;Printdoc:&amp;#146; INTENSIFIED ON. loop at s_prtdoc. if s_prtdoc-sign = &amp;#145;E&amp;#146;. l_sign = &amp;#145;&amp;lt;&amp;gt;&amp;#145;. else. l_sign = &amp;#145;=&amp;#146;. endif. if s_prtdoc-option = &amp;#145;EQ&amp;#146;. clear l_option. else. l_option = &amp;#145;to&amp;#146;. endif. write at 35 l_sign. write at 39 s_prtdoc-low. write at 55 l_option. write at 59 s_prtdoc-high. new-line. endloop. &lt;/P&gt;&lt;P&gt;REPORT:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Printdoc: = 800000000501 to 800000000501 &amp;lt;&amp;gt; 800000000502 = 800000000503&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 29 Jul 2007 14:23:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-options/m-p/2612813#M599505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-29T14:23:16Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-options/m-p/2612814#M599506</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;&lt;/P&gt;&lt;P&gt;You want to make the low of the select options as display only? if yes &lt;/P&gt;&lt;P&gt;Her you go with the code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : vbak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : wa LIKE mkpf.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_vbeln FOR vbak-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  s_vbeln-low = 1000.&lt;/P&gt;&lt;P&gt;  APPEND s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    IF screen-name = 'S_VBELN-LOW'.&lt;/P&gt;&lt;P&gt;      screen-input = 0.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN .&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Jul 2007 01:05:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-options/m-p/2612814#M599506</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-30T01:05:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Select-options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-options/m-p/2612815#M599507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRY this if above logic is not working&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_vbeln FOR vbak-vbeln MODIF ID SO1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_vbeln-low = 1000.&lt;/P&gt;&lt;P&gt;APPEND s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'SO1'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;MODIFY SCREEN .&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 30 Mar 2010 05:41:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-select-options/m-p/2612815#M599507</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-30T05:41:49Z</dc:date>
    </item>
  </channel>
</rss>

