<?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>Question Re: Material Classification - how to extract? in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512499#M1068488</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This one time I had to do it, we didn't have anything standard at hand... That's why we did the custom solution I mentioned before... And it worked perfect!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not familiar with any standard solution (Datasources, etc) for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best way for you to find out is to ask and understand with the Config guys how do they handle the Classifications in R/3 for your Company. Then you'll have a much better idea about what way to go... &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&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;Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jul 2007 20:33:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-06T20:33:16Z</dc:date>
    <item>
      <title>Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaq-p/2512496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement where I need to do extract data from "Classification View" in MM03 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think we need to use Material Classification datasources for that.&lt;/P&gt;&lt;P&gt;But I have no idea how to use this datasource - I think thats not deliverd - we need to config this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please explain how to extract classification data - What all steps do we need to do - any precautions?&lt;/P&gt;&lt;P&gt;Documents/links/steps would be appreciated and encouraged by points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 18:48:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaq-p/2512496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T18:48:21Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512497#M1068486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gauray,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to solve a similar requirement once... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Classification is maintained through a series of tables in R/3. The associations between them are kept in Table AUSP (Characteristic Values).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUSP-KLART (Class Type) = 001 - Materials &lt;/P&gt;&lt;P&gt;AUSP-OBJEK (Key of Object to be Classified) is the Key Value&lt;/P&gt;&lt;P&gt;AUSP-ATWRT (Characteristic Value) Is the value associated with the Object&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, for example, in AUSP,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;KLART = 001 (Materials)&lt;/P&gt;&lt;P&gt;OBJEK = 000021 (Material Number)&lt;/P&gt;&lt;P&gt;ATWRT = MECH (Characteristic Value)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get a better description of the Classification Category, we associated the Class with the appropiate entry in text table CABNT (Characteristic Descriptions). Here field CABNT-ATUE1 (First Line of Heading) provides a better description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, basically, we enhanced the 0MATERIAL extractor and added field ZMATCLASS and populated it with the select:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT ATUE1&lt;/P&gt;&lt;P&gt;FROM CABNT&lt;/P&gt;&lt;P&gt;INTO ZMATCLASS&lt;/P&gt;&lt;P&gt;WHERE CABNT-ATINN EQ AUSP-ATINN (Same Internal Characteristic)&lt;/P&gt;&lt;P&gt;AND AUSP-KLART EQ '001' (It's a Material)&lt;/P&gt;&lt;P&gt;AND AUSP-OBJECK EQ "XXXX" (Current Material Number)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not the actual code, of course, and maybe I'm missing some minor detail. Just using my memory here... &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt; But I least you get the idea... I hope.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&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;Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 19:47:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512497#M1068486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T19:47:04Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512498#M1068487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Luis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot for detailed info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I thought there were standard extractors available (e.g something like 1CL_OMAT...) with which we can extract the classification data..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am not sure where I can find the data which I need to extract and I though somehow with these extractors you can extract them instead of custom solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 20:13:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512498#M1068487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T20:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512499#M1068488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This one time I had to do it, we didn't have anything standard at hand... That's why we did the custom solution I mentioned before... And it worked perfect!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm not familiar with any standard solution (Datasources, etc) for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The best way for you to find out is to ask and understand with the Config guys how do they handle the Classifications in R/3 for your Company. Then you'll have a much better idea about what way to go... &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&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;Luis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 20:33:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512499#M1068488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T20:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512500#M1068489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to generate Clasification DS in SAP R/3 Side...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take a look at the Below threads...&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="2979683"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nagesh Ganisetti.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assign points if it helps.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 20:41:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512500#M1068489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T20:41:10Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512501#M1068490</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tcoce: CTBW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedure:&lt;/P&gt;&lt;P&gt;1. Enter a basis data source that you want to extend.&lt;/P&gt;&lt;P&gt;2. Select the client, class type, and object table from which you want&lt;/P&gt;&lt;P&gt;to copy classification data.&lt;/P&gt;&lt;P&gt;3. Select the data source to which you want to assign characteristics,&lt;/P&gt;&lt;P&gt;then choose Characteristics.&lt;/P&gt;&lt;P&gt;4. Choose New entries and enter the characteristics you want to assign.&lt;/P&gt;&lt;P&gt;5. If you want to define a sequence for the characteristics, enter position numbers.&lt;/P&gt;&lt;P&gt;4. Statuses are assigned automatically: N = New: this status appears before a new data source has been created.&lt;/P&gt;&lt;P&gt;R = Ready: the status is converted to this status after generation. If you change a characteristic, reset the status to N before generation.&lt;/P&gt;&lt;P&gt;Choose Data source to generate the data source. This also generates the characteristic data sources for characteristics of data type CHAR.&lt;/P&gt;&lt;P&gt;An internal key starting with "1CL_..." is assigned as a data sourcename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nagesh Ganisetti.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assign points if it helps.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 20:47:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512501#M1068490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T20:47:29Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512502#M1068491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again Nagesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Few questions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to extend Material so is it that I have to work with "1CL_OMAT001" , Cannot I generate new datsource??&lt;/P&gt;&lt;P&gt;When I clicked characteristics on "1CL_OMAT001" in CTBW - I got 3 characteristics and for 2 chars datasources are like 1CL_AMC_012...What is this for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it means only 2 chars are being extracted to BW?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also for KF, there is no datasource assigned...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea why thats so?..I m totally lost in this...!!&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jul 2007 21:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512502#M1068491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-06T21:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512503#M1068492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Help Please!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have no clue how to proceed with this..trying Nagesh's response - but still confused with that questions mentioned above..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Comments from Nagesh reply:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Enter a basis data source that you want to extend. - How do I know which datasource I need to extend - &amp;lt;b&amp;gt;all I know is I need to particulat field from material classification - 1CL_OMAT001 is in use - So i need to use this?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Select the client, class type, and object table from which you want to copy classification data.- &amp;lt;b&amp;gt;I am not sure abt this? From where can I get this data&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Select the data source to which you want to assign characteristics,then choose Characteristics. &amp;lt;b&amp;gt;Which datasource?&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is difference between - Basis datasource and Characteristics datasource?&lt;/P&gt;&lt;P&gt;It might be very basic - but I am not getting it!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Gaurav&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 13:55:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512503#M1068492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T13:55:54Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512504#M1068493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Send me your Email_id ... I will send you some documents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 14:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512504#M1068493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T14:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512505#M1068494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhishek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My mail ID is : saurabh_668@yahoo.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 14:42:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512505#M1068494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T14:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512506#M1068495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Gaurav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   1. Provide 0MATERIAL_ATTR Datasource.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   2.. Classification Data attched to material contains Class Type and Object table. Which is &amp;lt;u&amp;gt;Client Dependant Settings&amp;lt;/u&amp;gt;. Class type you can check with &amp;lt;u&amp;gt;Functional Folks&amp;lt;/u&amp;gt;. Object table use &amp;lt;u&amp;gt;F4&amp;lt;/u&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   2. Assume your Material Classfication has 30 fields. You need to one field value to BW. you can generate for that perticular Field. &lt;/P&gt;&lt;P&gt;3. Every Clasiffication Data has CHARECTERSTIC and VALUE combination in &amp;lt;b&amp;gt;SAP R/3&amp;lt;/b&amp;gt; Side. Once you define above detials (Step no 2) ... select your DS and go with Charecterstics... there you need to provide Charecterstic for which you want to generate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Feel free to ask me if you have any Questions. Check with functional folks how Variant Configuration works... which helps you to get good understanding of what is happening in Material Classification view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try to send you an email on Concept of Variant Configuration if i get a chance. &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;Nagesh Ganisetti.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assign points if it helps.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 16:59:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512506#M1068495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T16:59:02Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512507#M1068496</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again Nagesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am planning to do following: let me know if I am wrong somewhere:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) CTBW-&amp;gt;HIghlight 0MATERIAL_ATTR (Basis DS) -&amp;gt; Characteristics -&amp;gt; NEw entries-&amp;gt; from F4 get char which I need to fetch to BW-&amp;gt;Save/generate....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have following question :&lt;/P&gt;&lt;P&gt;Whats the use of characteristics DS?&lt;/P&gt;&lt;P&gt;I think I would ONLY be using 1CL_OMAT001 and not characteristic DS..1CL_AMC_001..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 17:31:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512507#M1068496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T17:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512508#M1068497</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gourav,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I sent you some more information on understanding classification data extraction ... hope you find this useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 18:57:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512508#M1068497</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T18:57:48Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512509#M1068498</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't worry about that...?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use your 1CL_OMAT001 which you generated. I can't generate in my current client... as we don't have any Variant Config setup.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guessing, 1CL_AMC_001 could be used for master data for Charecterstics. In my earlier project, i used only 1CL_OMAT001.&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;Nagesh Ganisetti.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;assign points if it helps.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 20:00:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512509#M1068498</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T20:00:07Z</dc:date>
    </item>
    <item>
      <title>Re: Material Classification - how to extract?</title>
      <link>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512510#M1068499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Nagesh and AB for all help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Jul 2007 20:04:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/material-classification-how-to-extract/qaa-p/2512510#M1068499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-09T20:04:25Z</dc:date>
    </item>
  </channel>
</rss>

