<?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 and parameters in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285676#M785919</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually we use PARAMETERS for single value input and &lt;/P&gt;&lt;P&gt;SELECT-OPTIONS is used to give a range of input values for a single field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS implicitly consists of internal table with fields &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS&lt;/P&gt;&lt;P&gt;LOW&lt;/P&gt;&lt;P&gt;HIGH&lt;/P&gt;&lt;P&gt;SIGN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;      DATA: G_VBELN TYPE VBAK-VBELN. &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;      SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.&lt;/P&gt;&lt;P&gt;      PARAMETERS : P_VBELN LIKE VBAK-VBELN.&lt;/P&gt;&lt;P&gt;      SELECT-OPTIONS: S_VBELN FOR G_VBELN.&lt;/P&gt;&lt;P&gt;      SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   o/p: &lt;/P&gt;&lt;P&gt;          P_VBELN: _________________.&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;         S_VBELN:___________ TO  ____________.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;shashikanth naram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Jan 2008 05:30:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-18T05:30:52Z</dc:date>
    <item>
      <title>select-options and parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285674#M785917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;In How many ways we can define select-options and parameters.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 05:11:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285674#M785917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T05:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: select-options and parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285675#M785918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;PARAMETERS&lt;/STRONG&gt; for single fields &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;SELECT-OPTIONS&lt;/STRONG&gt; for complex selections &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link for defining Parameters and select options&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba68335c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba68335c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Maha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 05:13:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285675#M785918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T05:13:55Z</dc:date>
    </item>
    <item>
      <title>Re: select-options and parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285676#M785919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually we use PARAMETERS for single value input and &lt;/P&gt;&lt;P&gt;SELECT-OPTIONS is used to give a range of input values for a single field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS implicitly consists of internal table with fields &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPTIONS&lt;/P&gt;&lt;P&gt;LOW&lt;/P&gt;&lt;P&gt;HIGH&lt;/P&gt;&lt;P&gt;SIGN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;      DATA: G_VBELN TYPE VBAK-VBELN. &lt;/P&gt;&lt;P&gt;      &lt;/P&gt;&lt;P&gt;      SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME.&lt;/P&gt;&lt;P&gt;      PARAMETERS : P_VBELN LIKE VBAK-VBELN.&lt;/P&gt;&lt;P&gt;      SELECT-OPTIONS: S_VBELN FOR G_VBELN.&lt;/P&gt;&lt;P&gt;      SELECTION-SCREEN END OF BLOCK B1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   o/p: &lt;/P&gt;&lt;P&gt;          P_VBELN: _________________.&lt;/P&gt;&lt;P&gt;          &lt;/P&gt;&lt;P&gt;         S_VBELN:___________ TO  ____________.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;shashikanth naram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 05:30:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285676#M785919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T05:30:52Z</dc:date>
    </item>
    <item>
      <title>Re: select-options and parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285677#M785920</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 refer to the link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba66935c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dba66935c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Renjith Michael.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 06:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285677#M785920</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T06:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: select-options and parameters</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285678#M785921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi uday Kiran,&lt;/P&gt;&lt;P&gt;                   There is only one method to define &lt;STRONG&gt;SELECT-OPTIONS&lt;/STRONG&gt; but there is two methods are available to define &lt;STRONG&gt;PARAMETERS&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES:MARA&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: S_MATNR FOR MARA-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS:&lt;/P&gt;&lt;P&gt;TABLES:MARA&lt;/P&gt;&lt;P&gt;1.PARAMETES : S_MATNR TYPE MATNR.&lt;/P&gt;&lt;P&gt;2.SELECT-OPTIONS: S_MATNR FOR MARA-MATNR NO-EXTENSION NO INTERVALS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward points if helpful.&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt; Kiran Kumar.G.A&lt;/P&gt;&lt;P&gt;        &lt;EM&gt;Have a Nice Day..&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Jan 2008 08:55:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-options-and-parameters/m-p/3285678#M785921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-18T08:55:13Z</dc:date>
    </item>
  </channel>
</rss>

