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.

Similar Messages

  • Amount posted different for Invoice and Credit memo

    Hi Experts,
    The user has reversed only one line item of an invoice entry (RE), which was processed back in 2009. The invoice entry was processed with two Gl Accounts( Transit Comm.match and Com.Inv.GIT d.d) with amount allocated as 576.35 (5399.2 and -4822.85)with an input tax of 22%.But in the reversal entry the amount allocated to these account are different(-5851.62 and 5275.27), thought the total match to -576.35. Interesting thing is this entry was posted in a foreign currency (EUR) wherein the Local Currency values which is in PLN is same for both invoice and reversal entries. Exchange rate for both the entries are  4.20430.
    Please let me know your thoughts..

    Hi Ravi,
    Here by reversal I meant the credit memo processed against invoice.

  • How to populate the Referance Field Through the Auto Invoice in credit memo

    HI ,
    I m populating the records in RA_INTERFACE_LINES_ALL and creates the cr Memo through the Auto Invoice ,
    but i m like to populate the Referance Field which is exist in Header part of the Cr Memo (Benith the TYPE).
    So plz help me,
    that which column of the RA_INTERFACE_LINE_ALL populates ,that gave me a data in the Referance Field .
    However this referance field is carried out from the table.Column =RA_CUSTOMER_TRX_ALL.ct_reference
    Plz Help..
    Regards,
    DK

    what you did?

  • How to Print the Batch no in the AR Invoice , AR Credit memo

    hi
    Dear experts my client using SAP Business One 2007 B Patch 15 and i want to print the batch no in the AR Invoice print.
    How can i do this? Please help me
    I have already done setting in the Administration>>system intialization >>print Preference but then also system do not print the batch no in the AR Invoice document is created based on the Delivery
    Please Reply ASAP
    Regards
    Rajani P Patel

    Dear Joseph
    I have also tried with the Document Printing but problem is not solved
    do u have another way for this problem?
    Regards
    Rajani P Patel

  • STANDARD SMARTFORM FOR CUSTOMER INVOICE AND CREDIT MEMO

    GUD MORNING ,
    I WANT THE STANDARD SMART FORM FOR THE CUSTOMER INVOICE AND CREDIT MEMO RELATED TO FI FOR SALES.
    ARUN REDDY I

    Hi,
    Search For Standard or Customise Smartform
    *&  Report       : ZTEST_SEARCH_FORMNAME
    *&  This program will help you to search the SMARTFORM either Standard
      Or Customer created in your compatiable language.
    REPORT  ZTEST_SEARCH_FORMNAME  .
    TYPE-POOLS: SLIS.
      TABLES: STXFADM, STXFADMT.
      DATA:  BEGIN OF ITAB OCCURS 0,
           FORMNAME     LIKE STXFADM-FORMNAME,
           MASTERLANG   LIKE STXFADM-MASTERLANG,
           DEVCLASS     LIKE STXFADM-DEVCLASS,
           VERSION      LIKE STXFADM-VERSION,
           FIRSTUSER    LIKE STXFADM-FIRSTUSER,
           FIRSTDATE    LIKE STXFADM-FIRSTDATE,
           FIRSTTIME    LIKE STXFADM-FIRSTTIME,
           LASTUSER     LIKE STXFADM-LASTUSER,
           LASTDATE     LIKE STXFADM-LASTDATE,
           FORMTYPE     LIKE STXFADM-FORMTYPE,
           CAPTION      LIKE STXFADMT-CAPTION,
           END OF ITAB.
      DATA: IT_FIELDCAT TYPE  SLIS_T_FIELDCAT_ALV,
              WA_FIELDCAT TYPE SLIS_FIELDCAT_ALV,
              WA_LAYOUT TYPE SLIS_LAYOUT_ALV.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS: S_DEV  FOR STXFADM-DEVCLASS NO INTERVALS.
    SELECT-OPTIONS: S_FORM FOR STXFADM-FORMNAME NO INTERVALS.
    SELECTION-SCREEN SKIP 1.
    PARAMETERS: P_LANG LIKE T002-SPRAS DEFAULT 'EN'.
    SELECTION-SCREEN END OF BLOCK B1.
    PERFORM F_SELECT_DATA.
    PERFORM F_LAYOUT.
    PERFORM F_FIELDCAT.
    PERFORM DISPLAY.
    *&      Form  f_select_data
          text
    -->  p1        text
    <--  p2        text
    FORM F_SELECT_DATA .
      SELECT
             A~FORMNAME
             A~MASTERLANG
             A~DEVCLASS
             A~VERSION
             A~FIRSTUSER
             A~FIRSTDATE
             A~FIRSTTIME
             A~LASTUSER
             A~LASTDATE
             A~FORMTYPE
             B~CAPTION
             FROM STXFADM AS A INNER JOIN  STXFADMT AS B ON
             AFORMNAME = BFORMNAME INTO  TABLE ITAB  WHERE
             A~DEVCLASS IN S_DEV AND
             A~FORMNAME IN S_FORM AND
             B~LANGU = P_LANG.
        IF SY-SUBRC  = 0.
        SORT ITAB BY FORMNAME.
      ELSE.
        MESSAGE I398(00) WITH 'No Form Exits for this selection criteria'.
        LEAVE LIST-PROCESSING.
      ENDIF.
    ENDFORM.                    " f_select_data
    *&      Form  display
          text
    -->  p1        text
    <--  p2        text
    FORM DISPLAY .
        CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM = SYST-CPROG
          IS_LAYOUT          = WA_LAYOUT
          IT_FIELDCAT        = IT_FIELDCAT
        TABLES
          T_OUTTAB           = ITAB.
      IF SY-SUBRC <> 0.
      ENDIF.
    ENDFORM.                    " display
    *&      Form  f_fieldcat
          text
    -->  p1        text
    <--  p2        text
    FORM F_FIELDCAT .
      DATA: WA_COL TYPE I VALUE 1.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-003.  " Form Name
      WA_FIELDCAT-FIELDNAME =  'FORMNAME'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-004.  " Smart form Text
      WA_FIELDCAT-FIELDNAME =  'CAPTION'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-005.  "Package
      WA_FIELDCAT-FIELDNAME =  'DEVCLASS'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-006.  "First User
      WA_FIELDCAT-FIELDNAME =  'FIRSTUSER'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-007.  "First Date
      WA_FIELDCAT-FIELDNAME =  'FIRSTDATE'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-008.  "Version
      WA_FIELDCAT-FIELDNAME =  'VERSION'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-009.  "Master Language
      WA_FIELDCAT-FIELDNAME =  'MASTERLANG'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      WA_FIELDCAT-COL_POS   =  WA_COL + 1.
      WA_FIELDCAT-SELTEXT_L =  TEXT-010.  "Last User
      WA_FIELDCAT-FIELDNAME =  'LASTUSER'.
      WA_FIELDCAT-TABNAME   =  'ITAB'.
      APPEND WA_FIELDCAT TO IT_FIELDCAT.
      CLEAR WA_FIELDCAT.
      ENDFORM.                    " f_fieldcat
    *&      Form  f_layout
          text
    -->  p1        text
    <--  p2        text
    FORM F_LAYOUT .
        WA_LAYOUT-COLWIDTH_OPTIMIZE = 'X'.
    ENDFORM.                    " f_layout
    Regards,
    Jagadish

  • Put the balance back in credit memo if I cancel the refund invoice in AP

    Hi Friends,
    .When I Crete a the refund in AR for the credit memo , an invoice will be created for the party in AP. But if I cancel the AP invoice. This is not putting back the balance in my AR credit memo. We are on 12.1 , Please suggest if there are any patches or any addition setup to be done to put the balance back in credit memo if I cancel the refund invoice in AP.
    . Is there any program create refunds invoice in AP for all the credit memos available in AR?
    Please give some suggestions,
    Sireesha

    Hi,
    When I Crete a the refund in AR. it creates a Payment request invoice in AP for that party. But if i cancel the invoice create in AP for the refund, that is not effecting the customer balance in AR. Please suggest.
    Sireesha

  • Copy AR invoice to Credit Memo

    In B1 2005A SP01 PL 36, you cannot create a Credit memo from a closed invoice. This is extremely restrictive as the majority of product returns occur after the invoice has been paid. Is there an update to 2005A that provides this capability or does 2007 offer it? If not, this really should be considered since the Credit memo is used to return money to the customer. Not having to reenter the information would be a time saver and a potential reduction of entry errors. In our instance, all of our products are under Batch management and the credit memo has to put the stock back into the correct batch. This should automatically done from copying the original AR.

    Hi Art,
    Here are the postings as performed in my UK localisation testdatabase:
    AR invoice:
    BP account Debit 117.50
    VAT @ 17.5% Credit 17.50
    Revenue Credit 100.00
    Credit Card Payment:
    Credit Card account Debit 117.50
    BP Account Credit 117.50
    Cancellation of Credit Card Payment:
    Credit Card account Debit -117.50
    BP Account Credit -117.50
    The payment is reconciled with the original invoice & the cancellation.
    The invoice is reconciled with the payment & the cancellation, yet in status 'open' because the payment has been cancelled & the balance due is back on the account.
    The invoice will appear in the open items list as unpaid & is available as base document for a credit memo. You can then use the 'copy from' or 'copy to' functionality to creste the credit memo based on the invoice.
    The invoice will then be reconciled with:
    a) the payment
    b) the cancellation of the payment
    c) the credit memo
    If you use the invoice as base document for only a partial credit memo, then you will need to either create another payment to clear the balance due or another credit memo.
    As I outlined above, the reason for 'locking' a fully reconciled invoice is because this particular transaction is completed. This is of importance, especially if there is stock with serial/batch numbers involved. Depending on the industry, it is of vital importance to keep track of batches & being able to duplicate a batch/serial number when the original transaction is completed, would lead to inconsistencies. Also,
    if there has been no stock transaction prior to the invoice, this is done on the same journal entry. So if, say 100 items of your stock left the warehouse at a MAP of 1 each at the invoice stage, the value of your warehouse is reduced by 100. If you base the credit memo on the invoice, this stock is always received back with a value of 100. If the MAP changes, say to 1.5 & you the create an independent credit memo, then the items are received back with the new MAP of 1.5 since there is no link to the original, outgoing, document.
    Therefore, the process should be:
    1. AR invoice (Status: open)
    2. Payment (AR invoice status: closed)
    3. Cancel Payment (AR invoice status: open)
    4. Credit memo (full- AR invoice status: closed, partial-AR invoice status: open)
    5. Payment/credit memo if balance due (AR invoice status: closed)
    All the best,
    Kerstin

  • Cancel invoice document(Credit Memo) - Reg.

    Dear Experts,
    I am trying to cancel Invoice document(Credit Memo) through MR8M transaction. While processing, system is issuing error message (M8 534) as Balance not Zero: & debits : & Credits. But being its saying in initial screen of MR8M, i dont know where to change the amount.
    Please help me out to cancel credit memo. Thanks in advance..
    Regards,
    Kumar

    Other way around to cancel an invoice is to issue credit memo, In MIRO click credit memo, then date, then reference to PO, put in the amount then hit post, your invoice will be cancelled by issuing credit memo
    MR8M also issues credit memo, by cancelling the invoice, and so does MIRO when you create credit memo against PO, the invoice is reversed
    Edited by: Afshad Irani on Apr 8, 2010 8:09 AM

  • BAPI for Vendor Invoice and Credit memo - FB60

    Hi
    Iam using BAPI_ACC_DOCUMENT_POST for creating Vendor invoice and Credit memo ..Could you please tell me which fields to be populated on the below structures?
    what will be the value i should use for BAPIACHE09-BUS_ACT...RFBU or RMRP?
    ACCOUNTPAYABLE ( BAPIACAP09)
    ACCOUNTGL(BAPIACGL09)
    CURRENCYAMOUNT( BAPIACCR09)
    Only the fields which needs to be populated on these structures when we do FB60 invoice and credit memo using bapi..
    Thanks in advance
    Govi

    Hi,
    Populate in Document_header : (User name, Comp code, Doc DAte, Doc type, Ref Doc No)
                       Account GL : ItemNo_Acc, GL Accuont, REf Key1, Refkey2, Refkey3, Account Type = 'A', Doc Type, Comp code
                                              Account_number, Cost_center
                       Account Payable: ItemNo_Acc, Vendor_No, Rey_key1, Ref_key2, Ref_key3
                      Currency Amount: Item No_Acc = 2, 1
                                                    Curr = USD, USD
                       Amt_Doccur 
    At last use commit bapi.
    Thanks,
    Krishna

  • How to extract invoice and credit memo total by BP refernce number

    I am very new to the system and need to extract a report that lists all invoices and credit memos from my company for a specific client based on date and/or client po number(BP reference number)  I want to view all the line items by sku for each invoice and cm in one report for qty, dollar amount, issue date and remarks.  I also need the cm to be listed as negative for qty and dollars.  I tried to go through the query wizard but am unsure as to the data tables I need to pull this info from.  Any help would be much appreciated.
    ~Cheers
    Elizabeth

    Hi Elizabeth.......
    Try this..........
    Select T0.DocNum, T0.DocDate, T0.CardName, T1.Dscription, T1.Quantity, T0.DocTotal,
    T1.LineTotal From OINV T0 Inner Join INV1 t1 On T0.DocEntry=T1.DocEntry
    Where T0.DocDate>='[%0]' And T0.DocDate<='[%1]'
    Union All
    Select T0.DocNum, T0.DocDate, T0.CardName, T1.Dscription, T1.Quantity, T0.DocTotal,
    T1.LineTotal From ORIN T0 Inner Join RIN1 t1 On T0.DocEntry=T1.DocEntry
    Where T0.DocDate>='[%0]' And T0.DocDate<='[%1]'
    Regards,
    Rahul
    Edited by: RAHUL MOUNDEKAR on Aug 1, 2011 11:42 PM

  • Reg: A/R Invoice and Credit Memo

    Hi Experts,
    While I'm trying to copy an A/R Invoice to credit memo, which status is open-printed, the 'Copy To' field of A/R Invoice is unavailable. Also it was possible for me to create A/R credit memo for that same A/R Invoice, using 'Copy From' option of Credit Memo....! What may be the reason? I'm using SAP BOne 2005B Version.

    If the Copy from worked and the Copy to did not, it seems like a product issue.
    Check to see if this is the case with all the Invoices and the frequency of its occurance.
    You might perhaps need to check if you are on the latest patch and if not has this issue been reporteed and fixed in any later pataches
    Suda

  • 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.

  • Cancelling Credit memo not reverse the accounting document

    Hello,
    Hello,
    We are facing pecular problem in production system when we Cancel the sales credit memo system is not genarating the reversal accounting document and it's genarating the entry same way credit memo.
    When we do the credit memo it's passing accounting entry in the following way.
    Posting key 11 with customer (credit entry)
    Posting key 40 with revenue (debit entry)
    Posting key 40 with tax (debit entry)
    When we cancel the credit memo system is not passing the reversal entry and once again it's passing the same entry.
    Posting key 11 with customer (credit entry)
    Posting key 40 with revenue (debit entry)
    Posting key 40 with tax (debit entry)
    Could you some body explain me what is the problem
    Regards,
    Satya
    Regards,
    Satya

    Dear senthil
    As I said earlier, once the accounting document is generated, the respective amounts will flow in debit / credit entry of the document flow.
    Once you cancel the billing document, for this cancelled billing, one more accounting document will be generated and with this, the above entries would be vice versa.  That is debit entries get credited and credit entries get debited and you cannot hide this from SAP
    thanks
    G. Lakshmipathi

  • INVOICE or CREDIT MEMO in BAPI  'BAPI_ACC_INVOICE_RECEIPT_POST'

    Hi,
    I use BAPI   'BAPI_ACC_INVOICE_RECEIPT_POST' 
    I search the parameters field in the BAPI ' BAPI_ACC_INVOICE_RECEIPT_POST'  to fill  the type of document   " INVOICE or CREDIT MEMO. "
    best regard

    Hi,
    GOTO T-code VOFA and search for your valid document type,and give the suitable document type.
    Please let me know if you still have any issues.
    Thansk and regards,
    Rajeshwar

  • Check Flag for Double Invoices or Credit Memos

    hello
    can i one please explain me the effect of
    "Check Flag for Double Invoices or Credit Memos"
    please explain with explain
    thanks
    vijay

    as terms itself says that u can post the same invoice twice it helps u in posting the same invoice twice
    suppose u have post invoice 1103#
    now by mistake user trys to enter the sam e invoice to release the payment then system dispalys a messge wrning or error
    but to activate it u need to do the settings in spro-mminvoice---incoming invoice
    and mark the check box in vendor master

Maybe you are looking for

  • Sender Mail Adapter - CC Error

    Hi, My scenario is Mail>XI>Proxy(R/3). The sender mail adapter checks the e-mail box and procces into XI. I'm getting the following error in the CC: "exception caught during processing mail message, java.lang.ArrayIndexOutOfBoundsException 0 > = 0" B

  • Apple no longer allows RESTORE via 3.0.1?!

    i have an event tomorrow. EARLY. i dont want to download the 3.1 ipsw tonight cuz my net connection is SLOW but i need to restore so i can get up and go to WORK in the morning with a _working phone_. i only need to restore because after downloading _

  • IOS 5.0.1 on iPhone 4, will not sync at all

    Hello all, I could not find anyone else having this problem, all the problems I found were with battery life, which knock on wood, I have never had an issue with in my iphone 4 history. My problem is that I updated to 5.0.1 on Friday over the wireles

  • PowerMac G5 playing onto 1080p HDTV

    I wish to view some 30GB HD QuickTime files on a Samsung HL-R6168W tv - I've connected G5 Dual 1.8Ghz DVI output to tv HDMI input, but get no 'mirrored' display on tv. The same cable/plugging set-up does mirror successfully on tv with MacBook Pro 2GH

  • _visible not working on mc

    This is completely doing my nut in... I have 5 movie clips, each on a separate layer with a layer mask above them all - and I want to hide them. They are all mcs, all with instance names that can be found with the target finder, but the _visible prop