<?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 Change or insert a vendor classification data. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-or-insert-a-vendor-classification-data/m-p/2763660#M643481</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;My english is not so good, let me try... I can change or insert a classification data for a vendor in the transaction XK01 and XK02, but I need do this by ABAP code. I tryed to find some functions... nothing! I tried to debugg the standard code of transaction XK02, but the functions what I found had not been useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone knows any BAPI or function that can do this??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tnx!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Sep 2007 23:25:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-17T23:25:33Z</dc:date>
    <item>
      <title>Change or insert a vendor classification data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-or-insert-a-vendor-classification-data/m-p/2763660#M643481</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;My english is not so good, let me try... I can change or insert a classification data for a vendor in the transaction XK01 and XK02, but I need do this by ABAP code. I tryed to find some functions... nothing! I tried to debugg the standard code of transaction XK02, but the functions what I found had not been useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyone knows any BAPI or function that can do this??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tnx!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Sep 2007 23:25:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-or-insert-a-vendor-classification-data/m-p/2763660#M643481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-17T23:25:33Z</dc:date>
    </item>
    <item>
      <title>Re: Change or insert a vendor classification data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-or-insert-a-vendor-classification-data/m-p/2763661#M643482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you mean that you need to know what BAPI's a particular tranx uses, which I can only assume that's what you mean, then you should access the code behind the transaction and search for 'CALL'. That normally is the standard method that think that most people use.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Suppose you want to find the bapi for creating a sales order, you usually use transaction VA01 for this.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Find out the package of the transaction.  &lt;/P&gt;&lt;P&gt;Start Va01 go to system --&amp;gt; status.  &lt;/P&gt;&lt;P&gt;Double click on transaction  &lt;/P&gt;&lt;P&gt;Package is VA  &lt;/P&gt;&lt;P&gt;Open this package in SE80  &lt;/P&gt;&lt;P&gt;Open business engineering--&amp;gt;Business object types  &lt;/P&gt;&lt;P&gt;Find the BO which sounds the most appropriate  &lt;/P&gt;&lt;P&gt;I would suggest BUS2032 Sales Order  &lt;/P&gt;&lt;P&gt;Double click.  &lt;/P&gt;&lt;P&gt;Open methods.  &lt;/P&gt;&lt;P&gt;Find the released method with from data or something similar in the name  &lt;/P&gt;&lt;P&gt;, Createfromdat2  &lt;/P&gt;&lt;P&gt;Position the cursor in it and click the program button  &lt;/P&gt;&lt;P&gt;Scroll down to find the bapi used in this method  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this way you can also find out programs and FM's  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Start va01 go to system--&amp;gt;status  &lt;/P&gt;&lt;P&gt;Double click transaction VA01  &lt;/P&gt;&lt;P&gt;Double click on package  &lt;/P&gt;&lt;P&gt;Read the application component. (this is SD-SLS Sales)  &lt;/P&gt;&lt;P&gt;Then open the transaction BAPI  &lt;/P&gt;&lt;P&gt;Sales and distribution&lt;DEL&gt;&amp;gt;Sales&lt;/DEL&gt;&amp;gt;sales order  &lt;/P&gt;&lt;P&gt;createfromdat2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 00:51:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-or-insert-a-vendor-classification-data/m-p/2763661#M643482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T00:51:17Z</dc:date>
    </item>
    <item>
      <title>Re: Change or insert a vendor classification data.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-or-insert-a-vendor-classification-data/m-p/2763662#M643483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;=/ nope... I can't find any bapi...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to only modify a part of the vendor, this characteristic, perhaps has a function that makes this. I saw in some forums the BAPI_OBJCL_CHANGE, but I do not know if it serves, because I want to modify the characteristic of a vendor, like in XK02 --&amp;gt; Environment --&amp;gt; Classification.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Sep 2007 11:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-or-insert-a-vendor-classification-data/m-p/2763662#M643483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-18T11:47:34Z</dc:date>
    </item>
  </channel>
</rss>

