<?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 default  value for select options. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121941#M444884</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to default four values in select-options.&lt;/P&gt;&lt;P&gt;eg.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_lfart for likp-lfart, default zse, zin, znd, zps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 11 Apr 2007 15:07:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-11T15:07:08Z</dc:date>
    <item>
      <title>default  value for select options.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121941#M444884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi folks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to default four values in select-options.&lt;/P&gt;&lt;P&gt;eg.,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;S_lfart for likp-lfart, default zse, zin, znd, zps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;Rao&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 15:07:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121941#M444884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T15:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: default  value for select options.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121942#M444885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Fill the range in INITIALIZATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REFRESH S_LFART.
CLEAR S_LFART.
S_LFART-SIGN = 'I'.
S_LFART-OPTION = 'EQ'.
S_LFART-LOW = 'ZSE'.
APPEND S_LFART.
S_LFART-LOW = 'ZIN'.
APPEND S_LFART.
S_LFART-LOW = 'ZND'.
APPEND S_LFART.
S_LFART-LOW = 'ZPS'.
APPEND S_LFART.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Or you could put the value in a variant (CUS&amp;amp;XXX to insure transport and protection from users...) and affect it to transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 15:10:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121942#M444885</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2007-04-11T15:10:27Z</dc:date>
    </item>
    <item>
      <title>Re: default  value for select options.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121943#M444886</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;Please try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
INITIALIZATION.

S_LFART-SIGN = 'I'.
S_LFART-OPTION = 'EQ'.
S_LFART-LOW = 'ZSE'.
APPEND S_LFART.

S_LFART-SIGN = 'I'.
S_LFART-OPTION = 'EQ'.
S_LFART-LOW = 'ZIN'.
APPEND S_LFART.

S_LFART-SIGN = 'I'.
S_LFART-OPTION = 'EQ'.
S_LFART-LOW = 'ZND'.
APPEND S_LFART.

S_LFART-SIGN = 'I'.
S_LFART-OPTION = 'EQ'.
S_LFART-LOW = 'ZPS'.
APPEND S_LFART.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ferry Lianto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 15:11:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121943#M444886</guid>
      <dc:creator>ferry_lianto</dc:creator>
      <dc:date>2007-04-11T15:11:57Z</dc:date>
    </item>
    <item>
      <title>Re: default  value for select options.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121944#M444887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;s_lfart-low = 'zse'.&lt;/P&gt;&lt;P&gt;s_lfart-otion = 'EQ'.&lt;/P&gt;&lt;P&gt;s_lfart-sign= 'I'.&lt;/P&gt;&lt;P&gt;append s_lfart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_lfart-low = 'zin'.&lt;/P&gt;&lt;P&gt;s_lfart-otion = 'EQ'.&lt;/P&gt;&lt;P&gt;s_lfart-sign= 'I'.&lt;/P&gt;&lt;P&gt;append s_lfart.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;s_lfart-low = 'znd'.&lt;/P&gt;&lt;P&gt;s_lfart-otion = 'EQ'.&lt;/P&gt;&lt;P&gt;s_lfart-sign= 'I'.&lt;/P&gt;&lt;P&gt;append s_lfart.&lt;/P&gt;&lt;P&gt;s_lfart-low = 'zps'.&lt;/P&gt;&lt;P&gt;s_lfart-otion = 'EQ'.&lt;/P&gt;&lt;P&gt;s_lfart-sign= 'I'.&lt;/P&gt;&lt;P&gt;append s_lfart.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 15:12:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121944#M444887</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-04-11T15:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: default  value for select options.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121945#M444888</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;Go through the following syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS &amp;lt;sel&amp;gt; FOR &amp;lt;f&amp;gt;&lt;/P&gt;&lt;P&gt;               [DEFAULT &amp;lt;g&amp;gt; [to &amp;lt;h&amp;gt;] [OPTION &amp;lt;op&amp;gt;] SIGN &amp;lt;s&amp;gt;]&lt;/P&gt;&lt;P&gt;               [MEMORY ID &amp;lt;pid&amp;gt;]&lt;/P&gt;&lt;P&gt;               [LOWER CASE]&lt;/P&gt;&lt;P&gt;               [OBLIGATORY]&lt;/P&gt;&lt;P&gt;               [NO-DISPLAY]&lt;/P&gt;&lt;P&gt;               [MODIF ID &amp;lt;key&amp;gt;]&lt;/P&gt;&lt;P&gt;               [NO-EXTENSION]&lt;/P&gt;&lt;P&gt;               [NO INTERVALS]&lt;/P&gt;&lt;P&gt;               [NO DATABASE SELECTION].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declares a selection table &amp;lt;sel&amp;gt; for the field &amp;lt;f&amp;gt;. For &amp;lt;sel&amp;gt;, places input fields on the corresponding selection screen. The additions allow you to set a default value, accept input in lowercase, define a required field, suppress or modify the display on the selection screen, restrict the selection table to a line or a selection to a single field, or prevent input from being passed to a logical database&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;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Apr 2007 15:14:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/default-value-for-select-options/m-p/2121945#M444888</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-11T15:14:29Z</dc:date>
    </item>
  </channel>
</rss>

