Problem in credit memo request

Dear Guru's,
I have created a credit memo request with refrence to a standard invoice, in which they are 7 line items and there is manual excise.
after i have saved and i went to display mode and selected header conditions, in that the taxes were changed .
Item wise conditions are correct,but in header conditions it is showing wrong figure.How can it be possible.
I have checked the copying controls ...in that it is mentioned as D in pricing type(VTAF-standard bill to credit memo request).
Pls help me, wat are the settings should i change.
Rgds,
cherukuri

hi rao,
first try to reset the cleared items by using FBRA and then try to reverse the document. Also check check if the reversal date is still open for posting or not.
Pl get back with the status.
Thanks
Sadhu Kishore

Similar Messages

  • Credit memo request problem using

    Dear All,
    I am creating credit memo request using SD_SALESDOCUMENT_CREATE, I am facing problems in this
    1> Quatity field is empty in the SO(TARGET_QTY)
    2> The credit memo is always being created with negative value, which should not be the case
    Note: I am passing manual condition type in condition type where calculation type is B(fixed value).
    Can anyone suggest me why is it creating Credit memo request with (-)ve value always.
    Thanks and regards,
    Kapil Shiavaji Sonavane

    Naren,
    1> I have already used that, see the following code.
    for SALES_ITEMS_INX
         LOOP AT T_BAPISDITM1.
            T_BAPISDITMX-ITM_NUMBER = T_BAPISDITM1-ITM_NUMBER.
           T_BAPISDITMX-UPDATEFLAG = 'X'.          
            T_BAPISDITMX-TARGET_QTY = 'X'.          
            T_BAPISDITMX-TARGET_QU  = 'X'. 
            APPEND T_BAPISDITMX.               
          ENDLOOP.
    But still Quantity is blank.
    2> Created Credit memo request is coming in (-)ve value this is major problem for me.

  • Credit memo request creation problem

    Hello Guys,
      I try creating credit  memo request passing all related parameters in FM 'SD_SALESDOCUMENT_CREATE'.
    I get the error 'Document 9992222 doesn't have document category  but  '.
    Message is V2 068 .  It  space before and after but.
    I have passed the document category as 'M', in the header data.
    Please reply, if you know the problem or want more details from me.
    Thanks and Best Regards!
    Sandip

    Hi Guys,
    The Ref_doc_cat was not filled correctly in the BAPI. Hence the error.
    Its working now.
    Thanks!
    Sandip

  • Problem while doing invoice for Credit memo request

    Hi all
    I very well known that Out boud Delivery is not needed for Credit memo request but after saving the CMR and when i raise the Credit Memo (VF01) system is showing a error message saying "PGI not done for Outbound Delivery 30047402"
    In CMR document type i have set the order related billing and i have removed the billing block also
    I have raised the CMR based on Invoice
    Kindly help me in this regard
    Regards
    BMS

    Hi Raj Aryan Malhotra, Thanks for ur reply
    The setting which u said are already there
    The second one that is, change the copying requirement of header to 11. i did this but this time the message was different "The document is not relevant for billing" . After checking the log i could the follwoing info
    Client                                                   240
    Group Number
    Sales Document Number
    Item Number of the SD Document         000000
    Schedule Line Number                         0016
    Counter in Control Tables                     00
    Message Identification                         VF
    System Message Number                    016
    Output Type                                        I
    Message Variable 01
    Message Variable 02
    Message Variable 03
    Message Variable 04
    Group Type                                         F
    Kindly help me to resolve this also
    Regards
    BMS

  • 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 in VA01

    Dear,
    Process : Actually , I am going to create CR memo request in VA01 without reference of Invoice . So ,in this case ,I have got one Issue as Z error .Please help me in this issue ,how to solve step be step .
    Note : 1. Actually , I am SD,MM and PS Consultant not ABAP consultant .I got this issue yesterday but still fight with system with debugging level .
    2. ABAP Consultant not available thats why taking charges to solve this issue .
    Advance Thanks ,
    Naren

    First of all thanks for both ,
    Coming to the point ,I went to SE91 and gave the Message Class as ZVIV and clicked on execute .there I have seen 182 Message and I unticked  the Self Explanatory and saved . Now again ,I raised new Credit Memo Request in VA01 and I didnt get before error but I got another erro as " Red round  Mark" with Save  (Control + Save ) .
    The Red Round Mark doesn't stand on screen to capture or else to see the Problem .That is coming and going immediately .
    Note : Please help one this Issue .
    Thanks,
    Naren

  • Creating credit memo request - V1 498 / missing order quantity

    Hi Experts,
    could any of You pls help me with a credit memo creation issue?
    I credit memo needed to be created based on invoice, so configuration  and copy control is done as usual, but I have a failure during CR order creation referring to an invoice F2.
    I got an error message: V1 498 - Credit  already exist for item... - and no qty is transferred to new document
    I have gone thought the threads on Forum, but none of the suggested solution was appropriate to solve the issue:
    - the document flow is updated in copy control ,
    - I can no remove the schedule line flag at VOV7 - the order qty will be missed but target qty is used, and end up incompletition (VU 019 error messge), so billing is faile
    - completition control set as B at VOV7,
    Still have the problem
    Could any of You pls help me - answers will be appreciated.

    V1 498 - Credit already exist for item...
    What the above message means is that lines items have already been used as reference for the creation of credit memo request(s).
    Create a new sales order, delivery and billing document. Then create credit memo request with reference to this new billing document and test.
    In VTAF copy control, at item level, field "Pos./neg. quantity" dictates how the quantity in the source document is affected by copy control.
    PS - I tried to create credit memo with reference to billing document (F2), there were no issues there. Therefore I am taking that the issue is with credit memo request (copied with ref to billing document F2)

  • Message V1478 - Credit memo request with reference to an invoice

    Dear all,
    Creating a credit memo request with reference to an invoice, I get the following message "Material in item 000060 does not exist in plant/storage location".
    Of course, this material exists in the plant and the storage location, as we could create the invoice without any problem.
    Any idea?
    Best regards,
    Iné

    Hello
    Generally, these errors may appear due to:
    - The plant is marked for deletion.
    - The plant should be copied from the referenced item.
    So, I would suggest you to
    - Check copying control for Invoice to Credit memo request, particularly, item.
    - Try and create Credit Memo Request with reference to sales order.
    - Or if you want rectify a invoice, then use invoice coreection request.
    Thanks & Regards
    JP

  • GL account missing in credit memo request

    Hello every one,
    I am trying to creat credit memo request with ref to credit contract invoice but receiving a Document Incomplete message(GL account missing). Iu2019ve clicked on the Edit button and gone back and reviewed everything but I still canu2019t complete the process as I still keep getting the Document Incomplete message.  Can you please advise me.
    Thanks
    Dev

    Dear Sachindev,
    In general, Problem: G/L missing, is assosiated with Settings, maintained in T. Code: VKOA.
    Just Check
    Best Regards,
    Amit
    Dear Sachindev,
    In general, Problem: G/L missing, is assosiated with Settings, maintained in T. Code: VKOA.
    Just Check
    Best Regards,
    Amit
    Note: In T. Code: VA02, key-in your Sales Doc (in your case, Credit Memo Request) and go in to Sales Doc.
    From Menu-bar, Click:
    Edit --> Incompletion Log.
    This will lead to eror page, listing Error: G/L missing.
    Select line and click Tab: Complete Data
    This will lead you to another Screen: Analysis Account Determination
    Now, at left-side of the screen, you can see Columns: Procedure and Description.
    There, you will find
    KOFI --> PR00 (open drop-down option for PR00) --> 10 (KOFI) Cust.Grp/Material Grp/Acct.Key
    Double Click on it.
    IMP1: Instead of KOFI, it could be KOFK also; and instead of "Cust.Grp/Material Grp/Acct.Key", it could be "Cust.Grp/Account Key" or "Material Grp/Acct Key". Just note-down the entries, it will help you to assign G/L in T. Code: VKOA
    Now, at right-hand side of the Screen (i.e. Overview), You will find Access details 10 (KOFI)
    Now, there are two options:
    1. either System will determine the G/L, or
    2. still, G/L a/c missing
    In second case, down there on the same screen, notice the following:
    Field in condition table--Field in document---Value in doc.
    IMP2: Note-down the entries, under Column: Value in doc. as this will help you to maintain settings in T. Code: VKOA
    Now, go to - T. Code: VKOA
    Click on Table: 1 - Cust.Grp/Material Grp/Acct.Key (or as found in step IMP1)
    On to next screen, click Tab: New Entries
    now, maintain entries in to Fields:
    App: V
    CndTy.: KOFI (or as found in step IMP2)
    ChAc: INT (or as found in step IMP2)
    SOrg: 1234 (or as found in step IMP2)
    AAG: 01 (or as found in step IMP2)
    AAG: 05 (or as found in step IMP2)
    ActKy: ERL (or as found in step IMP2)
    G/L Account: You will get it from Accounts dept.
    Provision acc.: I don't think its reqd. as its being used for, say Rev. recog.
    Save the entry. Now, check the Sales Doc. in VA02 (as explained in the statring of Note).

  • Error while creating Credit Memo Request for Milestone billing invoice

    Hi All,
    I have a scenario where i have Milestone billing(% based) at header level in Contracts. I create Invoice for that and then try to create Credit Memo Request with reference to the Invoice.
    Problem comes when we try to change the qty in the credit memo request. we are able to change the qty but the value is not changing. It remains the same constant value of that milestone.
    In my copy control from Invoice to Credit memo request for the item category i have maintained the pricing type as "C" because i want to copy and manual conditions.
    So kindly let me know which config setting should be done so that whenever i change the qty the value should also be changed.
    Please Note : This is happening only when my billing plan is at header level. For Billing plan at Item level its working fine.....
    Thanks.....

    Hiiii.....
    Can anyone please advise on the below issue of mine.....
    Thanks alot for the help.......in advance

  • Credit memo request / credit note

    I have a doubt in credit memo request setting.
    I have setup to create a credit memo req in sales with ref. to either billing doc or sales doc.
    In copy control I have chosen pricing type 'D'. We manually maintain prices in Sales.
    Say for eg. we have delivered the below to our customer.
    material 1 - 2 pieces - each at $2000
    material 2 - 1 piece -   each at $3500
    My customer didnot return the part, but instead comment that the price of material 2 is too high.
    So the client wishes to change the price of the material 2 to $2800/piece instead of $3500.
    I notice that when I mark the item 2 with reason for rejection code as "too expensive", in my Credit Note I see $0.00 to be copied.
    Am not clear here. Should I change the pricing type in my credit note to allow changes so that my new price is only at $2800?
    Where should I do this?
    Also should I delete the material 1 from the credit memo req document or should I delete it from my credit note?
    I quite don't know why should we keep the material when there is no problem that we already charged the customer & they have payed us too.
    Thk,
    Ann

    "Item Rejection reason" may be used in Sales Order, when there are multiple line item & some of them are not to be executed. The items which are not to be executed, should be maintained with "Item Rejection reason"
    <i>So you mean to say that I need to change the quantity/correct price in my credit memo request? So that the right amount copied to the credit note?</i>
    The anwer to this is Yes.
    <i>case 1: say if the customer has already paid the company excessively</i>
    Irrespective of receipt of excess payment Credit note can be issued. You need not cancel original invoice & the credit balance can be settled in latter transaction or can be refunded through FI.
    <i>case 2: also if only the invoice is sent to the customer, but if they have not paid the company</i>
    In this case, the customer can make the payment as per outstanding due in his account, as credit note will give an effect in accounting. You need not cancel original invoice & the credit balance can be settled in latter transaction or can be refunded through FI.
    Hope this information helps you.
    Regards,
    Rajesh Banka
    Reward points if helpful.

  • Pricing in credit memo request

    Hi Guys,
    I am creating a credit memo request with reference to the billing document , The price and the quanity got copied from the billing document.Now  In the creditmemo request I changed the quantity ( suppose in billing doc. the quantity is 10 and in the credit memo request 5 ) . The price doesnot get changed according to the new quantity. It is getting updated only when I update the pricing at item lavel( "B" - carry out new pricing) in the credit memo request. But unfortunately it takes the current price not the old  price ( when the invoice was created).
    The pricing date in the creditmemo is in past ( when the invoice was created)..
    Please suggest how can I get the old price in the credit memo request.
    Thanks,
    Rupak

    Dear Rupak,
    Your price / Quantity is copying correctly from Billing means your Copy Control settings are proper.
    Now while creating Credit Memo Request, after you change Quantity you are currently selecting Update & "B" - i.e. Carry out new pricing.
    Here instead of "B" select "A".
    A means - Copy price components and redetermine scales.
    Here the system:
    1. does not determine any new condition types
    2. and only redetermines the scale prices for changed quantities
    I guess this will definitely solve your problem.
    Hope this helps...
    Thanks,
    Jignesh Mehta

  • Credit Memo Request for intercompany sales process

    Hi Experts
    I try to find SAP notes regardsing the credit memo request for intercompany related issue but I can
    not find any nates. The customer return the goods with 2 different
    scenario :-
    -Return with credit
    -Return with replacement.
    Can anybody explain how this 2 scenario perform in the SAP
    intercompany sales process. Appreciate for your help. Thanks in advance.
    Regards,
    Jennie Tan

    Already answered
    Enter IG (internal credit memo) as the billing type for intercompany
    billing for order type RE.
    Cust-Sales/distrib-Transactions-Billing-Intercompany billing-Order types
    Intercompany billing always refers to a delivery
    Processing flow will be:
    1. Create returns request invoice receipt (with or w/out reference)
    2. Create returns delivery and goods receipt
    3. Create credit memo invoice receipt for customer for 1.
    4. Create internal credit memo for 2.
    Therefore you must make the following entries in the document flow
    for billing documents:
      Target BillType        DlvType              ItemCat
    a)    IG                  LR
    b)    IG                  LR                    REN
    Parameters for entries:
    For a) Copying requirement:  14  Dlv.-rel.header IV
          Copy item no.: x  (Check and decide yourself)
    For b)Copying requirement: 15 Dlv.rel. item IV
          Data VBRK/VBRP      : 1  Inv.split (sample)
          Billing quantity    : B
          Qty/itm val.pos/neg : +
          Pricing type        : G
    Also, refer following SAP Notes
    13160 - Returns with intercompany billing
    24756 - Credit memo requests with inter-company billing
    652007 - Reporting internal credit memos on arrival side
    11980 - Intercompany billing with order-related billing document
    164074 - Problems for internal invoices on returns
    Thanks & Regards
    JP

  • COPA Values in the Profitability analysis for a credit memo request

    Hi All,
    When I am trying to create an Invoice document for a Credit Memo request having a Configurable material , in the accounting document profitable analysis Profit Center view fields are not getting updated.
    If we do the same thing for a reference material profit center view fields are getting updated properly.
    What is the problem with the Configurable  material.
    Thanks in advance,
    RajaMahi

    I would start fresh with a new sales order.  When you create with reference both the return delivery and credit memo are created with reference to the return sales order.  Here is an example document flow to clarify:
    Document                                      Date               Qty/value   UoM/Cur   Overall proc. status
                                                                                    Return 60000077 / 10                          08/25/05               10.000  EA      Completed                                 
    . Returns Delivery 500000016 / 10             08/25/05               10.000  EA      Completed                                 
    .. GD returns QI 4900030060 / 1               08/25/05               10.000  EA      complete                                  
    .. Credit for Returns1 10000017 / 10          08/25/05               10.000  EA      Completed                                 
    ... Accounting document 10000017              08/25/05               10.000  EA      Cleared

  • Reg: Two credit memo for one credit memo request

    HI expert,
    The requirement here is related to warranty, payment thru credit memo, partial payment 90% first 10% after receipt of some required documents.
    So need to configure for two credit memo with ref to one credit memo request, not based on qty.. we have worked on value part so no problem abt it.. will share it later,  but at first we need to create two credit memo with ref to 1 Credit memo Req.
    Please through some light....
    Regard
    Praveen

    Hi,
    You can use the BILLING PLAN for this
    Just assign the TAO  ITEM CATEGORY for you sales document type in VOV4 and maintain the Billing Plan dates while processing the Sales order.
    Now you can create two Billing documents with reference to the Same order based on the BILLING PLAN dates maintained in the Sales ordre-Item-BILLING PLANT tab will appear .
    There you can define the BILLING DATE and on that particular date you can create the Billings for one sales order.
    Please check and revert back if you need frther details
    regards,
    santosh

Maybe you are looking for

  • S_P00_07000136 Transfer deffered tax Thailand

    Hello All, I am trying to transfer tax amount using S_P00_07000136. When i enter the amount on tax amount difference manually. i am getting a error message which says "Actual Tax difference 10,00- exceed the tolerance limit "1,00 1,00"" . I am not ab

  • Weekly and and monthly report

    how do I create a weekly report and a monthly report This topic first appeared in the Spiceworks Community

  • Video tube/you tube no audio

    I have installed and re-installed video tube on my iPad several times and each time it installs from the cloud without audio. I am running IOS 6.1.0 and I understand that I cannot hide the app so each time it installs without audio. I assume that the

  • Event handling with JSF

    Hi Everybody, I have a question about event handling and I am just wondering if I can do the following with JSF. I have two HTML dropdown lists A and B. When ever a value changes in list A, based on the selected value, list B has to be populated. Is

  • How to handle the events of business object (BAPI)

    Hi, How to register to BAPI event and handle? For example, for a business object 'inv', there is an event as 'created'. I want to insert entry in a z table when an inv is created. I assume that the 'created' event is triggered when an inv is created.