<?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 Classification view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view/m-p/2109049#M440484</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using BAPI_MATERIAL_SAVEDATA to create material. However I also need to create the classification view but i think it is not included in the bapi. I try to use BAPI_OBJCL_CHANGE to create the classification view what I am passing is &lt;/P&gt;&lt;P&gt; OBJECTKEY                       000000000000072532     (material number)&lt;/P&gt;&lt;P&gt; OBJECTTABLE                     MARA    &lt;/P&gt;&lt;P&gt; CLASSNUM                        COSTCENTER               (class number to be used)&lt;/P&gt;&lt;P&gt; CLASSTYPE                       001&lt;/P&gt;&lt;P&gt; STATUS                          1&lt;/P&gt;&lt;P&gt; STANDARDCLASS&lt;/P&gt;&lt;P&gt; CHANGENUMBER                   &lt;/P&gt;&lt;P&gt; KEYDATE                         04/03/2007&lt;/P&gt;&lt;P&gt; NO_DEFAULT_VALUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to enter the value of the cost center. My question is where will I put the value of the cost center in this bapi? Is it in the changenumber? If this is not the right bapi to use, then please let me know what is the best FM or bapi to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Apr 2007 02:34:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-04T02:34:04Z</dc:date>
    <item>
      <title>Classification view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view/m-p/2109049#M440484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using BAPI_MATERIAL_SAVEDATA to create material. However I also need to create the classification view but i think it is not included in the bapi. I try to use BAPI_OBJCL_CHANGE to create the classification view what I am passing is &lt;/P&gt;&lt;P&gt; OBJECTKEY                       000000000000072532     (material number)&lt;/P&gt;&lt;P&gt; OBJECTTABLE                     MARA    &lt;/P&gt;&lt;P&gt; CLASSNUM                        COSTCENTER               (class number to be used)&lt;/P&gt;&lt;P&gt; CLASSTYPE                       001&lt;/P&gt;&lt;P&gt; STATUS                          1&lt;/P&gt;&lt;P&gt; STANDARDCLASS&lt;/P&gt;&lt;P&gt; CHANGENUMBER                   &lt;/P&gt;&lt;P&gt; KEYDATE                         04/03/2007&lt;/P&gt;&lt;P&gt; NO_DEFAULT_VALUES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to enter the value of the cost center. My question is where will I put the value of the cost center in this bapi? Is it in the changenumber? If this is not the right bapi to use, then please let me know what is the best FM or bapi to use.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 02:34:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view/m-p/2109049#M440484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T02:34:04Z</dc:date>
    </item>
    <item>
      <title>Re: Classification view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view/m-p/2109050#M440485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Katchak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Try with below FM.&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 = gs_classification-objectkeynew "material number ex:FG1701234567890123&lt;/P&gt;&lt;P&gt;objecttablenew = gs_classification-objecttablenew " ex:MARA&lt;/P&gt;&lt;P&gt;classnumnew = gs_classification-classnumnew "Class number ex:Material&lt;/P&gt;&lt;P&gt;classtypenew = gs_classification-classtypenew " class type ex:001&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ALLOCVALUESNUM =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;allocvalueschar = allocvalueschar " table with actual character and value , set instance allocvalueschar-instance = '001'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ALLOCVALUESCURR =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;return = return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2007 02:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/classification-view/m-p/2109050#M440485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-04T02:54:27Z</dc:date>
    </item>
  </channel>
</rss>

