<?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: Problem:Error on this function module &amp;quot;BAPI_CLASS_SELECT_OBJECTS&amp;quot; in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691491#M1102729</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sateesh,&lt;/P&gt;&lt;P&gt;Check with the Declaration part of the internal table which you are using in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dump might be coming due to type mismatch between the declaration of the parameter in the table and the value which you are passing to the table. As you are telling that it is not giving an Error for Char1 but it is giving an Error for Char3.&lt;/P&gt;&lt;P&gt;This will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Nov 2008 08:01:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-11-07T08:01:31Z</dc:date>
    <item>
      <title>Problem:Error on this function module "BAPI_CLASS_SELECT_OBJECTS"</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691490#M1102728</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;when i am using this function  module "BAPI_CLASS_SELECT_OBJECTS", &lt;/P&gt;&lt;P&gt;i am getting the following dump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;EM&gt;*The IN itab operator is used with internal tables which&lt;/EM&gt;*&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;&lt;EM&gt;have the following structure:&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;&lt;EM&gt;SIGN(1)   OPTION(2)   LOW LIKE db_field   HIGH LIKE db_field&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;&lt;EM&gt;The OPTION column should contain only one of the following values:&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     &lt;STRONG&gt;&lt;EM&gt;"EQ LE GE CP BT NE LT GT NP NB"&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;EM&gt;The value " " is not allowed here.&lt;/EM&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My requirement is:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to fetch the batches for some charteristics those have charaterristic values (which is passing from selection screen ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i am populating the table with characteristic name and value to the intenal table gi_sel_criteria to filter. But my issue is some characteristics are not giving dump and some characteristics giving dump when i populating this internal table  gi_sel_criteria .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am populating this table (gi_sel_criteria) more than 10 characteristics. if this intenal table(gi_sel_criteria) have  char1 and char1 it is not giving dump if i populate char3 it is giving dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if p1 is not initial.      &lt;/P&gt;&lt;P&gt;  gs_sel_criteria-name_char   = &amp;lt;characteristic name1&amp;gt;.&lt;/P&gt;&lt;P&gt;  gs_sel_criteria-char_value   =  p1.&lt;/P&gt;&lt;P&gt;  APPEND gs_sel_criteria TO gi_sel_criteria.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p2 is not initial.  &lt;/P&gt;&lt;P&gt;  gs_sel_criteria-name_char   = &amp;lt;characteristic name2&amp;gt;.&lt;/P&gt;&lt;P&gt;  gs_sel_criteria-char_value  = p2.  &lt;/P&gt;&lt;P&gt; APPEND gs_sel_criteria TO gi_sel_criteria.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*if p3 is not initial.  &lt;/P&gt;&lt;P&gt;*gs_sel_criteria-name_char   = &amp;lt;characteristic name3&amp;gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;gs_sel_criteria-char_value  = p3.  &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;APPEND gs_sel_criteria TO gi_sel_criteria.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_CLASS_SELECT_OBJECTS'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      classtype                  = gv_class_type&lt;/P&gt;&lt;P&gt;      classnum                   = gv_class_num&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    languiso                    = sy-langu&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    LANGUINT                   =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    keydate                     = sy-datum&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     maxhits                     =  999999                  "10000&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    I_STATUS_LOCKED            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    I_STATUS_INCOMPLETE        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;      return                     = gs_return1&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      selectioncriterions        = gi_sel_criteria&lt;/P&gt;&lt;P&gt;      selectedobjects            = gi_select_obj.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any charateristic values problem or some thing else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sateesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 07:44:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691490#M1102728</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T07:44:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problem:Error on this function module "BAPI_CLASS_SELECT_OBJECTS"</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691491#M1102729</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sateesh,&lt;/P&gt;&lt;P&gt;Check with the Declaration part of the internal table which you are using in your program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The dump might be coming due to type mismatch between the declaration of the parameter in the table and the value which you are passing to the table. As you are telling that it is not giving an Error for Char1 but it is giving an Error for Char3.&lt;/P&gt;&lt;P&gt;This will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Nov 2008 08:01:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691491#M1102729</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-07T08:01:31Z</dc:date>
    </item>
    <item>
      <title>Re: Problem:Error on this function module "BAPI_CLASS_SELECT_OBJECTS"</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691492#M1102730</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Checked  the Declaration part of the internal table which you are using in your program is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no mismatches between the declaration of the parameter in the table and the value which i passed to the table.still now i am getting dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sateesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2008 04:58:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691492#M1102730</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-12T04:58:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem:Error on this function module "BAPI_CLASS_SELECT_OBJECTS"</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691493#M1102731</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Checked the Declaration part of the internal table in my program is correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is no mismatches,between the declaration of the parameter in the table and the value which i passed to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;still now i am getting dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please help on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sateesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Nov 2008 05:00:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691493#M1102731</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-12T05:00:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem:Error on this function module "BAPI_CLASS_SELECT_OBJECTS"</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691494#M1102732</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi SATEESH,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please set the field VAL_RELATN of the line in the table gi_sel_criteria to 1 - and then try again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Roland&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Nov 2009 15:06:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-error-on-this-function-module-quot-bapi-class-select-objects-quot/m-p/4691494#M1102732</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-24T15:06:41Z</dc:date>
    </item>
  </channel>
</rss>

