Credit note not writing internal recon

Hi all,
Normally when a AR CN is created (based on AR IN) there is also a Internal Reconciliation created similtaneously. I have now come accross a transaction where the the CN was based on the IN, but no Internal Reconciliation was written. Because of this the applied amount on the CN is not accurate.
Ver. 2007 PL 46
Any ideas on how to fix it?
Regards,
Werner

Hi Werner,
Was this a fully based Credit Note or partial?
Is the balance due on the credit note document equal to that of the corresponding journal entry?
Also check the following notes:
1258628 - Credit Memo is 'open' but is fully based on Invoice
1301233 - Default value of the total field in based Credit document
1307388 - Incorrect status of Invoice after Copy To Credit Memo
If none of the notes answers let us know.
Hope it helps,
Jesper

Similar Messages

  • Bapi for VF01 of internal credit note IG

    Hi,
    i'm looking for a bapi/function module that does the same thing as transaction VF01 with :
    billing type : IG (internal credit note)
    document from : an invoice.
    I know the the bapi's for creating an billing doc from a sales order, but can ik use this one also for the creation of a credit note from an invoice.
    regards,
    Hans

    Check this sample code of creating the billing document using the bapi BAPI_BILLINGDOC_CREATEMULTIPLE.
    DATA: t_success TYPE STANDARD TABLE OF bapivbrksuccess WITH HEADER LINE.
    DATA: t_billing TYPE STANDARD TABLE OF bapivbrk WITH HEADER LINE.
    DATA: t_return TYPE STANDARD TABLE OF bapireturn1 WITH HEADER LINE.
    t_billing-salesorg = vbak-vkorg.
    t_billing-DISTR_CHAN = vbak-vtweg.
    t_billing-DIVISION = vbak-spart.
    t_billing-DOC_TYPE = vbak-auart.
    t_billing-ref_doc = vbak-vbeln.
    t_billing-ref_item = vbap-posnr.
    t_billing-doc_number = vbak-vbeln.
    t_billing-ITM_NUMBER = vbap-posnr.
    t_billing-ordbilltyp = 'BILLING TYPE'.
    t_billing-price_date = sy-datum.
    t_billing-ref_doc_ca = vbak-vbtyp.
    t_billing-sold_to = vbak-kunnr.
    t_billing-material = vbap-matnr.
    t_billing-plant = vbap-werks.
    APPEND t_billing.
    CALL FUNCTION 'BAPI_BILLINGDOC_CREATEMULTIPLE'
    TABLES
    billingdatain = t_billing
    return = t_return
    success = t_success.
    commit work.

  • Credit note comparison report

    hi friends , iam new sap/reports got a assigment
        credit note compare report i have to display
        mblnr,matnr.charg,menge ,vbeln,fkdat,matnr,charg,batch.
        till menge its from mseg and rest from vbrk and vbrp.
        to display all records for line itmes also .
        i selected all the fields from mseg one itab and distinct vbeln in one itab
        and all the vrecords from vbrp.
        my report had now is verrrrrrrrrrrrrry slow .
        pls help me with code.
    SELECT   mkpf~bldat
               mseg~werks
               mseg~mblnr
               mseg~matnr
               mseg~charg
               mseg~menge
               INTO CORRESPONDING FIELDS OF TABLE imseg
               FROM mkpf
               INNER JOIN mseg
               ON  msegmblnr = mkpfmblnr
                   WHERE mkpf~bldat IN s_bldat
                   AND   mseg~werks IN s_werks
                   AND   mseg~mblnr IN s_mblnr
                   AND   mseg~bwart = '972'.
      SELECT DISTINCT vbeln
                      fkdat
                      FROM vbrk INTO CORRESPONDING FIELDS OF TABLE icnot.
      SELECT vbrp~vbeln
             vbrp~matnr
             vbrp~charg
             vbrp~fkimg
             FROM vbrp INTO TABLE icnq.
    LOOP AT icnot.
        CLEAR icno.
        icno-vbeln = icnot-vbeln.
        icno-fkdat = icnot-fkdat.
        READ TABLE icnq WITH KEY vbeln = icno-vbeln.
        IF sy-subrc = 0.
          icno-matnr = icnq-matnr.
          icno-charg = icnq-charg.
          icno-fkimg = icnq-fkimg.
        ENDIF. "if sy-subrc
        APPEND icno.
      ENDLOOP." LOOP AT icnot

    Hi Farukh,
    Check the time consumed by each query first in debug mode. 
    If you find that the first one is consume most of processing time (which i assume to be) then try to use exsitng <b>view on both "WB2_V_MKPF_MSEG2"</b> instead of writing your own inner join on MSEG and MKPF .
    Also try to avoid using the clause INTO CORRESPONDING FIELDS OF internal table.
    these two shall enhance the performance considerably,
    Lakshmi

  • SQL Query for full paid invoices and payed out credit notes

    Hi alltogether,
    I have some problems with a sql query.
    I want to export all closed (full paid) invoices and credit notes in a table with the paid date.
    The problem is that I have several internal reconciliations for one invoice or credit note.
    So with my current query I get all these dates in the result but only for invoices, not for credit notes.
    I only need the last internal reconciliation date as payment date for all invoices and credit notes where the open amount is 0.
    In SAP B1 the finance team has service invoices and credit notes imported out of an ERP system.
    These documents are marked with an 'Y" in the coloumn "U_I_Imported" in the table "OINV" or "ORIN".
    SELECT
    OINV.DocTotal - OINV.PaidToDate as Offen, OINV.NumAtCard, OINV.U_I_Imported, ORCT.DocDate as 'Zahlungsdatum'
    SELECT
    OINV.DocTotal - OINV.PaidToDate as Offen, OINV.NumAtCard, OINV.U_I_Imported, ORCT.DocDate as 'Zahlungsdatum'
    FROM
    OJDT inner join
    ORCT on OJDT.BaseRef = ORCT.DocNum inner join
    RCT2 on ORCT.DocNum = RCT2.DocNum inner join
    OINV on RCT2.BaseAbs = OINV.DocEntry
    where
    OINV.DocTotal - OINV.PaidToDate = 0 and  OINV.U_I_Imported = 'Y'
    group by
    OINV.NumatCard, OINV.DocTotal - OINV.PaidToDate, OINV.U_I_Imported, ORCT.DocDate
    order by
    ORCT.DocDate
    I hope you can help me.
    Kind regards,
    Max

    The solution for my problem:
    select
    OINV.DocTotal - OINV.PaidToDate as 'Offen', OINV.CardCode as 'Kundennummer', OINV.NumAtCard as 'DIAMOD Rechnungsnummer', OINV.DocNum as 'Dokumentennummer',  max(ORCT.DocDate) as 'Zahlungsdatum', case when ORCT.DocCurr = (select MainCurncy from OADM) then RCT2.DcntSum else RCT2.DcntSumFC end as 'SkontoRechnungswährung',
        RCT2.DcntSum as 'SkontoFirmenwährung'
    from
        JDT1 inner join
        OJDT on JDT1.TransId = OJDT.TransId inner join
        ORCT on OJDT.BaseRef = ORCT.DocNum inner join
        RCT2 on ORCT.DocNum = RCT2.DocNum inner join
        OINV on RCT2.BaseAbs = OINV.DocEntry
    where
    JDT1.TransType in ('24') and
    OINV.U_I_Imported = 'Y' and
    OINV.DocTotal - OINV.PaidToDate = 0
    group by
    OINV.NumAtCard, OINV.DocNum, OINV.CardCode, OINV.DocTotal - OINV.PaidToDate, ORCT.DocCurr, RCT2.DcntSum, RCT2.DcntSumFC
    union all
    select
    OINV.DocTotal - OINV.PaidToDate as Offen, OINV.CardCode as 'Kundennummer', OINV.NumAtCard as 'DIAMOD Rechnungsnummer', OINV.DocNum as 'Dokumentennummer',  max(OITR.ReconDate) as 'Zahlungsdatum',
        0.0 as 'SkontoRechnungswährung',
        0.0 as 'SkontoFirmenwährung'
    from
    OITR inner join
    ITR1 on OITR.ReconNum = ITR1.ReconNum inner join
    OINV on ITR1.SrcObjAbs = OINV.DocEntry
    where
    OINV.DocTotal - OINV.PaidToDate = 0 and ITR1.SrcObjTyp = 13 and OINV.U_I_Imported = 'Y'
    group by
    OINV.NumatCard, OINV.DocNum, OINV.CardCode, OINV.DocTotal - OINV.PaidToDate
    union all
    select
    ORIN.DocTotal - ORIN.PaidToDate as Offen, ORIN.CardCode as 'Kundennummer', ORIN.NumAtCard as 'DIAMOD Rechnungsnummer', ORIN.DocNum as 'Dokumentennummer',  max(OITR.ReconDate) as 'Zahlungsdatum',
        0.0 as 'SkontoRechnungswährung',
        0.0 as 'SkontoFirmenwährung'
    from
    OITR inner join
    ITR1 on OITR.ReconNum = ITR1.ReconNum inner join
    ORIN on ITR1.SrcObjAbs = ORIN.DocEntry
    where
    ORIN.DocTotal - ORIN.PaidToDate = 0 and ITR1.SrcObjTyp = 14 and ORIN.U_I_Imported = 'Y'
    group by
    ORIN.NumatCard, ORIN.DocNum, ORIN.CardCode, ORIN.DocTotal - ORIN.PaidToDate

  • Error while reversing a credit note

    We are working in SAP 4.5B. When we are trying to reverse the credit note ( SD-L document ) using MR8M, we are getting error ' System error : error in routine MRM_DRSEG_FILL(SAPLMRMH). This credit note has subsequent credit/debit indicator on. Please let us know what exactly is the cause of the problem & what can be the remedy.

    Hi,
    Kalii's reply would apply if it was a Service credit; otherwise you will want to do an invoice to offset any inventory. Then do internal reconciliation to link the credit & invoice.
    Heather

  • "Cannot draw document with negative rows to credit note"

    Hi Experts,
    A General query :
    I create an AR invoice with two items one with qty 1 and the other with qty (-ve 1)  on posting this invoice the second item / row with negative qty gets closed automatically. Now, I require to post a AR Credit note to this invoice i get the following status error message "cannot draw document with negative rows to AR credit note" when copying to a AR Credit note and it is the same the other way when copying from
    How is it possible to create a  AR credit note to the above scenario. Any sugestions
    V.  2007A SP01 PL05
    Regards,
    Rakesh N

    Hi Rakesh N,
    version 8.8 supports fully the scenario you outline & I would recommend you upgrade to benefit from the new functionalities introduced in that version. Please have a look at the [8.8 landing page|https://service.sap.com/~sapidb/011000358700000199032009].
    Using stand-alone documents & internally reconciling in the lower versions works beautifully on the accounting side yet impacts also the stock side, where corrections in stock value & item cost must be carried out manually.
    All the best,
    Kerstin

  • How do I Credit Note negative amount line item in Invoice

    Hi Experts,
    I have an AP Invoices that have a negative line item total.
    Now that I realize there is something wrong with this AP Invoice, I will like to CN it. But I was stopped by SAP, because I cannot CN a negative amount line item.
    Can anyone advice me how can I Credit Note (in any sense) this negative line item?
    Much Thanks!
    Warmest Regards,
    Chinho

    Hi Chinho,
    I believe this functionality is to be made available in version 8.8. The SAP workaround for 2007 is:
    To cancel an invoice with negative line, please use the workaround as
    per below:
    1. For the rows with the positive Row Total, create an "independent"
    Credit Memo (not based on an Invoice).
    2. For the rows with the negative Row Total, create another Invoice
    with a positive Row Total opposite to the original negative Row,
    and reconcile between the two rows manually via Internal
    Reconciliations. (This option is available in Banking module in
    2005 version and in Business Partner module in 2007 version.)

  • Document link broken when only coping freight to AR credit note

    Scenario
    1.  Create an AR invoice (with item lines and header freight value of $10)
    2.  Open AR invoice and select 'copy to AR Credit note'. NOTE:  Base document link in active in the window. 
    3.  Delete right click each line and select 'delete line'.   All lines have been deleted from the AR Credit note.  NOTE:  when the last line is been deleted the base document link changes to inactive.  NOTE:  the header freight value of $10 is still active in the credit note.
    Can you please advise why this is happening?  Should this be happening? 2007A SP01 PL 08
    Thanks in advanced Lisa

    Hi!
    Even you can do that by booking a standalone invoice and Reconcilling the partial amount with the original invoice. Use BP Internal Reconcillation Window - Amount to Reconcile field

  • Error code (invalid account code - Message 173-9) Create Credit Note

    When you register a credit note in parts, the system produces the following error message:
    Invalid account code - Message 173-9
    This error only occurs when attempting to fully register on the bill pending items
    We have SAP Business One ver 8.81 PL08.
    Thanks a lot for your information,

    Thanks Jitin
    I do not see any fixes for that particular issue on PL 49 but Iwill test it on a newer patch level.
    I have run the query in note 1090457. "Reconciliation difference must be zero before reconciling [Message 3821-8]"
    Although the error message that the note refers to is different than the error message I am getting the query does return several transactions. When I omit the transactions detailed by the query when reconciling the account the internal reconcilliation works.
    Strange....
    Best regards
    Erika

  • Inter-company sales credit note cost

    Dear SD Consultants,
    I have scenario of Cross Company sales, in itner-company invoice we have different pricing procedure in which we charge 2nd company with VPRS cost, now there is one doc. for return sales we have to give credit note for this return that is internal credit memo, but issue is that at the time of intercompany invoice system take VPRS Cost of that time now when we create internal credit memo cost is change and I wnat to post internal credit memo with similar amount of inter-company invoice.
    please advice in this regard. for e.g. intercompany invoice create with 100AED and at the time of internal credit memo of same material is 120, system create IG with 120, I want to create with 100 AED.
    Thanx in Advance.
    Danish Alam
    Edited by: Danish  Alam on May 13, 2009 10:19 AM

    Dear Danish
    For creation of credit memo u must have given the reference of invoice or order .
    Check for your copy control settings from invoice reference to credit memo request in VTAF.
    Go to Item details select your item category and Keep pricing type as D .
    I hope this will solve your problem.
    Regards
    Mandar

  • LSMW Direct Input Inspection Plan Not Writing Inspection Char File

    Hello Experts,
       I am using Direct Input Program RCPTRA01 to Load Inspection Plan.
    Created 3 structures - Inpection Plan/Operations/Inspection Characteristics one below the other in that order.
    We have a internal numbering system for assigning Group to Inspection Plan.
    I defined GROUPID column in Maintain Source Fields Inspection Plan/Operations/Inspections characteristics structures and set "Identifying Field Content" as 1.
    When i read data - program is reading inspection plan and operations. But it is not writing Inspection Plan file.
    What am i missing. Spent quite a bit of time trying to figure out what i am missing.
    Any help is appreciated.
    Thanks in advance
    Thanks

    Hi,
    I have exactly followed the same thread.
    1. I have actually maintained 3 files, but when reading it takes only the header file.
    2. When Creating input session I an getting a error,
    No profile with entry tool for task list /  3 in session INSPLAN
    Regards
    Subbu.

  • Does iphoto's ibook not ship internationally? I am currently in Hong Kong and have just put a book together that I would like to buy.

    Does iphoto's ibook not ship internationally? I am currently in Hong Kong and have just put a book together that I would like to buy. ibook not letting me put in international address and shipping info seems to suggest US only. I find this hard to believe. The Apple Store in Hong Kong is the size of Manhattan. Well almost!

    Don't forget (from  Payment & Pricing - Apple Store (HongKong)):
    Credit cards accepted
    Apple is unable to accept credit, debit, or check associated with a billing address outside of Hong Kong.
    Not only do you need to select the Hong Kong Print Store but use a credit card with a Hong Kong billing address.
    Happy Holidays

  • Free goods in lieu of Rebate Credit Note

    Hi Gurus,
    Can we have the option of Free Goods Settlement instead of Rebate Credit Note at the time of Rebate Settlement.
    Your reply is highly appreciated.
    Sadanandam Kasarla

    Hi Sadanandam kasarla
    Generally if you want to  issue free goods then you need to create a sales order and you have to deliver the stock from the storage location also. The inventory level will come down
    But if you are doing the rebate settlement. then you will be using a Dummy material to create the sales order and then  you will be doing billing . Finally only the rebate value will be settled to the customer .
    Regards
    Srinath

  • Credit Note in case of return scenario

    Hi,
    In case of return scenario, credit note is issued with reference to return order or return delivery?
    I am unable to see the copy control setting in IDES for RE(Return Order) to G2(Credit Memo).
    Could any one please let me know the setting for the same (Header and item).
    Regards
    Suman

    Hi Suman,
                 As for the standard in the IDES,the Credit memo will be created with reference to the Creditmemeo request because of that RE to G2 copy control setting may not avail.
    You copy the settings same as Creditmemo request(CR) to Credit memo (G2), You just change the name CR in to RE it will work.
    -->Other wise you can use Credit for returns RE document type to create credit memo for return order RE for this copy control avail in the IDES t.code VTFA.
    I hope it will help you
    Regards,
    Murali.
    Edited by: Murali Mohan.T on Feb 27, 2008 11:07 AM

  • HT5622 how do i use my apple id credit not my credit card

    how do i use my apple id credit not my credit card as my apple id has money on it but it keeps trying to use my credit card instead of the credit thats on it

    Some Purchases require a Credit Card.
    If necessary... Contact iTunes Customer Service and request assistance
    Use this Link  >  Apple  Support  iTunes Store  Contact

Maybe you are looking for

  • ITunes updated to 7.3.1 and now won't open

    I started iTunes and it automatically updated. Now I get a message that OSX 10.4.7 is required to use iTunes. This computer will only go to 10.4.3. I tried downloading the system updaters, but they will not install because the 1GHz processor isn't en

  • End of communication channel on creating Materialized view

    Dear All, I've Oracle Enterprise Edition(ver 9.0.1.1.1) running on Windows Xp Home Edition, When I run the following statement to create a materialized view I got the famous error ORA-03113: end-of-file on communication channel.And the strange thing

  • Cannot create a new site

    I am not able to create a new site. I have tried going to the site menu and all it gives me when I try to manage sites is an untitled site in the list. When I open the start menu to create a new site, this message pops up: "While executing the follow

  • Difference between different invokeLater() methods

    What is actually the difference between: SwingUtilities.invokeLater() EventQueue.invokeLater() Are there other classes that implements the invokeLater() method?

  • HT201365 How to turn of pin code after lost mode was turned off

    I lost iPhone turned on lost mode found iPhone turned off lost mode and now how do I take of code pin so that I don't have it on the phone