<?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 To Create a Classification View by using  Bapi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-classification-view-by-using-bapi/m-p/3259831#M778707</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create Classification view in Material Master using Bapi. I am using the bapi called  BAPI_OBJCL_CREATE.&lt;/P&gt;&lt;P&gt;In that I am getting the valid output. But the problem is, the view is not created in the material master for the particular material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it any authorization object is required to create the classification view in material master using this bapi.Please help me on that.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know any other bapi is creating Classification view for the given material.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jan 2008 12:51:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-17T12:51:14Z</dc:date>
    <item>
      <title>To Create a Classification View by using  Bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-classification-view-by-using-bapi/m-p/3259831#M778707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to create Classification view in Material Master using Bapi. I am using the bapi called  BAPI_OBJCL_CREATE.&lt;/P&gt;&lt;P&gt;In that I am getting the valid output. But the problem is, the view is not created in the material master for the particular material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it any authorization object is required to create the classification view in material master using this bapi.Please help me on that.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know any other bapi is creating Classification view for the given material.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 12:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-classification-view-by-using-bapi/m-p/3259831#M778707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T12:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: To Create a Classification View by using  Bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-classification-view-by-using-bapi/m-p/3259832#M778708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balaji,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just call bapi transaction commit to successfully update the classification. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sundaresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2008 05:48:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-classification-view-by-using-bapi/m-p/3259832#M778708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-04T05:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: To Create a Classification View by using  Bapi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-classification-view-by-using-bapi/m-p/3259833#M778709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After the calling of BAPI BAPI_OBJCL_CREATE, read the RETURN table field TYPE = 'S'&lt;/P&gt;&lt;P&gt;Then call the BAPI_TRANSACTION_COMMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This BAPI will update the records in Tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE it_return INTO wa_return WITH KEY type = 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT it_return INTO wa_return WHERE type &amp;lt;&amp;gt; 'S'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; wa_return-message_id,wa_return-type,wa_return-message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&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;Bala Krishna&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bala Krishna on Oct 4, 2008 11:56 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bala Krishna on Oct 4, 2008 11:57 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Oct 2008 06:24:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/to-create-a-classification-view-by-using-bapi/m-p/3259833#M778709</guid>
      <dc:creator>former_member585060</dc:creator>
      <dc:date>2008-10-04T06:24:45Z</dc:date>
    </item>
  </channel>
</rss>

