<?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 abap-objects program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806790#M915625</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  I want to give select-options in abap-objects program. How to give that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                             Thanking You&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Mani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 May 2008 05:55:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-13T05:55:39Z</dc:date>
    <item>
      <title>Re : select-options in abap-objects program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806790#M915625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  I want to give select-options in abap-objects program. How to give that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                             Thanking You&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;Mani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 05:55:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806790#M915625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T05:55:39Z</dc:date>
    </item>
    <item>
      <title>Re: Re : select-options in abap-objects program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806791#M915626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you explain in more detail as what you want to do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 05:58:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806791#M915626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T05:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Re : select-options in abap-objects program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806792#M915627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;are you trying to know how to handle passing select options values to a class method....??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if yes, you can create an internal table of a structure with fields &lt;/P&gt;&lt;P&gt;SIGN          OPTION      LOW          HIGH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and pass the same in the method...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 09:53:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806792#M915627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T09:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: Re : select-options in abap-objects program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806793#M915628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a variable of type rseloption and assign it to a select-option field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then pass it to a  method ..Method atributes must also have a type rseloption.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options : so_bukrs&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: relseoption_bukrs type rseloption.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reseloption_bukrs[ ] = rseloption[ ]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;passs the rseloption as an export parameter to a method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this helps ..&lt;/P&gt;&lt;P&gt;Please reward points if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2008 11:06:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806793#M915628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-13T11:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Re : select-options in abap-objects program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806794#M915629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the transaction SE24, enter your class name, click modify.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the tab named "Types" you have to declare two types. By example, if you want to receive one select-options that in your program that uses this class is declared like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; " P_SAKNR FOR SKAT-SAKNR".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you've got to declare two types in the class:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a- TYPES:  begin of E_S_SAKNR,&lt;/P&gt;&lt;P&gt;                      sign(1),&lt;/P&gt;&lt;P&gt;                      option(2),&lt;/P&gt;&lt;P&gt;                      low(10),&lt;/P&gt;&lt;P&gt;                      high(10),&lt;/P&gt;&lt;P&gt;                  end of E_S_SAKNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;b - TYPES E_T_SAKNR type standard table of E_S_SAKNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so, in the class method that you want to receive P_SAKNR as importing parameter. You got to do this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method TEST importing ET_SAKNR type E_T_SAKNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now, in the implementation of this method you should be able to use ET_SAKNR as the same way as you usually use a parameter or a select-option. You could use it in a select with the operator IN by example..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 May 2008 13:34:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-select-options-in-abap-objects-program/m-p/3806794#M915629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-14T13:34:28Z</dc:date>
    </item>
  </channel>
</rss>

