Sales Order Discount Pricing Rounding Error

When we use discount RA01 in our Sales Pricing / Orders it results in rounding issue that shows on Customer Invoice.
eg: Sales Order Conditions Tab
Product XXXX x 2 EACH
CnTy Amount (per ea)
PR00 $141.55 EA
RA01 10%
$14.16
Net Val $127.40EA
Total Condition Value (x Order qty)
PR00 $283.10
RA01 $28.31
Net Val $254.79
So what the Customer sees is the unit price of $127.40 and totol line cost of $254.79.
But $127.40 x 2 is obviously $254.80
It looks as though the discount is being calculated as 14.155, then the Net Value rounding from $127.395 to $127.40
Where as the TOTAL Net Value for the line is showing the $127.395 x 2 = $254.79.
How do we get this scenario to result in the Net Value Amount, and Net Value Condition Value multiplying correctly by Qty on the Order??
Thanks
Hayley McDougal

Hi Thenmozhi
Sorry for confusion, I  am responding to your question above using a new Public logon, as the logon i used to raise this question has been locked, and SAP advise may take a few days to rectify.  But I am hoping I can sort this issue ASAP.
The Requirements indicator for PR00 and RA01 is 2
The Calculation Type is PR00 = C (qty) and RA01 = A (%)
The Net Price, PR00 and RA01 are all set to Rounding = Commercial.
Thanks

Similar Messages

  • While Creating Sales order Item pricing error is coming........

    HI Friends,
    I  have just given all values in VA01  not saved at tht time and before saving i go the Extras -->Output ---> Header -> Print Preview----> i got the form then i  back to the screen ... now i save sales order but it giving error " Item Pricing error" if  i click on item pricing error button it goes to the  sap first screen.
    could you please help me in this......
    Regards
    Venkat boddu

    May be fault items where there is no pricing or so.
    Check all items and reprice them before save. if they are ok then go to MV45AFZZ and check save document prepare and save document user exits for the message. Also check form and print program.
    Last but not least, get the message number and class for the message then go where used list for that message.
    Mostly, this message is populated in user exits.

  • User exit to update the incompletion log in sales order for pricing error

    Hi experts,
    I have to check the some mandotory pricing conditions in sales order, if that conditions are not exist in sales order then i need to show the information message as well as i need to update it in incompletion log of sales order. (incopletion log we can see on menu bar 'EDIT' or ctrl+F8 on main screen of VA01). So that user can save the sales order but it will be in incomplete status.
    I have completed it upto showing the information message using user exit 'MV45AFZZ', but after this i don't know how to update it in incompletion log of sales order for pricing. I tried to update in tables VBUK-UVPRS, but i am not getting the desired result.
    Please anyone can tell me how to update it. In which user exit i can update the incompletion log.
    Thanks and Regards,
    Vicky.

    Hi Vinod,
    I am sending you my code please check it,
       if TKOMK-SPART = 10.
        if XKOMV is not INITIAL.
          clear v_JEXP.
        READ TABLE XKOMV with key kschl = 'JEXP'.
        if sy-subrc = 0.
          check XKOMV-kwert = 0.
          message i003(ZT) with 'Value should not be 0 for conditioin type JEXP'.
          v_JEXP = 'X'.
        else.
          message i003(ZT) with 'Maintain the mandatory Conditioin type JEXP'.
          v_JEXP = 'X'.
        endif.
        if v_JEXP = 'X'.
      XVBUV-MANDT = sy-mandt.
      XVBUV-POSNR = '000010'.
      XVBUV-TBNAM = 'VBAP'.
      XVBUV-FDNAM = 'PRSOK'.
      XVBUV-FEHGR = 20.
      XVBUV-STATG = '06'.
      XVBUV-FCODE = 'PKON'.
      XVBUV-SORTF = 9999.
      XVBUV-LFDNR = 0000.
      XVBUV-UPDKZ = 'I'.
      append XVBUV.
        endif.
    endif.
    endif.
    Please suggest something to solve this.
    Thanks and Regards,
    Vicky.

  • WHILE DELETING A SALE ORDER GETTING A RUNTIME ERROR " Screen: Illegal message"

    Hi Experts,
    While deleting a sales order giving run time error.  PFB runtime error details.
    If you know any OSS message, please let m know. I tried, but there is no luck.
    Short text
        Screen: Illegal message
    What happened?
        The current screen processing action was terminated since a situation
        occurred where the application could not continue.
        This is probably due to an error in the ABAP program or in the current
        screen.
    What can you do?
        Note which actions and input led to the error.
        For further help in handling the problem, contact your SAP administrator.
        You can use the ABAP dump analysis transaction ST22 to view and manage
        termination messages, in particular for long term reference.
    Error analysis
        The program attempted to issue a " " message during "Exit Command" processing.
        This is an illegal operation.
        The program was terminated.
        Screen name.............. "SAPMV45A"
        Screen number............ 4001
    How to correct the error
        The program must be modified to correct the error.
        The modification must be made in "Exit Command" processing.
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
    Source Code Extract
    Line  SourceCde
        1 *---------------------------------------------------------------------*
        2 *       FORM YVBEP_LESEN                                              *
        3 *---------------------------------------------------------------------*
        4 *       Lesen der Tabelle YVBEP (nicht sortiert)                      *
        5 *---------------------------------------------------------------------*
        6 FORM YVBEP_LESEN USING US_POSNR
        7                        US_ETENR
        8               CHANGING CH_TABIX.
        9
       10   YVBEP = SPACE.
       11   YVBEP-MANDT = VBAK-MANDT.
       12   YVBEP-VBELN = VBAK-VBELN.
       13   YVBEP-POSNR = US_POSNR.
       14   YVBEP-ETENR = US_ETENR.
       15   READ TABLE YVBEP.
       16   IF SY-SUBRC > 0.
       17     MESSAGE E506 WITH US_POSNR US_ETENR.
       18   ENDIF.
    >>>>>   CH_TABIX = SY-TABIX.
       20
       21 ENDFORM.
    Could you please help on this issue.
    Thanks
    Srinu

    Hi Srinu,
    it looks like you got the error message Schedule line &1 &2 is missing in table YVBEP while deleting the sales order.
    It seems, that there are no SAP notes regarding this issue. Do you have this issue with all orders or with a single order?
    If only a single order causes this issue, maybe something was wrong during an update.
    If you get this error for many orders, then custom code (modification, enhancement, user exit in MV45AFZZ, ...) may be the reason for it.
    If you have no custom code in module pool SAPMV45A, then contact SAP for this issue.
    Regards,
    Klaus

  • Sales Order Discount Rounding Problem

    Hi Experts
    When we use discount RA01 in our Sales Pricing / Orders it results in rounding issue that shows on Customer Invoice.
    eg: Sales Order Conditions Tab
    Product XXXX x 2 EACH
    CnTy Amount (per ea)
    PR00 $141.55 EA
    RA01 10%
    $14.16
    Net Val $127.40EA
    Total Condition Value (x Order qty)
    PR00 $283.10
    RA01 $28.31
    Net Val $254.79
    So what the Customer sees is the unit price of $127.40 and totol line cost of $254.79.
    But $127.40 x 2 is obviously $254.80
    It looks as though the discount is being calculated as 14.155, then the Net Value rounding from $127.395 to $127.40
    Where as the TOTAL Net Value for the line is showing the $127.395 x 2 = $254.79.
    The Requirements indicator for PR00 and RA01 is 2
    The Calculation Type is PR00 = C (qty) and RA01 = A (%)
    The Net Price, PR00 and RA01 are all set to Rounding = Commercial.
    How do we get this scenario to result in the Net Value Amount, and Net Value Condition Value multiplying correctly by Qty on the Order??
    Thanks
    Hayley McDougal

    Thank you very much for you response.
    This looks very promising as solution.  Will apply note and test and let you know if problem solved.
    Thanks
    Hayley

  • Pricing - flat fee sales order discount based on the group of items

    Dear All.
    Has anyone came up with a process to offer a customer discount on a sales order as a flat fee to the whole sales order, not a % when specific products are ordered on the sales order.
    The problem that we're running in to is with no automatic pricing at the header level.  So we either need to manually enter the discount at the header level, or apply a group condition at the item level which then repeats the flat discount for all items in the group.  However we only want the discount to apply one time.
    Thoughts on how to best approach this?
    Many thanks.

    If you want to use Header condition for discounts, then you can't apply to only one line item. If you want to spread the total value among all the line items, then in t.code V/06, check the box group condition. While printing any of the documents like order confirmation or invoice, print the discount at the header level, so that this will not reflect on all items. Check with an ABAP'er for the same.
    Regards,

  • Value of NET in Sales Order item (Pricing)

    Hi,
    I have created a Price correction order. Where I put the corrected price and all the calculations happen on the entered corrected price. Like the discounts and taxes.
    All the calculations in the Pricing is perfect.
    But the value in Net for the line item is calculating incorrect value.
    For e.g. If Corrected price is 100 and the Net value for this is 60 (including discounts and taxes). Then the value in Net in the Sales order will show the Value (100 + 60) = 160.
    All the calculations in the Pricing procedure are perfect.
    Please help me with this issue, How the value is NET (Sales order item) is calulated. Is this associated with any routine.
    Thanks and regards,
    Sheetal

    Hi,
    NET will be  Prices + Surcharges - Discount.
    so, see the discounts and surcharges in your order.
    And, please give all the condition type and corresponding rates in the next post, so that i can be more helpful.
    thank you

  • Sales order creation, Line item error

    Hi....
    Iam created one sales order with BAPI techniue.i.e type stand alone order.
    After creation VBELN generated successfully.
    Now, if i save the order from VA02 it was displaying following message in popup window...
    LINE ITEMS HAVING NO QUOTA OR TERM ATT
      Item   Material           Description
        10   1111-0             ABCD FR
    And.,
    In the conditions tab of the line items I want to insert a row i.e contract type and amount..,
    But..,
    for this Iam paaing entries as input to BAPI but not mapping on screen..,
    Also if i try to add them mannually showing following error..
    Requirements are not fulfilled for condition <given type>.
    As an abaper Iam not able to solve this problem, also functional people not availble here..,
    Any updates.......
    Thanks,
    Naveen.I

    Hi,
    This is due to the requirement routine assigned to the condition type in pricing procedure.
    Goto Tcode V/08.
    Here enter you pricing procedure. You can find it in sales order header : Tab - Sales (Pric. procedure)
    Enter this pricing proc in V/08
    When you select the procedurew & double click on control the procedure will be displyed
    Now look for you condition type & look in the colium "Reqt".
    Some number must be assigned, look for the logic inside the routine. If the requireemnt in logic is noit met the condition will not be populated
    Hope this helps you
    Regards
    Dhananjay

  • Sales order creation -pricing- IDOC processing

    Hi All,
    Issue is related to pricing procedure and condition types while processing the IDOC for sales order creation.
    The condition type ZSTD maintained in the pricing procedure AAAA, has reference condition type as ZZZZ, when we are processing IDOC, system is throwing error as " condition type ZZZZ, is not maintained for A V AAAA.
    This error will not populate when we create the sales order manually.
    Kindly let me know if programs needs to be checked and or any configuration mistakes involved in this.
    Regards,
    SAN

    >
    Vivek Baddula wrote:
    > Hey Teju,
    >
    > Could you pls put me the block of code how you are populating to the idoc edidd. So that we can guide you.
    >
    > And also tell me the message status 51 in IDoc what it is showing , and also see the segment( maybe E2EDP05)  specific  to pricing for the IDoc  you populated.
    >
    > Regards,
    >
    > Vvieks
    >
    > 'Grow and help others to Grow'
    Vivek,
    Thanks for the reply.
    Status 51 reads "condition ZPRL is missing in pricing procedure A V ZPRINT, WE are not passing any value as a part of tsting. The system should pick price values from condtion record.

  • WHILE DELETING A SALE ORDER GETTING A RUNTIME ERROR

    hi to all experts,
    whenever i try to delete a particular sale order im getting a runtime error
    stating that
    Short text
        Screen: Illegal message
    What happened?
        The current screen processing action was terminated since a situat
        occurred where the application could not continue.
        This is probably due to an error in the ABAP program or in the cur
        screen.
    Error analysis
        The program attempted to issue a " " message during "Exit Command" processing.
        This is an illegal operation.
        The program was terminated.
        Screen name.............. "SAPMV45A"
        Screen number............ 4001
    Trigger Location of Runtime Error
        Program                                 SAPMV45A
        Include                                 MV45AFZZ
        Row                                     370
        Module type                             (FORM)
        Module Name                             USEREXIT_SAVE_DOCUMENT
    SourceCde
                  message e001(zm) WITH text-335 ltab-kunnr text-334.
                else.
                  if ktab-jkunnr <> ltab-kunnr.
                    ktab-jkunnr = ltab-kunnr.
                    jobsitecode = ltab-kunnr.
                    CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                    EXPORTING
                      input  = jobsitecode
                      IMPORTING
                      output = jobsitecode.
                    SELECT SINGLE * FROM kna1 WHERE kunnr = jobsitecode.
                    IF sy-subrc = 0.
                      ktab-jname1 = kna1-name1.
                      ktab-jstras = kna1-stras.
                    ENDIF.
                    chg_flg = 'X'.
                  endif.
                endif.
              else.
                message e001(zm) WITH text-336.
    * Validation for relationship between Sold-to Party and Ship-to Party
    *          if ktab-ckunnr+0(4) NE ktab-jkunnr+0(4).
    *            message e001(zm) WITH text-335 ktab-jkunnr text-337 ktab-ckunnr.
    *          endif.
              custcode1 = ktab-ckunnr.
              CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                EXPORTING
                  input  = custcode1
                IMPORTING
                  output = custcode1.
              jobsitecode1 = ktab-jkunnr.
              CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
                EXPORTING
                  input  = jobsitecode1
                IMPORTING
                  output = jobsitecode1.
              SELECT SINGLE * FROM knvp
              WHERE kunnr = custcode1
                AND vkorg = vbak-vkorg
                AND vtweg = vbak-vtweg
                AND spart = vbak-spart
                AND parvw = 'WE'
    Error analysis
        The program attempted to issue a " " message during "Exit Command"
        This is an illegal operation.
        The program was terminated.
        Screen name.............. "SAPMV45A"
        Screen number............ 4001
    Trigger Location of Runtime Error
        Program                                 SAPMV45A
        Include                                 MV45AFZZ
        Row                                     370
        Module type                             (FORM)
        Module Name                             USEREXIT_SAVE_DOCUMENT

    Hi,
    Seems there is some problem with the user exit USEREXIT_SAVE_DOCUMENT..
    Put a breakpoint and see.
    Regards,
    Nagaraj

  • Sale order transaction held with error in MMT interface

    A sale order is shipped from order management but it entry struck in transaction interface with anonymous error, error code is “Oracle error”, we are unable to diagnose that what is the cause of struck transactions. Pl guide what should we do?
    Regards,

    I gues you need to open Oracle SR to trouble shoot the issue
    Mahendra

  • Sales Order 'Payment Terms' conversion error after 8.8 Upgrade

    Hello All,
    We recently upgraded from 2007A PL49 to 8.8.
    The Installation went smooth, until we opened up our first new Sales Order. We are getting the SQL error listed below each time we open up the sales order module. This doesnt prevent us from adding a new Sales Order, but the fact that it throws the error each time we open the module is scary.
    Any ideas as to what might have changed from PL49 to cause this?
    Error:
    1). [Microsoft][SQL Native Client][SQL Server]Error converting data type nvarchar to numeric.
    'Payment Terms' (OCTG)
    Thanks,
    Matt

    Hi,
    Can you check wether there is any formatted search involved in the Sales Order?
    You can also check Note No. :   1402855. Check if it helps.
    Kind Regards,
    Jitin
    SAP Business One Forum Team

  • While creating Sales order in Va01 runtime error

    Hi friends,
    While i am creating sales order in VA01 i am getting runtime error
    Thanks in advance
    venuprasad

    This could be due to some recent code changes in SAPMV45A...may be some user exits...
    The Dump which is obtained can be analysed by an ABAP person and could lead you tot he right issue.
    Hope this helps
    Regards
    Biju

  • Customer Master Definable Attributes to Sales Order and Pricing

    Hello,
    I have a requirement to set a customer master flag using freely definable attributes.  I am planning to use KNA1-KATR10 from the GENERAL Customer Master data.  We do not want the flag to be sales area specific.  The flag will be on the ship to customer.   
    I need to determine how to copy this flag into the sales order and then also to ensure that this field is available for evaluation in a pricing requirement routine. 
    How do i accomplish this?  An alternative would be to use the Customer Grp fields , KNVV-KVGR1 but i am guessing the process would be similar. 
    Best Regards

    If you want to save Katr10 to the order, you will have to
    1. Append new fiield to VBAK within an append structure like zzvbak.
    2. Retrieve Katr10 and move to VBAK in MV45afzz form userexit_move_field_to_vbak.
    3. Append new field Katr10 to pricing communication structure komk in include komkaz.
    4. If you retained Katr10 as field name then you are done since there is a move corresponding from vbak to komk, if not you need to move this to komk in MV45afzz form userexit_pricing_prepare_tkomk.
    The field will now be populated and available in your pricing requirement routine. Hope this helps.
    Matt

  • Block Sales order if pricing condition changed manually (no delivery)

    Hi,
    Requirement is to block sales orders for review by a manager if pricing condition amount is changed manually. Only a manager  should be able to review and release the sales order for billing. There is no delivery, item is service.
    Thanks

    Hi,
    This can be achieved as follows:
    1) SAP Standard updates the field KOMV->KSTEU for respective price condition type as soon as its changed Manually.
    2) Through enhancement automatically delivery block should be set at Sales Order Header, for which User (Sales End User) should not have rights to change.
    3) Respective Sales Manager should receive a mail regarding the same.
    Point '3' can be done manually i.e user will request respective Manager to do the needful.
    RB.

Maybe you are looking for

  • Can I ask for a replace meant of iMac since yjere is a failure of one part every month. Last month lcd replied now optical drive.

    Can I ask for a replace meant of iMac since yjere is a failure of one part every month. Last month lcd replied now optical drive. Imac 27". i do not like the idea of repairing every month. Feel the imacs supplied to India are sub standard ones

  • Dock + Remote apple in the ipod 3g reset while viewing videos

    Hello. I have the following problem is my ipod nano 3g 1.1.3 connected to the dock of apple and driving with the remote apple. The problem is that the iPod is reset when you press forward or play / pause while playing videos, I have tested with the p

  • *More time to Execute*

    Hi, The following code is taking more time to execute... Kindly assist.. check wagetype selection   REFRESH it_p8wage.   CLEAR:  it_p8wage, wa_p8wage, p8wage_flag.   LOOP AT p0008.     DO 20 TIMES     VARYING wa_p8wage-lgart FROM p0008-lga01 NEXT p00

  • PDF Viewer Hangs

    Using Live Cycle and user completes the process of creating a PDF form, wants to preview and PDF Viewer "hangs" Any ideas? -jP

  • Hi i have a question for yours

    Hi; February 2013 en La. Get the apple store and 1 year warranty at the store, the ongoing iPhone 5 my device, I change from store apple store in europe? I would ask for your help Have a nice day.