<?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: Classification view for material in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view-for-material/m-p/3810913#M916690</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to maintain the new values for the characteristics,and equipments as well for the class type 002 and Table EQUI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know the fields responsible to maintain characteristic,values and equipments in the function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLMM_MAINTAIN_CLASSIFICATIONS. If possible paste the code if u got something.&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;Surya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 06 Jan 2010 12:19:59 GMT</pubDate>
    <dc:creator>surya_ramireddy</dc:creator>
    <dc:date>2010-01-06T12:19:59Z</dc:date>
    <item>
      <title>Classification view for material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view-for-material/m-p/3810910#M916687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to create the Classification view for material? Actually i am using BAPI_MATERIAL_SAVEDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt; Marisol&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 17:52:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view-for-material/m-p/3810910#M916687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T17:52:44Z</dc:date>
    </item>
    <item>
      <title>Re: Classification view for material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view-for-material/m-p/3810911#M916688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot create Classification View using BAPI&lt;/P&gt;&lt;P&gt;BAPI_MATERIAL_SAVEDATA..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For creating Classification View: Use Function Module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLMM_MAINTAIN_CLASSIFICATIONS         and pass&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; class_type              = '001'&lt;/P&gt;&lt;P&gt;          object_table            = 'MARA'&lt;/P&gt;&lt;P&gt;          key_date                = sy-datum&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        CHANGE_NUMBER           =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          new_log                 = 'X'&lt;/P&gt;&lt;P&gt;          test_run                = ' '&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fill tables :&lt;/P&gt;&lt;P&gt;OBJECTS                 = it_clsel_objects&lt;/P&gt;&lt;P&gt;          class_allocs_set        = it_allocation_classes&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        CLASS_ALLOCS_DEL        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        VALUATION_OLD           =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          valuation_new           = it_comw&lt;/P&gt;&lt;P&gt;with corresponding values and it will work..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 18:25:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view-for-material/m-p/3810911#M916688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T18:25:02Z</dc:date>
    </item>
    <item>
      <title>Re: Classification view for material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view-for-material/m-p/3810912#M916689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi check this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_MATERIAL_SAVEDATA'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;headdata = T_HEAD&lt;/P&gt;&lt;P&gt;PLANTDATA = T_MARC&lt;/P&gt;&lt;P&gt;PLANTDATAX = T_MARCX&lt;/P&gt;&lt;P&gt;STORAGELOCATIONDATA = T_MARD&lt;/P&gt;&lt;P&gt;STORAGELOCATIONDATAX = T_MARDX&lt;/P&gt;&lt;P&gt;SALESDATA = T_MVKE&lt;/P&gt;&lt;P&gt;SALESDATAX = T_MVKEX&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;RETURN = T_RETURN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;WAIT = 'X'&lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;RETURN = T_RETURN &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;venkat .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 18:32:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view-for-material/m-p/3810912#M916689</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T18:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Classification view for material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view-for-material/m-p/3810913#M916690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rohit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to maintain the new values for the characteristics,and equipments as well for the class type 002 and Table EQUI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please let me know the fields responsible to maintain characteristic,values and equipments in the function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLMM_MAINTAIN_CLASSIFICATIONS. If possible paste the code if u got something.&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;Surya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Jan 2010 12:19:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view-for-material/m-p/3810913#M916690</guid>
      <dc:creator>surya_ramireddy</dc:creator>
      <dc:date>2010-01-06T12:19:59Z</dc:date>
    </item>
  </channel>
</rss>

