<?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: material Classification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963517#M67984</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use LSMW, Object 0130, Method 0002 and Program name RCCLBI03. Read the documentation of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 23 Aug 2005 17:24:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-08-23T17:24:21Z</dc:date>
    <item>
      <title>material Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963513#M67980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  what is the best way to create material with  classification view tab. i dont want to use BDC to create Classification view. is there any standard FM avaiable to create Material classification view.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Aman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2005 15:03:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963513#M67980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-23T15:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: material Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963514#M67981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think BAPI_OBJCL_CREATE_KEY will do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;John.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2005 15:08:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963514#M67981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-23T15:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: material Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963515#M67982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;BAPI_OBJCL_GET_KEY_OF_OBJECT to get (or create) the object key for the material, and then BAPI_OBJCL_CREATE_KEY to create the classification (read the BAPI documentation to see if it suits your purpose). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2005 16:16:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963515#M67982</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-23T16:16:09Z</dc:date>
    </item>
    <item>
      <title>Re: material Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963516#M67983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use BAPI_OBJCL_CREATE which will create the classification view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_OBJCL_CREATE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    objectkeynew            = &amp;lt;material&amp;gt;&lt;/P&gt;&lt;P&gt;    objecttablenew          = &amp;lt;table&amp;gt;&lt;/P&gt;&lt;P&gt;    classnumnew             = &amp;lt;class name&amp;gt;&lt;/P&gt;&lt;P&gt;    classtypenew            = &amp;lt;class type&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STATUS                  = '1'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STANDARDCLASS           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CHANGENUMBER            =&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;  NO_DEFAULT_VALUES       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLASSIF_STATUS          = &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;   ALLOCVALUESNUM          = &amp;lt;numeric_char&amp;gt;&lt;/P&gt;&lt;P&gt;   ALLOCVALUESCHAR         = &amp;lt;character_char&amp;gt;&lt;/P&gt;&lt;P&gt;   ALLOCVALUESCURR         = &amp;lt;currency_char&amp;gt;&lt;/P&gt;&lt;P&gt;    return                  = return   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fill the numeric, character, and currency type characteristic details in appropiate table and pass it the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Kathir~&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2005 16:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963516#M67983</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-23T16:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: material Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963517#M67984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use LSMW, Object 0130, Method 0002 and Program name RCCLBI03. Read the documentation of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 23 Aug 2005 17:24:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963517#M67984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-23T17:24:21Z</dc:date>
    </item>
    <item>
      <title>Re: material Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963518#M67985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If resolved, please reward and close.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2005 19:38:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963518#M67985</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-25T19:38:26Z</dc:date>
    </item>
    <item>
      <title>Re: material Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963519#M67986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;b&amp;gt;It is discouraging to see that the posts are not being closed. Please close the post if answered, and if not please let the forum know. It doesn't have to be left open like this.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your attention,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 27 Aug 2005 15:17:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963519#M67986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-27T15:17:30Z</dc:date>
    </item>
    <item>
      <title>Re: material Classification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963520#M67987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Srinivas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using the same LSMW. My question is related to picking the values from legacy system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using AUSP and INOB table to pick up the values of the characteristics. But these tables have exception. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For characteristics of type Date, I am getting value as blank (Field ATWRT) in table AUSP in the legacy system. Can you please let me know, how to get the table which contains values for characteristics of type Date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using class and characteristics for DMS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Santanu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 03:51:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/material-classification/m-p/963520#M67987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-24T03:51:20Z</dc:date>
    </item>
  </channel>
</rss>

