<?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: BAPI FOR CREATING MATERIAL CLASSIFICATION in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-creating-material-classification/m-p/3073946#M728845</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Stuti.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you call the BAPI_TRANSACTION_COMMIT after calling the BAPI (otherwise changes will not be committed to the database).&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, 27 Nov 2007 12:40:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-27T12:40:06Z</dc:date>
    <item>
      <title>BAPI FOR CREATING MATERIAL CLASSIFICATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-creating-material-classification/m-p/3073945#M728844</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;I am using BAP_OBJCL_CREATE for extending classification view/data for material master.I have entered the relevant data,system generates message 'assignment created',but on data is not getting updated in tables i.e data has not got extended.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Nov 2007 12:34:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-creating-material-classification/m-p/3073945#M728844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T12:34:46Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI FOR CREATING MATERIAL CLASSIFICATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-creating-material-classification/m-p/3073946#M728845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Stuti.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you call the BAPI_TRANSACTION_COMMIT after calling the BAPI (otherwise changes will not be committed to the database).&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, 27 Nov 2007 12:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-creating-material-classification/m-p/3073946#M728845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-27T12:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI FOR CREATING MATERIAL CLASSIFICATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-creating-material-classification/m-p/3073947#M728846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Based on your advise I called the other BAPI also,but it returns no message.&lt;/P&gt;&lt;P&gt;Normally,using a BAPi, entries are directly updated in the table.Plz help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Nov 2007 03:15:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-creating-material-classification/m-p/3073947#M728846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T03:15:01Z</dc:date>
    </item>
    <item>
      <title>Re: BAPI FOR CREATING MATERIAL CLASSIFICATION</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-creating-material-classification/m-p/3073948#M728847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Stuti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your statement is not correct: using BAPIs entries will NEVER be updated in tables. Instead you should check the return-table for any errors and then call either BAPI_TRANSACTION_COMMIT or BAPI_TRANSACTION_ROLLBACK. I use the BAPI for object classification as well:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-Change the object classification:&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_OBJCL_CHANGE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      objectkey          = iv_objectkey&lt;/P&gt;&lt;P&gt;      objecttable        = iv_objecttable&lt;/P&gt;&lt;P&gt;      classnum           = iv_class&lt;/P&gt;&lt;P&gt;      classtype          = iv_classtype&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      allocvaluesnumnew  = ct_nume_values&lt;/P&gt;&lt;P&gt;      allocvaluescharnew = ct_char_values&lt;/P&gt;&lt;P&gt;      allocvaluescurrnew = ct_curr_values&lt;/P&gt;&lt;P&gt;      return             = zlt_return.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*-Commit transaction in case no errors:&lt;/P&gt;&lt;P&gt;  READ TABLE zlt_return INTO zls_return&lt;/P&gt;&lt;P&gt;      WITH KEY type = 'E'.&lt;/P&gt;&lt;P&gt;  IF syst-subrc = 0.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ev_error = zls_return-message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.&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;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>Wed, 28 Nov 2007 07:14:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/bapi-for-creating-material-classification/m-p/3073948#M728847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-28T07:14:38Z</dc:date>
    </item>
  </channel>
</rss>

