<?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: Create Credit Memo using BAPI in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-credit-memo-using-bapi/m-p/6836987#M1472505</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;{ Changing the Object Status to Approve&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'I_CHANGE_STATUS'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        objnr          = is_vbakch-objnr&lt;/P&gt;&lt;P&gt;        estat_inactive = c_e0001&lt;/P&gt;&lt;P&gt;        estat_active   = c_e0002&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        cannot_update  = 1&lt;/P&gt;&lt;P&gt;        OTHERS         = 2.&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      is_billing-salesorg = is_vbakch-vkorg.&lt;/P&gt;&lt;P&gt;      is_billing-distr_chan = is_vbakch-vtweg.&lt;/P&gt;&lt;P&gt;      is_billing-division = is_vbakch-spart.&lt;/P&gt;&lt;P&gt;      is_billing-doc_type = is_vbakch-auart.&lt;/P&gt;&lt;P&gt;      is_billing-ref_doc = is_vbakch-vbeln.&lt;/P&gt;&lt;P&gt;      is_billing-bill_date = sy-datum.&lt;/P&gt;&lt;P&gt;      is_billing-sold_to = is_vbakch-kunnr.&lt;/P&gt;&lt;P&gt;      is_billing-ref_doc_ca = c_x.&lt;/P&gt;&lt;P&gt;      APPEND is_billing TO it_billing.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BAPI To create Billing for the Credit Memo.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      billingdatain = it_billing&lt;/P&gt;&lt;P&gt;      return        = it_returncg&lt;/P&gt;&lt;P&gt;      success       = it_bilsuccess.&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use these for Credit memo creation using upload .. If u want i can send the coding also ..&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;Srinivas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Mar 2010 07:05:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-29T07:05:30Z</dc:date>
    <item>
      <title>Create Credit Memo using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-credit-memo-using-bapi/m-p/6836986#M1472504</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 have to create credit memo using XL file.In XL file there are following fields:&lt;/P&gt;&lt;P&gt;1.order type&lt;/P&gt;&lt;P&gt;2.sales organization/division/distribution&lt;/P&gt;&lt;P&gt;3.sold to party&lt;/P&gt;&lt;P&gt;4.order refrence&lt;/P&gt;&lt;P&gt;5.Material code&lt;/P&gt;&lt;P&gt;6.Quantity&lt;/P&gt;&lt;P&gt;7.Price.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to create Credit memo using BAPI?If yes then please reccomend any BAPI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AMAR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Mar 2010 06:55:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-credit-memo-using-bapi/m-p/6836986#M1472504</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-29T06:55:43Z</dc:date>
    </item>
    <item>
      <title>Re: Create Credit Memo using BAPI</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-credit-memo-using-bapi/m-p/6836987#M1472505</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;{ Changing the Object Status to Approve&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'I_CHANGE_STATUS'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        objnr          = is_vbakch-objnr&lt;/P&gt;&lt;P&gt;        estat_inactive = c_e0001&lt;/P&gt;&lt;P&gt;        estat_active   = c_e0002&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        cannot_update  = 1&lt;/P&gt;&lt;P&gt;        OTHERS         = 2.&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      is_billing-salesorg = is_vbakch-vkorg.&lt;/P&gt;&lt;P&gt;      is_billing-distr_chan = is_vbakch-vtweg.&lt;/P&gt;&lt;P&gt;      is_billing-division = is_vbakch-spart.&lt;/P&gt;&lt;P&gt;      is_billing-doc_type = is_vbakch-auart.&lt;/P&gt;&lt;P&gt;      is_billing-ref_doc = is_vbakch-vbeln.&lt;/P&gt;&lt;P&gt;      is_billing-bill_date = sy-datum.&lt;/P&gt;&lt;P&gt;      is_billing-sold_to = is_vbakch-kunnr.&lt;/P&gt;&lt;P&gt;      is_billing-ref_doc_ca = c_x.&lt;/P&gt;&lt;P&gt;      APPEND is_billing TO it_billing.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;BAPI To create Billing for the Credit Memo.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      billingdatain = it_billing&lt;/P&gt;&lt;P&gt;      return        = it_returncg&lt;/P&gt;&lt;P&gt;      success       = it_bilsuccess.&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use these for Credit memo creation using upload .. If u want i can send the coding also ..&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;Srinivas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Mar 2010 07:05:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-credit-memo-using-bapi/m-p/6836987#M1472505</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-29T07:05:30Z</dc:date>
    </item>
  </channel>
</rss>

