<?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: Using BAPI to create a Credit/Debit Memo in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-to-create-a-credit-debit-memo/m-p/824944#M43049</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can't find a BAPI which provides there are several options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Use CALL TRANSACTION (if youre programming in ABAP)&lt;/P&gt;&lt;P&gt;-Create your own BAPI that calls a CALL TRANSACTION &lt;/P&gt;&lt;P&gt;-Post an IDOC to create the debit or credit memo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either way you loose the possibility to do a roll back of the LUW. If roll back of the LUW is a problem you might consider executing the creation of the debet/credit document last (if possible).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't recommend copying a BAPI due to version upgrates, notes and hotpackages.&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;Harald&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 29 Apr 2004 08:05:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2004-04-29T08:05:50Z</dc:date>
    <item>
      <title>Using BAPI to create a Credit/Debit Memo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-to-create-a-credit-debit-memo/m-p/824943#M43048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to use a BAPI to create a credit/debit memo but the BAPI_SALESORDER_CREATEFROMDAT2 BAPI is hard coded for BUS2032.  I need to create a credit/debit memo which is BUS2096.  Has anyone ever copied the bapi to a zbapi* and used a different Business Object?  Or do you all have any other suggestions?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Apr 2004 20:01:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-to-create-a-credit-debit-memo/m-p/824943#M43048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-04-28T20:01:49Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI to create a Credit/Debit Memo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-to-create-a-credit-debit-memo/m-p/824944#M43049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mike,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you can't find a BAPI which provides there are several options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Use CALL TRANSACTION (if youre programming in ABAP)&lt;/P&gt;&lt;P&gt;-Create your own BAPI that calls a CALL TRANSACTION &lt;/P&gt;&lt;P&gt;-Post an IDOC to create the debit or credit memo&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either way you loose the possibility to do a roll back of the LUW. If roll back of the LUW is a problem you might consider executing the creation of the debet/credit document last (if possible).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't recommend copying a BAPI due to version upgrates, notes and hotpackages.&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;Harald&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Apr 2004 08:05:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-to-create-a-credit-debit-memo/m-p/824944#M43049</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-04-29T08:05:50Z</dc:date>
    </item>
    <item>
      <title>Re: Using BAPI to create a Credit/Debit Memo</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-to-create-a-credit-debit-memo/m-p/824945#M43050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mike, I rewrote one of our custom programs using BAPI's to create debet/credit memo's successfully. You have to use 2 BAPI's actually:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI_SALESDOCU_CREATEFROMDATA&lt;/P&gt;&lt;P&gt; FOR CREATING BASIC ORDER WITHOUT HEADER TEXT&lt;/P&gt;&lt;P&gt; AND PRICING CONDITIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BAPI_SALESORDER_CHANGE&lt;/P&gt;&lt;P&gt; FOR ADDING THE HEADER TEXT AND PRICING&lt;/P&gt;&lt;P&gt; CONDITIONS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You also get related info from OSS note 93091.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Harold&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Jun 2004 05:53:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-bapi-to-create-a-credit-debit-memo/m-p/824945#M43050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2004-06-02T05:53:01Z</dc:date>
    </item>
  </channel>
</rss>

