<?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-option : variant in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172461#M754922</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;My program is background,&lt;/P&gt;&lt;P&gt;and to create a variant for a field in select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Dec 2007 07:29:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-21T07:29:37Z</dc:date>
    <item>
      <title>select-option : variant</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172455#M754916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;I have a select query like :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a b c d from db table into internal table &lt;/P&gt;&lt;P&gt;             where &lt;/P&gt;&lt;P&gt;                  zbranch in c0, c1, c2, c3...so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where c0, c1, c2, c3 are constants. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is : how to store these constants in select-option and to create a variant for that. &lt;/P&gt;&lt;P&gt;I can use constants however I would like to keep in select option by creating a variant for maintanance purpose so that I can change them whenever required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Aakash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 07:09:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172455#M754916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T07:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: select-option : variant</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172456#M754917</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;select option has facility to enter multiple values.&lt;/P&gt;&lt;P&gt;just click on the arrow on the right hand side and enter all the values u want into the window opened.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now press the save button it will save these values as variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;reward points if helpfull&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 07:14:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172456#M754917</guid>
      <dc:creator>Vijay</dc:creator>
      <dc:date>2007-12-21T07:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: select-option : variant</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172457#M754918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Try this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ranges: ra_branch for db table-zbranch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ra_branch-sign = 'I'.&lt;/P&gt;&lt;P&gt;ra_branch-option = 'EQ'.&lt;/P&gt;&lt;P&gt;ra_branch-low = 'c0'.&lt;/P&gt;&lt;P&gt;append ra_branch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ra_branch-low = 'c1'.&lt;/P&gt;&lt;P&gt;append ra_branch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ra_branch-low = 'c2'.&lt;/P&gt;&lt;P&gt;append ra_branch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a &lt;/P&gt;&lt;P&gt;          b &lt;/P&gt;&lt;P&gt;          c &lt;/P&gt;&lt;P&gt;          d from db table into internal table &lt;/P&gt;&lt;P&gt;           where zbranch in RA_BRANCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where c0, c1, c2, c3 are constants. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Selvapandian Arunachalam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 07:16:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172457#M754918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T07:16:25Z</dc:date>
    </item>
    <item>
      <title>Re: select-option : variant</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172458#M754919</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;You can create select-options for zbranch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables zbranch.&lt;/P&gt;&lt;P&gt;select-options s_branch for db-zbranch.&lt;/P&gt;&lt;P&gt;initialization.&lt;/P&gt;&lt;P&gt;s_branch-low = C0.&lt;/P&gt;&lt;P&gt;s_branch-sign = 'I'.&lt;/P&gt;&lt;P&gt;s_branch-option = 'EQ'.&lt;/P&gt;&lt;P&gt;append s_branch.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 07:19:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172458#M754919</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2007-12-21T07:19:26Z</dc:date>
    </item>
    <item>
      <title>Re: select-option : variant</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172459#M754920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Chandra&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;tables spfli.&lt;/P&gt;&lt;P&gt;select-options s_carrid for spfli-carrid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the selection screen give values and save it, it's asking for varient name give varient name and meaning and save it then your varient is available for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Note&lt;/STRONG&gt;: After Create varient if u again active your program your varient is deleted, create varient your program at final stage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz Reward,&lt;/P&gt;&lt;P&gt;Mahi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 07:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172459#M754920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T07:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: select-option : variant</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172460#M754921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;U can create the variant as similar to other variants.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While Executing Goto The Field for which u want the Variant.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click the Button ( Multiple Selection Button) that is next to the second field. Here It prompts to enter values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enter Ur Values one by one in each line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click Run.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now Click Save button on the Toolbar which asks to save the variant. Now give name and description for the Variant and save.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Awrd Points If Useful.*&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Bhupal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 07:21:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172460#M754921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T07:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: select-option : variant</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172461#M754922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;My program is background,&lt;/P&gt;&lt;P&gt;and to create a variant for a field in select query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Aakash.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Dec 2007 07:29:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-option-variant/m-p/3172461#M754922</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-21T07:29:37Z</dc:date>
    </item>
  </channel>
</rss>

