<?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 Class Number in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-number/m-p/1444026#M210989</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a Function Module to get the class number(CLASS) given the material number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if this can be done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Jun 2006 12:45:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-20T12:45:04Z</dc:date>
    <item>
      <title>Class Number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-number/m-p/1444026#M210989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a Function Module to get the class number(CLASS) given the material number. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please let me know if this can be done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Mahesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2006 12:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-number/m-p/1444026#M210989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-20T12:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Class Number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-number/m-p/1444027#M210990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check BAPI: BAPI_OBJCL_GETCLASSES &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pass Material number for object key, 'MARA' for import table, '001' for classtype and you see the associated classes to the Material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you can check the FuGr CLBPA for other related BAPIs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards, Murugesh AS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jun 2006 09:10:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-number/m-p/1444027#M210990</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-21T09:10:16Z</dc:date>
    </item>
    <item>
      <title>Re: Class Number</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-number/m-p/1444028#M210991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mahesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use BAPI :BAPI_OBJCL_GETCLASSES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See sample call for this FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_OBJCL_GETCLASSES'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    objectkey_imp         = 'TESTMATERIAL'&lt;/P&gt;&lt;P&gt;    objecttable_imp       = 'MARA'&lt;/P&gt;&lt;P&gt;    classtype_imp         = '001'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  READ_VALUATIONS       =&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;LI level="1" type="ul"&gt;&lt;P&gt;  LANGUAGE              = SY-LANGU&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    alloclist             = lt_alloclist&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ALLOCVALUESCHAR       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ALLOCVALUESCURR       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ALLOCVALUESNUM        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    return                = lt_return&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In above function call, after passing values as mentioned, you will get the class number in lt_alloclist&lt;/P&gt;&lt;P&gt;Also you can get success or error msg in return table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Akshay bhagwat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Pls reward points if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Jun 2006 09:53:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-number/m-p/1444028#M210991</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-21T09:53:49Z</dc:date>
    </item>
  </channel>
</rss>

