Invoice correction (RK) change sales net value

Hi Experts,
I wanted to create an invoice correction process, after i was entering with reference to the billing document number i have seen 2 item category there were G2N and L2N.
material              qty                cat            value
1234                    2                 G2N           18.40
1234                    2                 L2N            18.40-
1) System will auto create with 2 item category, is it true?
2) How can i change the net value? Because the actual value suppose is 17.00
Thanks & Regards,
Yong Kok Wah

Hi
Invoice correction Request is a combination of Credit memo Request and Debit memo Request, which has got Item category G2N and L2N respectively. They have opposite signs to one another.
That means, each item is duplicated as Credit posting and Debit posting with opposite signs as you can see in the Overview screen.
Therefore, initially the Net value is "Zero", as there is no difference.
Now, you can make the correction / changes via the "Debit memo" items only. You can not make any changes through the Credit memo items (they are disabled area).
If, you want to change the quantity, you can do it in the Overview screen itself.
If, you want to change the Price, then select the item > go to item details > select "Condition" tab and make the chages here > come back to the overview screen.
Now, click on the "Delete unchanged pair" button in the application tool bar.
System will delete the unchanged pairs and only the changed pairs will remain.
The resulting difference (of Credit item and Debit item)  will  be automatically reflected in the "Net value" field for which you have to issue a Credit memo to the customer.

Similar Messages

  • Post to GL but no impact to sales net value

    Dear SD Gurus,
    I have a condition type which calculates the value from net value (says, 10% from gross value, for instance) that needs to post to GL (not statistical) and it will not impact the total sales net value.
    Any idea how to set it up?
    Thanks,
    Soo

    Hi
    check the settings once again plz
    Goto Basic function-Account determinationRevenue account determination-Define and assign account keys-select assign account keys-here u hv to select right pricing procedure-condition type----Account keys....
    Hope it ll work properly.
    Regards
    JAGA

  • Free sample sales net value in invoice should give zero value.

    Hello Experts,
    I have a question on the cess values aspect of free sample sales.Recently, I have configured a free sample sales for one of our clients. Now, in the invoice the user does not want the cess values to be passed to the customer.I changed the R100 discount type in the pricing control data, still tax is picked up, showing negative net value and not zero. Now, how to arrive at excise payable as credit entry and octoroi etc as debit entry in G/L accounts. or where I am going wrong, please suggest.
    Regards,
    Raj.

    For sample sales that is you are despatching material on free of cost, follow the steps mentioned below
    1) In V/06, you should create a condition type, say ZDIS (for 100% discount) and maintain the following:-
    Cond. class::::::A
    Calculat.type::::A
    Plus/minus:::::::X
    Item condition:::X
    Amount/percent:::X
    Delete:::::::::::X
    Value::::::::::::X
    Save the condition type
    2)  In OV34, create two new Account Keys, one for PR00 and one for 100% discount.  Say the two Account Keys are ZSM and ZSP
    3)  In V/08, against PR00 condition type, assign Account Key ZSM with a tick in "Required".  Next for condition type ZDIS, assign the another Account Key ZSP without any tick in the three boxes.  Against this discount condition type, assign the step number of net value under the tab "From", assuming that after PR00 you have multiple condition types.
    4)  In FS00, create a new G/L Account with description as Sales Promotion Expenses
    5) In VKOA maintain these two Account Keys for the sales organisation / chart of accounts with the same G/L account for both the Account Keys.  Dont assign different G/L Account here.
    6)  Now create a sale order and do billing.  See how the accounting document flows.  Post still if you have any issues.
    thanks
    G. Lakshmipathi

  • Can we change the net value in the conditons of the sales order?

    Hello:
    I have below scenario:
    Sales order:
    Material           A
    PR01 (Price condition)               98 USD
    ZADD (Discount condition)        to be calculated by SAP R3 system (?%)
    Net price                                    80 USD (expected)
    Due to the net value field can't be changed in the system, we have to maintain the discount rate, but we expect the R3 system can calculate the discount rate automatically.
    My questions are:
    1. How can I input the net price?(Should I have to maintain a value discount condition type?).
    2. How to attach or include the discount rate(which will be calculated by the SAP R3 system) in the sales order?
    Can anybody share the relevant solutions?
    Thanks,
    Don

    Hi,
    Maybe, my question is not clear.
    I know on how to maintain the conditions.
    I want to maintain a final price condition, and also the discount rate will be shown in the sales order.
    discount rate= ( List Price 98- Final price 80) / List Price 98
    Or
    I want to maintain a value discount condition,and also need  the discount rate will be shown in the sales order.
    discount rate = value of the value discount condition 18 / List price 98
    The discount rate will be shown in the sales order and the discount amount will be posted to the GL account.
    Thanks&Regards,
    Don

  • VF01 : Invoice without FI document because Net Value is 0,00 ?

    Hi,
    I create an invoice with Tcode VF01 in refernce to a billing document, the system create an invoice but not the FI document, it shows this message : "An accounting document is not required for this billing document"
    Diagnosis
    The billing document has the net value '0' and does not create an accounting document. Despite this, the posting status 'C' (Posting document has been created) is set internally for this billing document.
    Please i want to have a price in my invoice to post an FI document correctly, how to solve that ?
    i hope your help
    Regards

    Hi,
    You can not post to accounting with ZERO(0) balance.If you want to post to accounting,you should have minimum of $0.01.
    system message is correct.
    Thanks,
    Rau

  • Change sales order values from Inbound Idoc

    Hi all,
         In my scenario i have to change sales document automatically(Workflow) by getting the values from the inbound idoc ordchg (one more thing i dont want to create another sales document). Is there is any function module? please tell me how to do this.
    Regards,
    Adithan S.

    Hi Adithan;
       You can read the IDoc information using the function IDOC_READ_COMPLETELY as demonstrated in the example below:
    DATA: int_edidd TYPE STANDARD TABLE OF edidd WITH HEADER LINE,
           wf_docnum type edidc-docnum.
    MOVE: 'IDOC_NUMBER' to wf_docnum.
    CLEAR int_edidd.
    REFRESH int_edidd.
    CALL FUNCTION 'IDOC_READ_COMPLETELY'
         EXPORTING
              document_number         = wf_docnum
         TABLES
              int_edidd               = int_edidd
         EXCEPTIONS
               document_not_exist      = 1
               document_number_invalid = 2
               OTHERS                  = 3.
       After that call, you can loop through int_edidd to get at the segment information you need.
       You can update the sales order using BAPI_SALESORDER_CHANGE.  Below is an example of updating line 10 of a sales order with a new material number.
    DATA: l_vbeln LIKE bapivbeln-vbeln,
          so_headx TYPE bapisdh1x,
          change_return LIKE bapiret2 OCCURS 0 WITH HEADER LINE,
          so_item_in TYPE bapisditm OCCURS 0 WITH HEADER LINE,
          so_item_inx TYPE bapisditmx OCCURS 0 WITH HEADER LINE.
    MOVE 'U' TO so_headx-updateflag.
    MOVE <insert sales order number here> to l_vbeln.
    MOVE:  '00010' TO so_item_in-itm_number,
           'MATERIAL_NUMBER' TO so_item_in-material.
    APPEND so_item_in.
    MOVE: '00010' TO so_item_inx-itm_number,
          'U' TO so_item_inx-updateflag,
          'X' TO so_item_inx-material.
    APPEND so_item_inx.
    CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
         EXPORTING
              salesdocument    = l_vbeln
              order_header_inx = so_headx
         TABLES
              return           = change_return
              order_item_in    = so_item_in
              order_item_inx   = so_item_inx.
    Cheers,
    John

  • Invoice IDOC is sending wrong Net value

    Hi Champs,
    We have an interface whetre Invoices will be sending to the third system through IDOCS.
    These are prepared and being transferred by using Standard FM Invoice_Inbound_Asynchronous. But there is a very peculiar problem when sending some invoices, like some invoices are pushing ITEM wise wrong amount thruogh segment E1EDP01 -> E1EDP26 003 -> BETRG (Field). I could not get from where this amount is being picked.
    Could any one help me if you face similar type of issue.
    In the IDOCS flow of last two years, only 6 IDOCS are sent with wrong amount until now.
    Thank You
    With Regards,
    Ravi kanth Yechuri.

    Friends,
    can you please hep me out whether i can apply any SAP note or so...
    Thank You
    Ravi Kanth Yechuri

  • Condition type change quantity and net value at sales order

    Hi Experts,
    I wanted to only ALLOW sales order for RK type (invoice correction) condition ENABLED to change (qty + net values). However i wanted to DISABLED condition changes (qty+net values) in any others type of  sales order.
    i have maintained SD->Basic function->Pricing->Pricing control->define condition type->maintain condition type-(changes which can be made) in my current setting is
    1) manual entry = C (manual entry is priority)
    2)hdr condition = no check
    3) item condition = check
    4) delete = check
    5) amount/percent = check
    6) value = check
    7) qty relation = check
    8) Calc type = check
    Thank you.
    Regards,
    Yong Kok Wah
    material              qty                cat            value
    1234                    2                 G2N           18.40
    1234                    2                 L2N            18.40-
    1) System will auto create with 2 item category, is it true?
    2) How can i change the net value? Because the actual value suppose is 17.00
    Thanks & Regards,
    Yong Kok Wah

    yes , that is standard functionality only.
    One is for Credit and second is for Debit note.
    If you want to change the price you can change it manually.
    http://help.sap.com/saphelp_erp60_sp/helpdata/en/dd/55fede545a11d1a7020000e829fd11/content.htm

  • Sales report to get grand net value

    Is there a standard report where I can get the grand total of all the sales net values on the system? I am using VA05 and VA03 but I want to enter a range.

    Standard SAP SD Reports:=
    Statistic Group:
    Purpose – To capture data for Standard Reports, we require to activate Statistic Group as under:
    --> Item category (Configuration)
    --> Sales document type (Configuration)
    --> Customer (Maintain in Master data)
    --> Material (Maintain in Master data)
    When you generate statistics in the logistics information system, the system uses the combination of specified statistics groups to determine the appropriate update sequence. The update sequence in turn determines for exactly which fields the statistics are generated.
    Configuration:
    IMG --> Logistics Information System (LIS) --> Logistics Data Warehouse --> Updating --> Updating Control --> Settings: Sales --> Statistics Groups -->
    1. Maintain Statistics Groups for Customers
    2. Maintain Statistics Groups for Material
    3. Maintain Statistics Groups for Sales Documents
    4. Assign Statistics Groups for Each Sales Document Type
    5. Assign Statistics Groups for each Sales Document Item Type .....
    All Standard Reports which are available are as under:
    SAP Easy Access: Information Systems -> Logistics -> Sales and distribution ->
    1. Customer -> Incoming orders / Returns / Sales / Credit memos / Sales activities / Customer master / Conditions / Credit Master Sheet
    2. Material -> Incoming orders / Returns / Sales / Credit memos / Material master / ...
    3. Sales organization -> Sales organization / Sales office / Sales employee
    4. Shipping point -> Deliveries / Returns
    5. SD documents -> Orders / Deliveries / Billing documents ...
    & so on.
    Some of the Standard reports in SD are:
    Sales summary - VC/2
    Display Customer Hierarchy - VDH2
    Display Condition record report - V/I6
    Pricing Report - V/LD
    Create Net Price List - V_NL
    List customer material info - VD59
    List of sales order - VA05
    List of Billing documents - VF05
    Inquiries list - VA15
    Quotation List - VA25
    Incomplete Sales orders - V.02
    Backorders - V.15
    Outbound Delivery Monitor - VL06o
    Incomplete delivery - V_UC
    Customer Returns-Analysis - MC+A
    Customer Analysis- Sales - MC+E
    Customer Analysis- Cr. Memo - MC+I
    Deliveries-Due list - VL04
    Billing due list - VF04
    Incomplete Billing documents - MCV9
    Customer Analysis-Basic List - MCTA
    Material Analysis(SIS) - MCTC
    Sales org analysis - MCTE
    Sales org analysis-Invoiced sales - MC+2
    Material Analysis-Incoming orders - MC(E
    General- List of Outbound deliveries - VL06f
    Material Returns-Analysis - MC+M
    Material Analysis- Invoiced Sales - MC+Q
    Variant configuration Analysis - MC(B
    Sales org analysis-Incoming orders - MC(I
    Sales org analysis-Returns - MC+Y
    Sales office Analysis- Invoiced Sales - MC-E
    Sales office Analysis- Returns - MC-A
    Shipping point Analysis - MC(U
    Shipping point Analysis-Returns - MC-O
    Blocked orders - V.14
    Order Within time period - SD01
    Duplicate Sales orders in period - SDD1
    Display Delivery Changes - VL22
    Regards,
    Rajesh Banka
    Reward points if helpful.

  • Make Net Value Field at item level Editable in Sales Order

    Hi
    All pricing in our system are manual .
    So the client wants to change the Net Value Field in Credit and Debit Memo Request to be Editable ( Currently it is not modifiable)
    Plz suggest how to g about it.
    Do i need to use Userexit_ Field_ Modification, if yes how , The field VBAP-NETWR.
    REgards
    Rohit

    Hi Yadav
    Changing Net Value will effect the updation of various tables ...so u r right not the correct approach .
    Can i put condition type and its value in Credit Request Memo and its value aditable same as in screen for Sales Order .if yes how , changing screen sequence group in credit memo request is creating problems
    Regards
    Rohit

  • Quatation net value(Changes)

    Hello Friends,
    I would like to know the quatation net value(vbak-netwr) Changes data in past .
    For exp :
    one quatation is created on 01.05.07 and the quatation number is 20000 and the net value is 2000 Euro's.
    The same quatation is changed on 01.08.2007 and now the net value is 3000 Euro's
    Similarly the same quatation is changed on 01.10.2007 and now the net value is 5000 Euro's
    Now my requirement is to show all the changes in net value for this quatation like
    date               Quatation          netvalue
    01.05.2007         20000             2000 Euro's
    01.08.2007        20000             3000 Euro's
    01.10.2007        20000             5000 Euro's
    I used FM like CHANGEDOCUMENT_READ_HEADERS
                          CHANGEDOCUMENT_READ_POSITIONS
                          CHANGEDOCUMENT_READ
    I checked CDHDR and CDPOS tables it's not showing the thing what i want.
    I want to know how we can get the Quatation net value changes .
    Thank you in advance,
    Arvind.

    hello Gopi,
    The same code which is used in RVSCD100  ,i am also using in my program.
    The standard program is also not showing the quatation net value changes
    (vbak-netwr).It's showing item level changes.
    Any another solution..
    Thank you,
    Arvind.

  • Difference impact on Net Value

    Hi All,
    Similar questions have been answered but this has not solved my queries so I have to post.
    the user wants to post the difference in amount received and invoice amount in some loss account. this is happening but in doing this, I have to give that difference condition as Non-static in V/08 which changes my net value of document. is it correct??
    Usually, Net value is material price +/- any discount/surcharge etc. exclusive of Tax. but after I receive my Invoice amount that is Net value + tax, the customer still gives amount lesser than the final invoice amount. and my user wants to post this shortfall as loss(or write off). should it impact the net value? currently, it is effecting it. the example is :
    1000 Rs. MRP (ERL) (this includes all discount)
        10 Rs. Vat (MW1)
    1010 Rs. Invoice amount.
    1008 Rs. Paid by customer Mr.X
    all these entries are getting posted as :
    Mr. X 1008 Dr
    write off 02 Rs. Dr
    Sales Revenue 1000 Cr
    Vat 10 Cr
    Now, in doing this, the Net value of this sales doc becomes 998 Rs instead of 1000. is this correct?
    Thanks,
    Binita

    Hi santosh
    Sub total will the PR00 - Discount sum
    Net price will be Sub total - Special discount
    how do I mention that sub total will be PR00 - Discount. I configure like this
    10 PR00
    20 ABC (Customer discount)
    30 XYZ (Material discount)
    40 Discount Sum                      from20    to39
    50 Sub total                             
    60 123 (Special Discount)
    70 Net price
    80 MWST (output tax)
    90 Total
    when I indicate from 20 to 39 besides Discount Sum, system will sum the discounts between step 20 to 39. How do I write at sub total like this, so that system will deduct the discount sum from PR00. Similary how do I write Sub total - Special discount.
    Could you please explain bit more detail.
    Thank you.

  • No effect of discount in Net value

    Dear All,
    I have just four conditions in pricing procedure of Billing document. Item price, discount , Price after discount and tax. Price after discount is a percentage type condition which is sum of item price + discount. we maintain it as 100% in VK11. if we give discount, it shows the correct sum at header level deducting the discount from price. but when we check item tab in invoice, the discount is also there but this Sum condition remains as it is. the net value of individual item does not have effect of this discount. what can be wrong? In all conditions, 'Item condition' is ticked in V/06. how can i change the net value and have the effect of discount in net value at item level?
    Thanks,
    Binita

    Hi,
    To make effect of discount on net value, you have to enter FROM-TO steps in front of respective discount condition type in pricing procedure.
    kapil

  • Invoice correction request -- Debit Memo

    Hi,
    I am able to create the Debit memo with respective RK(invoice correction request).
    But the value in debit memo billing document is negative.  So, accounting entry is going with negative value.
    Can any body suggeest me whether it is correct process or i need to any settings.
    Regar

    In invoice correction request doc type is RK and
    there will be two line items in Sales order
    and 1st line item is the invoiced item and
    2nd line item is what you need to enter with material and the quantity
    now, the difference between the both will be paid to the customer in Credit memo
    and in debit memo customer will pay to the company.
    rule 1:  you should make sure that the "reference mandatory" field should be
                set to Invoice.
    hope this will clarify you,
    Regards,
    Sailesh

  • RK Invoice correction

    hi,
    can anybody can give the complete configuration steps with examples for invoice correction request (RK)
    thanks in advance
    thanks n regards
    srinivas

    Hi,
    Invoice Correction Request
    A sales document used in complaints processing to correct the quantity or price of one or more items in an invoice.
    You can create an invoice correction request if the wrong prices have been calculated for the customer. The invoice correction request can be automatically blocked by the system until it has been checked.
    The system calculates the difference between the amount that was originally calculated and the corrected amount for each item.
    Once it has been approved, you can remove the block. The system creates a credit memo with reference to the invoice correction request. If the remaining amount is positive, the total value does not have a + sign, if the remaining amount is negative, the total value has a – sign
    The standard sales doc type is RK.
    regards
    sadhu kishore

Maybe you are looking for