<?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 Changing PO tax code using BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-po-tax-code-using-bapi/m-p/2757979#M641926</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;I have one requirement to change tax code for multiple Purchase order but the &lt;/P&gt;&lt;P&gt;thing is they should not go for release.So what should I prefer BDC or BAPI.&lt;/P&gt;&lt;P&gt;I am thinking to implement it through BAPI, but I don't know what procedure to follow.&lt;/P&gt;&lt;P&gt;If somebody can provide me a small guiding steps or code then it will be very helpful for me..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnaks in advance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Useful answers will be rewarded with points....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh Akarte&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 31 Aug 2007 09:07:27 GMT</pubDate>
    <dc:creator>rajesh_akarte2</dc:creator>
    <dc:date>2007-08-31T09:07:27Z</dc:date>
    <item>
      <title>Changing PO tax code using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-po-tax-code-using-bapi/m-p/2757979#M641926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;I have one requirement to change tax code for multiple Purchase order but the &lt;/P&gt;&lt;P&gt;thing is they should not go for release.So what should I prefer BDC or BAPI.&lt;/P&gt;&lt;P&gt;I am thinking to implement it through BAPI, but I don't know what procedure to follow.&lt;/P&gt;&lt;P&gt;If somebody can provide me a small guiding steps or code then it will be very helpful for me..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thnaks in advance..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Useful answers will be rewarded with points....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rajesh Akarte&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 09:07:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-po-tax-code-using-bapi/m-p/2757979#M641926</guid>
      <dc:creator>rajesh_akarte2</dc:creator>
      <dc:date>2007-08-31T09:07:27Z</dc:date>
    </item>
    <item>
      <title>Re: Changing PO tax code using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/changing-po-tax-code-using-bapi/m-p/2757980#M641927</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;one possible way is using BAPI_PO_CHANGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where's an example to change "asset  number" in PO. For changing the conditions in your case, you can do the same. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ACCOUNTX-PO_ITEM = ACCOUNT-PO_ITEM = WA_PED-EBELP.&lt;/P&gt;&lt;P&gt;      ACCOUNTX-SERIAL_NO = ACCOUNT-SERIAL_NO = WA_PED-ZEKKN.&lt;/P&gt;&lt;P&gt;      ACCOUNT-ASSET_NO = ZBENS_IMOB-ANLN1_NEW.&lt;/P&gt;&lt;P&gt;      ACCOUNT-SUB_NUMBER = ZBENS_IMOB-ANLN2_NEW.&lt;/P&gt;&lt;P&gt;      APPEND ACCOUNT.&lt;/P&gt;&lt;P&gt;      ACCOUNTX-ASSET_NO = 'X'.&lt;/P&gt;&lt;P&gt;      ACCOUNTX-SUB_NUMBER = 'X'.&lt;/P&gt;&lt;P&gt;      ACCOUNTX-PO_ITEMX = 'X'.&lt;/P&gt;&lt;P&gt;      ACCOUNTX-SERIAL_NOX = 'X'.&lt;/P&gt;&lt;P&gt;      APPEND ACCOUNTX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'BAPI_PO_CHANGE'&lt;/P&gt;&lt;P&gt;           EXPORTING&lt;/P&gt;&lt;P&gt;                 PURCHASEORDER = WA_PED-EBELN&lt;/P&gt;&lt;P&gt;           TABLES&lt;/P&gt;&lt;P&gt;                RETURN        = RET&lt;/P&gt;&lt;P&gt;                POACCOUNT     = ACCOUNT&lt;/P&gt;&lt;P&gt;                POACCOUNTX    = ACCOUNTX.&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;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Pedro Rosa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Aug 2007 15:28:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/changing-po-tax-code-using-bapi/m-p/2757980#M641927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-31T15:28:56Z</dc:date>
    </item>
  </channel>
</rss>

