<?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/2605056#M596934</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 have declared as below.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : PO_DATE FOR AUFK-ERDAT,&lt;/P&gt;&lt;P&gt;PO_TYPE FOR AUFK-AUART,&lt;/P&gt;&lt;P&gt;PO_CO_M FOR RESB-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To Get the Description for PO_DATE as PRODUCTION ORDER DATE &lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;1. Activate your program.&lt;/P&gt;&lt;P&gt;2. In the Source code of your program Select the menu path &lt;/P&gt;&lt;P&gt;     GOTO -&amp;gt;  TEXT ELEMENTS -&amp;gt; SELECTION TEXTS&lt;/P&gt;&lt;P&gt;   There it will show all the fields of ur selection Screen&lt;/P&gt;&lt;P&gt;   Enter the Descriptions you want.&lt;/P&gt;&lt;P&gt;3. Activate the Text elements and come back to Source code&lt;/P&gt;&lt;P&gt;4. Execute the program&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Aug 2007 06:38:37 GMT</pubDate>
    <dc:creator>varma_narayana</dc:creator>
    <dc:date>2007-08-07T06:38:37Z</dc:date>
    <item>
      <title>Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605050#M596928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the name of the standard SAP structure for SELECT-OPTIONS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;  Prasad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2007 03:27:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605050#M596928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-31T03:27:51Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605051#M596929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, SELECT-OPTIONS is a internal table with 4 fields,  SIGN, OPTION, LOW and HIGH.  SIGN and OPTION are always 1 and 2 characters,  LOW and HIGH take the type and length of the field that it references.  So really, there is not a "Standard" structure, because you would want the LOW and HIGH fields to have the same data type and length as the field that you are referencing. For example,  say you want a SELECT-OPTIONs for a date field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select-options: s_datum for sy-datum.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The LOW and HIGH would have the data type D with a length of 8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2007 03:31:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605051#M596929</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-31T03:31:29Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605052#M596930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As Rich says, the LOW &amp;amp; HIGH depend on the field you are have the select-option for... if you want to write something generic, you could try something like having an internal table like structure BBPF4B "BAPI Selection Options for Choosing Values via Search Help" as a way of passing parameters around, and adjust the LOW &amp;amp; HIGH when needed (e.g. you might need to apply conversion exits or move-corresponding into a suitable local range object before searching the database for matching values).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2007 03:39:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605052#M596930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-31T03:39:22Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605053#M596931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello kln_k,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The structure is DDSHSELOPT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hendy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2007 03:39:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605053#M596931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-31T03:39:48Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605054#M596932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am using select - option statement in dis way : - &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS  : PO_DATE FOR AUFK-ERDAT,&lt;/P&gt;&lt;P&gt;                                PO_TYPE FOR AUFK-AUART,&lt;/P&gt;&lt;P&gt;                                PO_CO_M FOR RESB-MATNR.&lt;/P&gt;&lt;P&gt; but i want to write po_date as PRODUCTION ORDER DATE , as i know d default value is 8 characters,i want to know the solution problem.plz help me its urgent.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 05:49:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605054#M596932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-07T05:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605055#M596933</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi yakul.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(1)  Sample1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT demo_sel_screen_select_default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA wa_spfli TYPE spfli.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS airline FOR wa_spfli-carrid&lt;/P&gt;&lt;P&gt;                             DEFAULT 'AA'&lt;/P&gt;&lt;P&gt;                             TO 'LH'&lt;/P&gt;&lt;P&gt;                             OPTION  nb&lt;/P&gt;&lt;P&gt;                             SIGN  i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(2) Sample2 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : PO_DATE FOR AUFK-ERDAT,&lt;/P&gt;&lt;P&gt;                               PO_TYPE FOR AUFK-AUART,&lt;/P&gt;&lt;P&gt;                               PO_CO_M FOR RESB-MATNR.&lt;/P&gt;&lt;P&gt;&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;    PO_DATE-LOW = SY-DATUM.&lt;/P&gt;&lt;P&gt;    PO_DATE-OPTION = 'EQ'.&lt;/P&gt;&lt;P&gt;    PO_DATE-SIGN = 'I'.&lt;/P&gt;&lt;P&gt;    APPEND PO_DATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Hyejeong Baik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 06:25:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605055#M596933</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-07T06:25:44Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605056#M596934</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 have declared as below.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : PO_DATE FOR AUFK-ERDAT,&lt;/P&gt;&lt;P&gt;PO_TYPE FOR AUFK-AUART,&lt;/P&gt;&lt;P&gt;PO_CO_M FOR RESB-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To Get the Description for PO_DATE as PRODUCTION ORDER DATE &lt;/P&gt;&lt;P&gt;Steps:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;1. Activate your program.&lt;/P&gt;&lt;P&gt;2. In the Source code of your program Select the menu path &lt;/P&gt;&lt;P&gt;     GOTO -&amp;gt;  TEXT ELEMENTS -&amp;gt; SELECTION TEXTS&lt;/P&gt;&lt;P&gt;   There it will show all the fields of ur selection Screen&lt;/P&gt;&lt;P&gt;   Enter the Descriptions you want.&lt;/P&gt;&lt;P&gt;3. Activate the Text elements and come back to Source code&lt;/P&gt;&lt;P&gt;4. Execute the program&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 06:38:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605056#M596934</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-07T06:38:37Z</dc:date>
    </item>
    <item>
      <title>Re: Select-Options</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605057#M596935</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS A  LOT FOR UR HELP AND IT WORKS TOO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Aug 2007 06:52:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options/m-p/2605057#M596935</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-07T06:52:55Z</dc:date>
    </item>
  </channel>
</rss>

