Mistake in A/R Credit Memo

Hi,
I've made a mistake in A/R Credit Memo, not with the quantity but is with the unit price.
There's no base document for this credit memo.
Correct unit price = 200
But somehow I changed it to 250...accidentally
Is there anyway that I can adjust the unit price?

Hi
Did you know why it changed ? You need to know why this happened also ? Otherwise you need to go through same problem solving method .
That somehow could be : discount 
Enable your form setting with all values and check if there is any discount or anything that is there which is not supposed to be there .
This kind of issue happens when you change price after you input qty and price .
Well this could be one issue.If this is just one time issue , ignore this
Thank you
bishal
Edited by: Bishal Adhikari on Mar 5, 2009 8:30 AM

Similar Messages

  • Wrong A/P invoice and effect of Credit memo

    If we registered wrong AP invoice there is no way unless issue credit memo. And this process cause other wrong record in system. In SAP Business One there is no option to cancel an invoice but with Credit Memo. This is the only way and it has to be this way because of the law, in Venezuela every invoice that is cancelled has to have a credit memo to support it. First of all I would like to bring your attention to this point that  it is we are talking about the correction of the figure just in financial side ( no impact in inventory) which it may cause because of user mistake when he /she register AP invoice with  putting wrong amount at that time. Based on your solution :   With debit memo not only  the amount in  financial side  will be corrected but also  the quantity of the warehouse will be changed which it is not our case.
    In summary we need to correct the amount of invoice JUST in  financial module with no impact in inventory?
    Thanks in advance

    As you know there is only one way to cancel AP invoice , and it cause decreasing in inventory, so how can I register again AP invoice becasue related Good recipt was closed by AP invoice , and I can not issue AP base on that good receipt.

  • A/R Credit Memo for A/R Reserve Invoice

    Hi guyz,
    I have a question for A/R Credit Memo. Hope anyone can help.
    Steps:
    1. I created an Sales Order, let say "Item A" with quantity 100 pcs.
    2. I copied my Sales Order to A/R Reserve Invoice but i customized the quantity to 70 pcs (Sales Order still open for quantity 30).
    3. I created an A/R Credit Memo, copied from my last A/R Reserve Invoice (from step no. 2), because there is a revision in the unit price. My Credit Memo is exaclty same with my A/R Reserve Invoice.
    4. I created a new A/R Reserve Invoice, copied from my Sales Order (from step no. 1) with quantity 70 pcs again.
    After i do all my activities above, i found that my Sales Order's Status become CLOSED. Whereas, it should be still OPEN because there is outstanding quantity 30 pcs. Why it happened ? I don't find any reasons for this condition.
    Thank you.

    But A/R Credit Memo is to reverse A/R Reserve Invoice / A/R Invoice, right ? So the quantity should be back to 100 pcs.
    Or A/R Credit Memo is just to reverse the Journal ? If it so, i think it is not so helpful in ERP. Because we still need to create New Sales Order if we make a mistake in Invoice.
    Is there any chance that we do not need to make new Sales Order for this situation ?
    Thank you.
    Regards,
    Elsa

  • MIRO credit memo and invoice

    Need some help with the following:
    By mistake posted credit memo in MIRO instead of posting invoice in MIRO. Then reversed the credit memo by going in MR8M. The reversal of credit memo posted an invoice in MIRO.  Now we want to post the MIRO invoice but it doesn't post because the PO does not bring up any quantities.
    If we ignore this and go straight to pay the vendor, the outgoing amount is zero (because there is a debit and credit of the same amount posted to the vendor account due to invoice and credit memo existing of the same amount). This is because of reversing the credit memo whcih generated the invoice and now the amount is zero.
    How do we overcome this. And what is the best practice to reverse a credit memo if entered by mistake instead of choosing invoice in MIRO.

    Hi,
    Check First Purchase order history,
    Goods Received Document,
    And Credit memo if exist first reverse MR8M then need to rise invoice.
    If credit memo allredy reversed if unable to book invoice Book Direct FI invoice through F-43 respective vedor
    Regards

  • Problem while creating credit memo request using BAPI

    HI,
    I am trying to create credit memo request using the BAPI_SALESDOCU_CREATEFROMDATA1..
    I am getting the error as " No customer master data is available for the customer". But the customer exists in the KNA1 table. What is the mistake i hv done.. this s my code..
    REPORT  ZSV_CREDITMEMO_TEST1.
    Data declarations.
    DATA: v_vbeln            LIKE vbak-vbeln.
    DATA: header             LIKE bapisdhead1.
    DATA: headerx            LIKE bapisdhead1x.
    DATA: item               LIKE bapisditem  OCCURS 0 WITH HEADER LINE.
    DATA: itemx              LIKE bapisditemx OCCURS 0 WITH HEADER LINE.
    DATA: partner            LIKE bapipartnr  OCCURS 0 WITH HEADER LINE.
    DATA: return             LIKE bapiret2    OCCURS 0 WITH HEADER LINE.
    DATA: lt_schedules_inx   TYPE STANDARD TABLE OF bapischdlx
                             WITH HEADER LINE.
    DATA: lt_schedules_in    TYPE STANDARD TABLE OF bapischdl
                             WITH HEADER LINE.
    DATA: lt_schedules_ink    TYPE STANDARD TABLE OF bapisdhead1
                             WITH HEADER LINE.
    START-OF-SELECTION.
    Header data
    Sales document type
      header-doc_type = 'G2'. 
      headerx-doc_type = 'X'.
    Sales organization
      header-sales_org = '0001'.
      headerx-sales_org = 'X'.
    Distribution channel
      header-distr_chan  = ''.
      headerx-distr_chan = 'X'.
    Division
      header-division = ''.
      headerx-division = 'X'.
      headerx-updateflag = 'I'.
    *Complete delivery
        header-COMPL_DLV = ''.
        header-COMPL_DLV = 'X'.
    Partner data
    Sold to
      partner-partn_role = 'AG'.
      partner-partn_numb = '0000C10130'.
      APPEND partner.
    Ship to
      partner-partn_role = 'WE'.
      partner-partn_numb = ''.
      APPEND partner.
    ITEM DATA
      itemx-updateflag = 'I'.
    Line item number.
      item-itm_number = '000010'.
      itemx-itm_number = 'X'.
    Material
      item-material = 'C20011'.
      itemx-material = 'X'.
    Plant
      item-plant    = ''.
      itemx-plant   = 'X'.
    Quantity
      item-target_qty = '10000'. 
      itemx-target_qty = 'X'.
    item category
      itemx-ITEM_CATEG = 'X'.
      APPEND item.
      APPEND itemx.
      Fill schedule lines
      lt_schedules_in-itm_number = '000010'.
      lt_schedules_in-sched_line = '0001'.
      lt_schedules_in-req_qty    = '10000'.
      APPEND lt_schedules_in.
      Fill schedule line flags
      lt_schedules_inx-itm_number  = '000010'.
      lt_schedules_inx-sched_line  = '0001'.
      lt_schedules_inx-updateflag  = 'X'.
      lt_schedules_inx-req_qty     = 'X'.
      APPEND lt_schedules_inx.
    Call the BAPI to create the sales order.
      CALL FUNCTION 'BAPI_SALESDOCU_CREATEFROMDATA1'
           EXPORTING
                sales_header_in     = header
                sales_header_inx    = headerx
           IMPORTING
                salesdocument_ex    = v_vbeln
           TABLES
                return              = return
                sales_items_in      = item
                sales_items_inx     = itemx
                sales_schedules_in  = lt_schedules_in
                sales_schedules_inx = lt_schedules_inx
                sales_partners      = partner.
    Check the return table.
      LOOP AT return WHERE type = 'E' OR type = 'A'.
        EXIT.
      ENDLOOP.
      IF sy-subrc = 0.
        WRITE: / 'Error in creating document'.
      ELSE.
    Commit the work.
        COMMIT WORK AND WAIT.
        WRITE: / 'Document ', v_vbeln, ' created'.
      ENDIF.
    can anyone tell what the error is.?

    Hi
    please look at code below code this succefully creating credit memo may some help to you
    header-doc_type = 'ZS4'.
        PERFORM get_plant.
        headerx-doc_type    = 'X'.
        header-sales_org    = wa_temp1-vkorg.
        headerx-sales_org   = 'X'.
        header-purch_no     = wa_temp1-bstnk.
        header-distr_chan   = wa_temp1-vtweg.
        headerx-distr_chan  = 'X'.
        header-division     = wa_temp1-spart.
        header-purch_no_s   = wa_temp1-bstnk.
        headerx-division    = 'X'.
        wa_partner-partn_role = 'AG'.
        wa_partner-partn_numb = wa_temp1-kunnr.
        APPEND wa_partner TO it_partner.
        wa_partner-partn_role = 'WE'.
        wa_partner-partn_numb = wa_temp1-kunnr.
        APPEND wa_partner TO it_partner.
        CLEAR: wa_partner.
        LOOP AT lt_temp2 INTO wa_temp2 WHERE kunnr = wa_temp1-kunnr.
          "AND matnr = wa_temp1-matnr.
    *wa_item-itm_number = wa_temp2-posnr .
          wa_item-material   = wa_temp2-matnr.
          wa_item-plant      = wa_temp2-werks.
          wa_item-req_qty    = wa_temp2-fkimg * 1000.
          wa_item-target_qty = wa_temp2-fkimg * 1000.
          APPEND wa_item TO it_item.
        ENDLOOP.
        CALL FUNCTION 'BAPI_SALESORDER_CREATEFROMDAT1'
          EXPORTING
            order_header_in       = header
    *   WITHOUT_COMMIT            = ' '
    *   CONVERT_PARVW_AUART       = ' '
         IMPORTING
           salesdocument          = v_vbeln
    *   SOLD_TO_PARTY             =
    *   SHIP_TO_PARTY             =
    *   BILLING_PARTY             =
           return                 = return
          TABLES
           order_items_in         = it_item
           order_partners         = it_partner.
        IF v_vbeln <> space.
          wa_vbeln-vbeln = v_vbeln.
          APPEND wa_vbeln TO lt_vbeln.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
            EXPORTING
              wait = 'X'.
          HIDE wa_vbeln-vbeln.
          CLEAR: wa_partner,header,v_vbeln, wa_temp2.
          REFRESH: it_partner,it_item.
        ELSE.
    *    LOOP AT return .
          it_error-srno = idx.
          it_error-err_msg = return-message.
          APPEND it_error.
    *    ENDLOOP.
        ENDIF.
        idx = idx + 1.
      ENDLOOP.
    Regards

  • Credit memo request to correct Sales order after customer payment

    Hello all,
    Could you please give me any suggetion on this issue:
    We uploded sales orders  from legacy system into sap and create invoice but we made a mistake, we didn't take into account a discount in price conditions.
    The Customer payment is correct and also uploaded from legacy system.
    I'm required to correct the difference by doing a Credit memo request and credit memo with reference to sales sorder, so my questions :
    Do I create credit memo request with ref. to SO for all items, quantities and price or just for a discount amount (what i think) ?
    Any input will be appreciated.
    Thanks.

    Hello Farouk,
    If you know the discounted amount for each account then as per my view you directly can create  credit note from the FI side so manage the differences.
    Please wait for more suggestion from FORUM.
    Regards
    AG.

  • Importing AP Credit memo  Referenced to an Invoice with DTW

    Hi everyone, im trying to import thru DTW an AP Credit Memo applied to a Service AP Invoice but i keep getting "Internal Error [-2010] ocurred Application-Defined or Object-Defined error 65171".
    The AP invoice has Doctotal $ 99,732.00 but the linetotal was 5859.05 by mistake so there is a discount percentage of 1367.40, what fields are mandatory in the Credit memo template?

    Hi,
    The easiest way to do this by copying from the AP Invoice if you have only few invoice need to be Credited. If you need DTW, only the BaseEntry, BaseType and Base line are required for line file.
    Thanks,
    Gordon

  • 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

  • Clearing customer credit memo

    Hi All,
    I have an issue regarding customer open item. We have the following documents created.
    1) Invoice created to the Customer in one company code
    2) Payment has been received by the customer in one company code, and the invoice and the payment got cleared by the lockbox processing in the same company code, so the accounting document for the invoice is in u201CClearedu201D Status.
    3) Now later on they came to know that this has to be posted in another company code, so they tried to cancel this using a credit memo against the invoice created in Step 1
    But the question here is, the accounting document created for this company code is in u201CNot clearedu201D status. As the invoice is cleared by the payment, how can I clear this credit memo? Because this is an internal mistake, actually customer paid what he has to pay. But here they created the invoice in one company instead of another company code. Please help
    Thanks
    Uday

    Dear Uday,
    you just tell to account department to post this credit memo to account. It will resolved.
    Sandip

  • Depo sales returns --Credit memo issue

    1.Sales Order (Return Order)
    2. Delivery (Return Delive PGR)
    3.Incoming Excise Invoice using Transaction J1IG with referenc to return Material Document then RG23D  will update.
    4. Credit memo -- here only excise values are not copying from return sales order.
    can any one give the inputs where i am doing mistake i have check the VTFA copy control also

    Hi
    Customer receives the goods in his factory premises and returns back to us due to quality problem. Now in this case user has to create the return order to credit memo.
    Maintain a vendor
    Maintain vendor as u201CCustomer Returnu201D in XK01 for the company code, purchase organization and account group combination
    Maintain finished material as input material
    Transaction: J1ID
    Select radio button namely CENVAT Determination
    Maintain plant, input material and output material combination. The input as well as output material will be same ,
    Now go to transaction J1IEX for capturing the excise invoice sent by customer with returned material
    Select Capture excise invoice without Purchase order reference
    Enter Customeru2019s excise invoice number, excise group, document date, Vendor (Customer Return) and posting date as shown below
    Now at item details, maintain material code, material type u2013 Raw Material, plant, quantity, unit of measure, duty rates and duty values, excise base etc.

  • Rebate Credit Memo - Reversal

    Hi, can anyone advise is there a another way to reverse a rebate credit memo other than cancellation?  Reason is bcos user found this mistake after monthend and their practise is not to perform cancellation after monthend.  Is there a correction document that can be used to do the reversal?
    Thanks
    PP

    Hi Richard
    Credit memo requests and credit memos must be closed before final settlement can be done. To carry out final settlement of a rebate agreement:
    In the Change rebate agreement screen, enter the number of the rebate agreement that you want to settle or determine the number by using the matchcodes.
    Press ENTER .
    Depending on how the rebate agreement types have been configured for your system, you may need to manually release an agreement before you can process it for settlement. To do this, enter the appropriate value in the Agreement Status field.
    You can carry out final settlement in two ways:
    If you need to change the credit memo request select Rebate payments > Final settlement > Automatically.
    The system confirms that a credit memo request has been created.
    To make changes to the credit memo request, select Rebate payments > Credit Memo Request > Change.
    To cancel a credit memo request, select Rebate payments > Credit Memo Request > Reset.
    If you would just like to make quick changes to the final settlement amounts select Rebate payments > Final Settlement > Using Payment Screen.
    The system shows the final settlement amount in the field Amt. to be paid next to the condition record.
    The system will not limit any changes you make.
    Save the rebate agreement.
    After the rebate agreement has been saved, it is only possible to change or delete the credit memo request by calling it up as a sales document (Menu path: Logistics > Sales, then Order > Change).
    You could also visit this link for more about Settling Rebate Agreements
    http://help.sap.com/saphelp_470/helpdata/en/dd/5612d8545a11d1a7020000e829fd11/frameset.htm
    I am sure this would give you and idea to head start.
    Reward only if it really helps.
    Kalpesh

  • Credit Memo Generating even Billing Block

    Dear Friends
    We have created one Credit Memo Request as Like "CR".  Sales document Type. and Credit Memo As Like "G2".
    after that we created all copy control as like standard.
    we are facing problem that when we create Credit Memo with reference to Credit Memo Request it  generating even there is Billing Block still not released.
    but when we are using standard CR and G2. We have to release Billing Block then only we are able to generate Credit Memo.
    Please give solutions where is our mistake.
    Regards
    Arun

    hi,
    this is the standard business process
    the credit memo should not created until the higher authority approve the credit request,because the money goes out of the company, so some higher authority has to approve.
    the settings is maintained in VOV8 (CR)-billing - billing block- 08 (check credit memo)
    regards
    senya

  • Error in posting credit memo

    Hey,
    I posted a credit memo in transaction FB65 but made a mistake by not indicating a check mark in 'calculate tax' box.
    I checked transaction FB02 to correct this but there is no option other than reversing the posting.
    What is the best way to correct this?
    Could someone give the steps involved to correct this mistake?
    Thanks

    Hello,
    You must first reverse the document in error and then capture the document correctly.
    In SAP system, this is done to provide an audit of the correction.
    Hope this clarifies your doubt.
    Thank you

  • Credit memo req- reson for rejection

    Hi,
    I have created one Cred memo req against one invoice( order related invoice). in that iam having 2 line items.
    by mistake for first line item i put reason for rejction in cred memo req then i created a cred memo.
    now the first line item net value is showing as '0' in the creditmemo.
    i have removed the reason for rejection in the credit memo req and saved it. now i want the first line item netprice into the cred memo
    so how can i do it?
    chees
    sumith

    Hello,
    Cancel the credit memo VF11, remove the Reason for rejection from the credit memo request.
    Now you create the credit memo from the credit memo request.
    Prase

  • Issue with Invoice, credit memo

    Hi Guru's,
    A sales invoice was created in the for 100,000 and the value fields in COPA that were hit were:-
    Billed quantity
    phl volume
    Quantity 01
    sales quantity
    Non-reporting WXX1
    Other sale ded
    other sale ded 2
    Revenue
    Standard cogs 5
    Standard price
    Customer service needed to pass credit but a the credit memo was created for the full amount 100,000 of the invoice by mistake.
    The credit memo hit the following value fields in COPA
    Non-reporting WXX1
    Other sale ded
    other sale ded 2
    Revenue
    To correct the mistake of the credit memo a debit memo was created (but with the wrong amount 50,000) and it also hit the same value fields as the credit memo.
    To correct this my thought is reverse the debit memo with the wrong amounts and recreate the debit memo with the full amount bringing the invoice back to the full amount. Then re-create the credit memo which I hope then will hit COGS ? fixing and the showing the correct values in COPA? Or is there a better way to go around this issue.
    Please advice.
    Best Regards,
    Yasmeen

    Thanks Kiran for response.
    Let me clear the question.
    GR posting detail.
    Reference no - 12345, doc date 06/21/2008, posting date 06/21/2008, amount 1, USD, CC-100.
    Can I post the invoice against the same detail using MRHR.
    (I'm not sure what extactly MRHR verify for dupliacte entry because, I can post the IR if the I'm changing the docu date from 06/21/2008 to any other date.)
    I'm able to simulate the IR without any error while using MR01.
    Regards,
    Aditya

Maybe you are looking for