<?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: Function Module CLAF_CLASSIFICATION_OF_OBJECTS is thrrowing exception in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-claf-classification-of-objects-is-thrrowing-exception/m-p/1032066#M84059</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to uncomment the exceptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;   CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
      EXPORTING
        classtext          = ' '
        classtype          = '300'
        features           = ' '
        language           = sy-langu
        object             = matl
        objecttable        = 'MARA'
        key_date           = p_date
      TABLES
        t_class            = class_allocs
        t_objectdata       = obj_data
&amp;lt;b&amp;gt;      EXCEPTIONS
        no_classification  = 1
        no_classtypes      = 2
        invalid_class_type = 3
        OTHERS             = 4.
    IF sy-subrc = 0.&amp;lt;/b&amp;gt;

endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and handle them if you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Nov 2005 13:13:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-11-30T13:13:14Z</dc:date>
    <item>
      <title>Function Module CLAF_CLASSIFICATION_OF_OBJECTS is thrrowing exception</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-claf-classification-of-objects-is-thrrowing-exception/m-p/1032064#M84057</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 used this function in one of my program&lt;/P&gt;&lt;P&gt;CLAF_CLASSIFICATION_OF_OBJECTS&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------" /&gt;&lt;P&gt;but it is throwing "NO_CLASSIFICATION" Exception and breaks into a short dump&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;only if i give some plant in the selection screen which is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can any one help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2005 13:09:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-claf-classification-of-objects-is-thrrowing-exception/m-p/1032064#M84057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-30T13:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module CLAF_CLASSIFICATION_OF_OBJECTS is thrrowing exception</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-claf-classification-of-objects-is-thrrowing-exception/m-p/1032065#M84058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you want to prevent the dump, after the function module call check for sy-subrc &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc eq 1 .&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;its NO_CLASSIFICATION exception&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 'CLAF_CLASSIFICATION_OF_OBJECTS'&lt;/P&gt;&lt;P&gt;       ....&lt;/P&gt;&lt;P&gt;           exceptions&lt;/P&gt;&lt;P&gt;                 no_classification = 1&lt;/P&gt;&lt;P&gt;                 invalid_class_type = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make sure that the exceptions are not commented when you call the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2005 13:12:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-claf-classification-of-objects-is-thrrowing-exception/m-p/1032065#M84058</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-11-30T13:12:25Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module CLAF_CLASSIFICATION_OF_OBJECTS is thrrowing exception</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-claf-classification-of-objects-is-thrrowing-exception/m-p/1032066#M84059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try to uncomment the exceptions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;   CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS'
      EXPORTING
        classtext          = ' '
        classtype          = '300'
        features           = ' '
        language           = sy-langu
        object             = matl
        objecttable        = 'MARA'
        key_date           = p_date
      TABLES
        t_class            = class_allocs
        t_objectdata       = obj_data
&amp;lt;b&amp;gt;      EXCEPTIONS
        no_classification  = 1
        no_classtypes      = 2
        invalid_class_type = 3
        OTHERS             = 4.
    IF sy-subrc = 0.&amp;lt;/b&amp;gt;

endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and handle them if you can.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2005 13:13:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-claf-classification-of-objects-is-thrrowing-exception/m-p/1032066#M84059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-30T13:13:14Z</dc:date>
    </item>
    <item>
      <title>Re: Function Module CLAF_CLASSIFICATION_OF_OBJECTS is thrrowing exception</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-claf-classification-of-objects-is-thrrowing-exception/m-p/1032067#M84060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It means that there is no classification maintained for the object in that plant. Are you asking how to avoid dump or avoid the error itself? Avoiding dump is already covered by others here, and to avoid the error itself, you basically need to maintain the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this material classification at batch level or something else?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let us know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Nov 2005 17:55:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module-claf-classification-of-objects-is-thrrowing-exception/m-p/1032067#M84060</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-30T17:55:04Z</dc:date>
    </item>
  </channel>
</rss>

