<?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 Select-option in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655312#M290868</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to use Conversion_Exit for the Select-option input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg :I am using Select-option, in which i'll have to use CONVERSION_EXIT_ALPHA_INPUT before select query.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Nov 2006 10:33:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-20T10:33:01Z</dc:date>
    <item>
      <title>Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655312#M290868</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to use Conversion_Exit for the Select-option input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg :I am using Select-option, in which i'll have to use CONVERSION_EXIT_ALPHA_INPUT before select query.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 10:33:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655312#M290868</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-20T10:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655313#M290869</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;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;            EXPORTING&lt;/P&gt;&lt;P&gt;              input  = s_option-&amp;lt;b&amp;gt;low&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;            IMPORTING&lt;/P&gt;&lt;P&gt;              output =  s_option-&amp;lt;b&amp;gt;low.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;similary u can put &amp;lt;b&amp;gt;high&amp;lt;/b&amp;gt; there&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Anver&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 10:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655313#M290869</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-11-20T10:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655314#M290870</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;One approach is to loop over the range's internal table and call the conversion exit for the LOW and HIGH fields before you execute your SELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 10:40:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655314#M290870</guid>
      <dc:creator>michael-john_turner</dc:creator>
      <dc:date>2006-11-20T10:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655315#M290871</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;Loop at S_FILED  " Selection Filed&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;input = S_FILED-LOW&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;output = S_FILED-LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;input = S_FILED-HIGH&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;output = S_FILED-HIGH.&lt;/P&gt;&lt;P&gt;Modify S_FILED index sy-TABIX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 10:42:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655315#M290871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-20T10:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655316#M290872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Raga,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like some fields you need not to give conversion at all, in the program they work as conversion values only.&lt;/P&gt;&lt;P&gt;eg :   s_matnr   FOR mara-matnr.                 " Material number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Anu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 10:49:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655316#M290872</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-20T10:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655317#M290873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi RagaRam,&lt;/P&gt;&lt;P&gt;  You can either use it in AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : v_vbeln like vbrk-vbeln.
 
     v_vbeln = '055'.

AT SELECTION-SCREEN OUTPUT.

CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
    EXPORTING
      input         = v_vbeln             "055
    IMPORTING
      OUTPUT        = v_vbeln             "0000000055 
            .
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Nov 2006 13:17:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655317#M290873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-20T13:17:36Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655318#M290874</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;Since SELECT OPTIONS deal with multiple entries, better way woudl be to:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : s_vbeln for w_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if s_vbeln-low is not initial.&lt;/P&gt;&lt;P&gt;call function 'CONVERSION_EXIT_ALPHA_INPUT'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if s_vbeln-low is not initial.&lt;/P&gt;&lt;P&gt;call function 'CONVERSION_EXIT_ALPHA_INPUT'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;modify s_vbeln.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Nov 2006 12:17:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655318#M290874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-25T12:17:07Z</dc:date>
    </item>
    <item>
      <title>Re: Select-option</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655319#M290875</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;try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&amp;lt;b&amp;gt;loop at s_option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;input = s_option-low&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;output = s_option-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;input = s_option-high&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;output = s_option-high.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;modify s_option..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&amp;lt;/b&amp;gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward pts if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Ajith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Nov 2006 07:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option/m-p/1655319#M290875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-27T07:28:05Z</dc:date>
    </item>
  </channel>
</rss>

