Credit memo not passing amount to invoice

Folks
I am trying to create a credit memo request with reference to a billing document. When i save and try to create an invoice for the credit memo request, it does not pull in the amount.
i.e if i have created a Cr memo request for $50 save -> create invoice, the amount in the invoice is $0.0 .
I think there is something missing from Copy control. Any suggestions?

dear susan,
check in the copy control from order to billing VTFA  which pricing type is mentiond it should be C
check what is there and change it to C
i think it will work for you
siva

Similar Messages

  • Cancel Credit Memo Not passed to Accounting

    Hi, All
    My client have a Issue there raised Credit memo request with reference to billing document later there convert into Credit Memo, later there found amount there given is wrong credit memo request, there cancel credit memo the problem is that system not generate any accounting document Due to the Number range Issue and we fix the issue ( Same Series of number ranges RV and accounting ) previous it was the other Series of number ranges
    The problem is Cancellation of credit memo not passed to accounting and credit memo already passed to accounting 
    Can we delete Billing document not passed to Accounting So i can again Cancel the Credit memo
    it very urgentt
    Thanks
    Rajesh

    Hi,
    to cance a cancellation document, check note 388489.
    But the status of the original document won't change thus you cannot cancel it again. The solution is creating a debit memo.
    Balazs

  • Credit Memo not applied to Invoice

    One of our customers has had this scenario several times recently:
    1. An A/R Invoice is created for 100.00
    2. An A/R Credit memo is based on the invoice for 100.00 
    3. The Credit Memo is added.
    4. The Credit Memo is closed, but the invoice remains open.
    5. Both the invoice and credit memo appear as unreconciled transactions.
    6. The user attempts to reconcile the two documents.
    7. The invoice is then closed, but the credit memo becomes open and has a balance of -100.00
    The problem occurs at step 4 - why would the documents not be reconciled, and why is the invoice open while the credit memo is closed?  Nothing works right from that point on.
    The system is 2007A PL42.
    Any suggestions would be welcome.  Thank you.
    Marcia

    Hi Marcia,
    An upgrade might stop it from occurring, I don't recall seeing this for a while. 2007A goes out of maintenance at the end of this year.

  • AP Invoice - Credit memo - negative payment amount

    Hello all,
    I am working in 11i oracle apps.
    In AP_invoices_all table there is an invoice_id that has a negative amount on it
    I understood that it is a credit memo. Can you please explain what a credit memo is and how does it affect a business
    Also, when I checked the corresponding invoice_id in the AP_invoice_payments_all table, this invoice has a negative payment amount. What does this mean? How is it going to effect in the journal entries.
    Thank you
    Bob

    Hi.
    A Credit Memo can be considered the opposite of a Standard Invoice. It can be due to severeal reasons like, for example, when you claim to your supllier that the price for a certain good or service was higher than the agreed he can send you a Credit Memo in the amount of the price difference. You have recorded the Invoice (let's say $100) for the wrong price and now you will record the CM (let's say $10) for a negative amount being that the sum of the two documents correspond to the correct purchase you have done.
    This way, the table AP_INVOICE_PAYMENTS_ALL records the CM with a negative amount allowing you to pay the two documents (the positive invoice and the negative CM) for the net amount.
    About the journals entries:
    Invoice
    DR Cost $100
    CR Liabilty $100
    CM
    DR Liability $10
    CR Cost $10
    Payment
    DR Liability $90
    CR Bank $90
    Hope this helps,
    Octavio

  • Credit-memo not able to be posted against a WBS Element

    Hi there,
    When the available amount on a WBS element is less than the credit memo amount, SAP gets a hard stop of budget exceeded.
    It`s wrong since a credit is giving money back to the project and you should be able to enter it regardless of available funds.
    Important notes: I'm trying to post this credit-memo against the WBS Element via MIRO transaction (credit memo option).
    Is there any customizing in IM where I can define it?
    Regards and thanks in advance.

    Hi,
    You are trying to post a credit memo again a purchase order since its via MM. Therefore how can you have a credit memo value exceeding the original invoice value?
    If you are trying to post an advance (as you have mentioned that you are receiving money to the project), it should be recored as an advance rather than a credit memo. Consider the double entry you want to post to.
    NW

  • A/R credit memo for closed A/r Invoice

    Hi Guru's,
    Our Client want to make an A/R credit memo for closed A/R Invoice (i.e) payment is already received for that A/R Invoice.
    But in such scenario, the he is not able to get the referce of the A/R invoice as it closed... so he makes the stand alone Goods Return , Excise & A/R Credit Memo.
    But the problem in this stand alone scenario is that the system treat such case as purchase scenario and hit the repective account of VAT and excise which is very incorrect.
    e.g
    Instead of hitting - VAT payable account for debit
    its hitting           - VAT input account for debit
    So please help me in this matter and give the solution as soon as possible ....its urgent.
    Thanks & Regards,
    Abhishek

    hi Abhishek,
    Create a new tax code and in that tax code create
    vat code with its A/P G/L account is same as A/R G/L account,Similary you repeat it for ed,cs,hcs also.
    1. Change Posting period if required.
    2.Reverse incoming payment entry.
    3.Do A/R credit memo base on A/R invoice with new tax code.
       Incoming excise invoice will be created automatically
       in background.
    Incoming excise invoice journal entries will be hit as in
    sales scenario.
    Hope above answer helps you.
    Jeyakanthan

  • Create Credit Memo based on A/R Invoice

    Hello Gurus,
    Is it possible to create a A/R Credit Memo based on A/R Invoices through DI API or DI Server?  Please help.

    Hi Gilbert Ngo
    Yes it is possible, here is an example of how i added a invoice based on a sales order, just change it as you require.
    Dim oInvoice As SAPbobsCOM.Documents
            oInvoice = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oInvoices)
            oInvoice.CardCode = BPCode.Text
            oInvoice.DocDueDate = Now
            oInvoice.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oOrders
            oInvoice.Lines.BaseEntry = CInt(OrderStr)
            oInvoice.Lines.BaseLine = 0
            oInvoice.Lines.Add()
            oInvoice.Lines.BaseType = SAPbobsCOM.BoObjectTypes.oOrders
            oInvoice.Lines.BaseEntry = CInt(OrderStr)
            oInvoice.Lines.BaseLine = 1
            lRetCode = oInvoice.Add
            oCompany.GetLastError(lErrCode, sErrMsg)
            If lRetCode <> 0 Then
                MessageBox.Show("Not Added" & lErrCode & " " & sErrMsg)
            ElseIf lRetCode = 0 Then
                'oCompany.GetNewObjectCode(OrderStr)
                MsgBox("Added Invoice")
            End If
    PLEASE NOTE THAT oInvoice.Lines.BaseEntry = CInt(OrderStr) is refereing TO THE DOCENETRY AND NOT THE DOCNUM of the base doc.
    Hope this helps

  • Credit memo not saving

    Hi all,
            I have a customer who is trying to save a couple credit memo and when she clicks on execute it highlights the quantity field and doesn't save. The credit memo is working for other invoices in the same area. The customer is using SAP B1 2005 Pl 45. Any suggestions would be appreciated. Thanks!
    Jeff Haldeman
    Support One

    Gordon,
    Believing it is AR Credit Memo we are talking about it increases the quantity on stock and not reduce..
    Suda

  • SD  Credit memo note process

    Hi Gurus,
    My concern is " My user was creating Credit memo note on certain order reasons, and based on this order he will be doing billing, now he want that system has to  trigger separate G/L accounts based on order reasons. Can it be done in standard SAP system.
    Please consider this issue as top priority.
    Thanks and regards
    SUBBU

    You can give order reason in VKOA, but first you shall have to create a cond table with the appropriate fields (like Order reason)
    it is same as giving Acc Key (ERL etc.) in VKOA, but first you have to create a cond table with field Account key.
    It is all part of standard configuration.
    Order reason is a field already provided (technical name mentioned by member). You have to complete the configuration steps, which shall lead to amount being posted to right account, after system finds a valid condition record.
    Thus check if there is a cond table already with the fields you want.
    Check if this cond table is in your access seq.
    Then create condition record in VKOA
    Test by creating and posting a credit memo.
    Edited by: Typewriter on Sep 27, 2011 1:40 PM

  • Error while adding A/R credit memo base on A/R  invoice using DI-API

    Hi Expert,
    Adding partial a/r credit memo   getting error msg "Invalid value  [ORIN.DocRate]"
    Thanks
    Rajkumar
    Edited by: Rajkumar Gupta on Dec 9, 2011 3:01 AM

    Hi,
    You may only need to provide BaseType, BaseEntry and BaseLine when you add A/R credit memo base on A/R invoice. Omit all other fields if you include in your code.
    Thanks,
    Gordon

  • Posting a Credit Memo with Reference to the Invoice

    Dear all,
    I'd like to post a Credit Memo with Reference to the Invoice but in transaction FB65 or I can't find field to input Reference to the Invoice
    Please tell me where I can Reference to the Invoice
    Thank in advance
    Minh

    Dear all,
    When I create a a Credit Memo (Transaction FB65),
    On the Payment tab page in the Enter Vendor Credit Memo,the system doesn't display field Invoice Reference to input Invoice document number of an invoice reference exists.
    Please tell me how to configure to display field Invoice Reference
    Thank in advance
    Minh

  • Can Credit Memo be booked against an Invoice?

    While raising a Credit Memo is it possible to refer or link the Credit memo being raised to the Invoice?

    >
    Mehul Ghanshyam Shah wrote:
    > Thanks for your reply Indranil...! Even my understanding is that CM cannot be linked to Invoice. But I wanted to be ensure the same.
    > Yes I am aware of MR8M.
    > But I need to know if there is any way an CM being raised (Using MIRO or any other available transaction), is it possible to link it to the Invoice already entered.
    I think you can check the same through table BSEG where against the credit memo (BELNR) you can find the invoice number (REBZG)
    Thanks & Regards,
    Indranil

  • Credit memo not generated for RMA Receipt

    Hi,
    i created RMA receipt but for this credit memo not generated in AR, Manually i have run the Workflow Background Process  & Receiving transaction processor concurrent also. even though CM not generated(In AR Interface lines table also data is not available)..or else is there any possibility for cancel or return the RMA Receipt quantity?
    regards
    Balaji
    Edited by: user9122706 on May 15, 2012 9:22 PM
    Edited by: user9122706 on May 15, 2012 9:51 PM

    Dear Balaji,
    Credit memo not generated for RMA Receipt,Can u put manual credit in AR
    Regards,
    Shineee..

  • List of credit memo note

    Hi There,
    How can we list all the credit memo note (billing document).
    Cheers.

    Hi chan,
    go to vf05n there you give billing document type i.e G2 give dates
    you will get list of documents
    i think it should give solution to your problem
    cheers
    bvdv

  • Amount of the paid invoice after credit memo not correct

    Hi all
    I am using AP, CM and GL.
    I register an invoice in Payables with amount 10000.
    After two days the supplier send me a document with when he is telling that i have to pay only 8000.
    I register this document as credit memo with amount 2000 and apply on the invoice.
    But i pay in the bank only 8000 and i can not pay both documents because, it will not reflect correct actions in bank statements.
    Can you please tell me how to solve this situation?
    Thank you and best regards
    Edited by: user567002 on Nov 23, 2010 4:28 AM

    That depends on how you created the credit memo. Did you use the credit balance/line feature to create the credit memo or was that a standalone CM that you keyed in ? If it was the former, the previous_customer_trx_id field on the CM record will contain the customer_trx_id of the invoice. But if the CM was manually keyed in, that field would be blank.
    Either which way, you should be able to identify the link between the invoice and credit memo using the ar_receivable_applications_all table.

Maybe you are looking for

  • Can you share music between computers and seperate ipods?

    I would like to know if I could share my itunes with someone on a different computer and with a seperate ipod. Me and my sister (who's in college) would like to continue sharing music because we usually split the cost of cds. My main question is: Is

  • ACS 5.4 works for 1 hour then authentication fails

    Has anyone ever run into this issue. A deployment of two ACS devices where placed in the network. One being primary and the other being secondary. All network devices are directed to the secondary ACS. Everything works fine per replication and status

  • Multi language support for reports and prompts labels

    Is there a way to configure reports prompts labels with session\presentation variables, in order to support multi language interface?

  • WD Abap Configuration

    hi, we need to disable the possibility to configure wd abap applications/used components. Is this possible via a "Setting" or do we have to create configurations where all elements got the flag "final". kind regards, oliver

  • Error deploying ATG project in BCC

    Hello, We have installed ATG 10.2 vanilla with Commerce Reference Store and no switching data source. We have tested two scenarios: -1st Scenario: When doing an incremental deployment of a project which includes a new product (not existing in Referen