Carry out new pricing not working in Me23n

Dear Experts,
I am trying to carryout new pricing in purchase order i.e iam going into Item conditions of PO and hit update button on the botton of the conditions tab and select B as the pricing type . The value changes to the new rice and then I save the PO.
After hitting save the values remain unchanged .
Please help on this .

hi,
you sales orders which are already created then you changed the access key. For these order unless you run an update pricing they cannot be updated. Now for the new sales orders which are going to be created if the new key combination matches the sales order criteria then it gets picked up automatically and you dont to do anything.
as we understand from access sequence setup, we do it frm the most specific to the most general ( while setting up the condition tables ie key combinations), So when a condtion record is found whether new key combination or old if its the relevant one and a condition is found for it, it gets picked up automatically.
regards
sadhu kishore

Similar Messages

  • Do not carry out new pricing when plant change in sales order

    Hi,
    I have one z field in additional data tab in sales order. This field store the original plant if anyone has changed plant in Sales order. My requirement is to trigger the pricing in sales order with this old plant. I am not getting any exit for this.
    Suggest me the solution.

    Hi
    In the comments for the subroutine, it says:
    *       Parameter new_pricing controls the new pricing in the calling *
    *       form. It can be filled according the the allowed values       *
    *       of domain KNPRS (Pricing type), for example:                  *
    *       ' ' = no new pricing                                          *
    *       B   = Carry out new pricing                                   *
    *       C   = Copy manual pricing elements and redetermine the others
    So, you must write:
    If VBAP_WERKS NE *VBAP_WERKS.
      new_pricing = 'B'.
    Endif.
    Regards
    Eduardo
    Edited by: E_Hinojosa on Aug 25, 2011 8:21 AM

  • Carry out new pricing for SO

    Hi Guys,
    Is there any function module/BAPI to carry out new pricing for sales order.
    Somehow my BDC for VA02 is not working and
    my bdc does only carrying out new pricing for that order.
    This I want to replace with BAPI.
    Could you please help me in this regard
    Prashant

    Hi,
    An alternative solution is to use the BAPI to make a general CHANGE to the sales order and let the user exit take care of the repricing.
    Calling program :
      ls_order_header_inx-updateflag = 'U'.
        ls_logic_switch-pricing = 'C'.
        ld_bapi_reprice = 'C'.
    Memory ID is read in MV45AFZB, form USEREXIT_NEW_PRICING_VBKD
        EXPORT ld_bapi_reprice TO MEMORY ID 'Z_BAPI_REPRICE'.
        CALL FUNCTION 'BAPI_SALESORDER_CHANGE'
             EXPORTING
                  salesdocument    = p_vbeln
                  order_header_inx = ls_order_header_inx
                  logic_switch     = ls_logic_switch
             TABLES
                  return           = gt_return.
        FREE MEMORY ID 'Z_BAPI_REPRICE'.
        READ TABLE gt_return INTO ls_return
        WITH KEY type = 'E'.
        IF sy-subrc NE 0.
          CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'
               EXPORTING
                    wait = ''. " No wait between orders
        ELSE.
          ls_error-vbeln = p_vbeln.
          ls_error-text =  ls_return-message.
          APPEND  ls_error TO gt_error.
        ENDIF.
    MV45AFZB, USEREXIT_NEW_PRICING_VBKD :
    DATA : ld_bapi_reprice TYPE knprs.
    Memory ID is exported from program ZPSF_01_TOOLKIT_F01
      IMPORT ld_bapi_reprice FROM MEMORY ID 'Z_BAPI_REPRICE'.
      IF NOT ld_bapi_reprice IS INITIAL
      AND sy-subrc IS INITIAL.
        new_pricing = ld_bapi_reprice.
      ENDIF.

  • Carry out new pricing when key in access field is changed

    Need automatic update to 'carry out new pricing' when field that is part of key combination is changed.
    The system recognized the change when viewed in analysis, but amount is not updated unless "Update" button is manually pressed.

    hi,
    you sales orders which are already created then you changed the access key. For these order unless you run an update pricing they cannot be updated. Now for the new sales orders which are going to be created if the new key combination matches the sales order criteria then it gets picked up automatically and you dont to do anything.
    as we understand from access sequence setup, we do it frm the most specific to the most general ( while setting up the condition tables ie key combinations), So when a condtion record is found whether new key combination or old if its the relevant one and a condition is found for it, it gets picked up automatically.
    regards
    sadhu kishore

  • Carry out new pricing at invoice

    Hi all,
    My requirement is to carry out pricing at invoice and not copy from sales order.
    For this, I goto tcode VTFL and opened copy control for LF to F1. I changed pricing type from C to B but still system is copying price from order and not carry out new pricing automatically at the time of invoice creation.
    please update that what needs to be done.
    Many Thanks.,
    AI.

    I changed pricing type from C to B
    First please dont post the same question related to an issue in multiple times.
    Coming to the issue, you have to test this by creating a new sale order.  Existing orders will not change once you change the copy controls.  It will have impact only on the newly created documents.
    Last but not least, as for as possible, continue your queries in the other thread and close this one.
    thanks
    G. Lakshmipathi

  • Need exit/badi to carry out new pricing(b) for SO coming from CRM...

    Hello Experts,
    We are transferring internet sales orders from CRM to R/3. Now, what I need to do is
    to trigger the 'carry out new pricing' for all the line items. Just like when we click
    the update button in the conditions tab and click on the 'carry new pricing' option even though
    user only displays the sales order in R/3.
    Hope you can help me guys. Thank you and take care!

    No Answer...

  • User-exit for  carry out new pricing while sales order save automatically

    Hi all,
    I need to carry out new pricing while sales order save automatically. Please any one help me to finding proper user-exit to achieve my requirement.
    Thanking You.
    Moderator message: please search for available information.
    Edited by: Thomas Zloch on Jan 11, 2012 12:53 PM

    Pl help.

  • How to Carry out New Pricing in Sales Order userexit

    Hello,
    In userexit save_document_prepare of program MV45AFZZ, I'm adding an entry in XKOMV for a header pricing condition ZD01.  After saving, if I go back into the order and go directly into the line item conditions, the ZD01 does not exists at the item level.  If I navigate the the header conditions and then go back to the items, ZD01 appears as it should.  I believe what is happening is that the header condition is not being distributed to the line items unless New Pricing is carried out.  If I manually enter the ZD01 condiiton instead of relying on the userexit code, everything works fine.  The header condition is properly distributed to the line items.  Therefore, I believe the configuration is correct.  My question is, "How can I programatically trigger New Pricing from a sales order userexit".  Is this possible in SAVE_DOCUMENT_PREPARE or do I need to do it somewhere else.".
    Thank you,

    this problem has been resolved.  The problem was that I was appending the header condition to XKOMV instead of inserting the header condition as the first line in the table.  SAP will carry out the new pricing if the header condition is on the first line.

  • Carry out new pricing by changing item category

    Hi All,
    Is it possible to carry out a new pricing depending on item category. The requirement is when i change the item category it should trigger new pricing procedure. Like example if it is tann one pricing procedure and if it change to another category like ztann it should trigger new pricing procedure .
    I know that  pricing procedure not defined on item category. I tried with the exit form userexit_new_pricing_vbap changing new_pricing. But i dont know what to write in that. I am technical guy . Please share me your idea if any one did this before.
    Regards,
    Madhu.
    Edited by: madhurao123 on Mar 10, 2011 5:54 PM

    Dear Lakshmipathy,
    I have tried the option you have suggested but was unable t o make any progress. I have done the following steps:
    In VKOA I have done the revenue account determination based on Acct Assign Grp: Customer, Acct. Assign Grp: Material, and Item Category. Despite this the correct G/L accounts are not being picked up. Can you please suggest where I may be going wrong.
    The scenario is as follows for all Item categories except ZTNN::
    If Customer and Material are taxable @ 5%VAT then pick G/L1
    If Customer and Material are taxable @ 15% VAT then pick G/L 2
    If Customer and Material are taxable @ 2% CST then pick G/L 3
    If Customer and Material are taxable @ 5% CST then pick G/L 4
    If Customer and Material are taxable @ 15% CST then pick G/L 5
    For Item Category ZTNN:
    If Customer and Material are taxable @ 5%VAT then pick G/L6
    If Customer and Material are taxable @ 15% VAT then pick G/L 6
    If Customer and Material are taxable @ 2% CST then pick G/L 6
    If Customer and Material are taxable @ 5% CST then pick G/L 6
    If Customer and Material are taxable @ 15% CST then pick G/L 6
    Your suggestions would be greatly appreciated.
    Thanks and Regards,
    Rohan Gudavalli

  • MY FIREFOX NEW TAB NOT WORKING NIETHER WITH + NOR WITH RIGHT CLICKING ON TAB OR DOUBLE CLICK ON TAB

    MY FIREFOX NEW TAB NOT WORKING NIETHER WITH + NOR WITH RIGHT CLICKING ON TAB OR DOUBLE CLICKING ON TAB

    '''Try Firefox Safe Mode''' to see if the problem goes away. [[Troubleshoot Firefox issues using Safe Mode|Firefox Safe Mode]] is a troubleshooting mode that temporarily turns off hardware acceleration, resets some settings, and disables add-ons (extensions and themes).
    If Firefox is open, you can restart in Firefox Safe Mode from the Help menu:
    *In Firefox 29.0 and above, click the menu button [[Image:New Fx Menu]], click Help [[Image:Help-29]] and select ''Restart with Add-ons Disabled''.
    *In previous Firefox versions, click on the Firefox button at the top left of the Firefox window and click on ''Help'' (or click on ''Help'' in the Menu bar, if you don't have a Firefox button) then click on ''Restart with Add-ons Disabled''.
    If Firefox is not running, you can start Firefox in Safe Mode as follows:
    * On Windows: Hold the '''Shift''' key when you open the Firefox desktop or Start menu shortcut.
    * On Mac: Hold the '''option''' key while starting Firefox.
    * On Linux: Quit Firefox, go to your Terminal and run ''firefox -safe-mode'' <br>(you may need to specify the Firefox installation path e.g. /usr/lib/firefox)
    When the Firefox Safe Mode window appears, select "Start in Safe Mode".<br>
    [[Image:Safe Mode Fx 15 - Win]]
    '''''If the issue is not present in Firefox Safe Mode''''', your problem is probably caused by an extension, theme, or hardware acceleration. Please follow the steps in the [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]] article to find the cause.
    ''To exit Firefox Safe Mode, just close Firefox and wait a few seconds before opening Firefox for normal use again.''
    When you figure out what's causing your issues, please let us know. It might help others with the same problem.

  • Read Out loud is not working

    I can't get some PDF to read out loud. Any idea why? I am able to select and copy the texts so it's not an image for sure. If I paste the texts to word or some other app, I can use the text to speech from my Mac OS to read out loud and it's working fine. Any suggestion is much appreciated.

    Here's something new. This is one, http://www.ponemon.org/local/upload/file/NokNokWP_FINAL_3.pdf, of the many files that read out loud did not work. After reading your email, I thought I tried something new. The PDF in this link here read out loud fine in Safari and Chrome browser but when I downloaded to my computer it did not work in both  Reader or Pro v11.0.10. I have a MacBook Pro Yosemite. That is very strange.

  • HT5634 i have upgraded to windows 8 but found out it will not work? How do I go back to windows 7?

    i have upgraded to windows 8 but found out it will not work? How do I go back to windows 7?

    Welcome to Apple Support Communities
    You have to format your Windows volume and install Windows 7. First, insert the Windows 7 DVD and hold the C key while your computer is starting. Then, follow the steps and, at partitioning step, choose your Windows volume (it's the last volume listed in your display), choose Advanced options, and format it. Then, install Windows.
    Finally, after installing it, install the Boot Camp support software > http://support.apple.com/kb/DL1630
    Windows 8 is only compatible with some new computers. See > http://support.apple.com/kb/HT5634

  • XI ALERTS with out BPM Are not working.

    Hi All,
      We are on XI 3.0 sp14. Alerts with out BPM are not working. I want to apply notes 906044, 876546. It says i need to make some changes to the following functions. I could not able to find these Function modules in the first place. Can some one help me out?
    <b>Note -
    Object -
         Name</b>
    906044  -
    function---- SXMS_ALERT_ERROR_RECEIVE
    906044  -
    function --- SXMS_ALERT_ERROR_SEND
    906044&876546--method ---CL_XI_ALERT HAS_ACTIVE_RULE
    906044  -
    method -
      CL_XI_ALERT_UTIL GET_MDT_URL
    905896   -
    method  -
    CL_XI_ALERT CREATE_ALERT
    Thank you
    Ganges Leaves.

    Ganges
    Login into XI Developement and give SE37 Transaction. Then you give SXMS_ALERT_ERROR_RECEIVE and click 'display'.
    Then you check for the methods CL_XI_ALERT HAS_ACTIVE_RULE, CL_XI_ALERT_UTIL GET_MDT_URL, CL_XI_ALERT CREATE_ALERT and make the changes according to service notes. If you dont find this methods in this function then you can try in SXMS_ALERT_ERROR_SEND.
    Regards,
    ---Mohan

  • I have just updated my iPhone 4 with latest IOS 7 and now wi fi greyed out and Bluetooth not working. Tried reset, restore everything - no use. Its out of warranty too. I refuse to pay for a new phone when clearly this is an apple issue not phone issue.

    Can anyone help? I updated my iPhone 4 with latest iOS 7 and now wi fi is greyed out, Bluetooth won't work and tbh am so angry! Phone now out of warranty so apple won't help without it costing me. Don't want to pay as its an apple problem not phone problem. It worked ok before. Tried everything, even clearing it down. Can't even back it up now unless I connect to a pc!

    I have not had wifi since November when I upgraded to the newest IOS version.  I called the Apple help line and they told me some things to do and I tried them all and they worked for a few hours and then wifi shut off again.  I kept doing what they told me and it worked for a couple more days and then I could never turn it on again.  My blue tooth doesn't work either.  I had to actually increase my data usage with AT&T becuase of this.  When I did that in December I went to the Apple store and was told that it is a hardware issue and since my phone is out of warranty I would have to pay for a new phone because they could not fix the issue.  My upgrade isn't up until June 2014 so not only do I have to wait for the upgrade and I am not paying for a new phone but I have to pay $10 plus extra a month on my cell phone bill because I was going over on my Data!!!  I have been beyond upset about this and Apple is not doing anything about this nor did they offer up some way to resolve the issue because obviously it is not just some rare incident if several people are having this issue.  Who knows how many people out there have had this issue and have not said anything about it.  Now there is a newer update that I can't do because it requires wifi in order to download.
    June can not get here fast enough and I may not go back to Iphone after dealing with this for so long with no help from Apple.

  • Video out to tv not working

    Hello,
    I just unpacked my new iPod classic and wanted to use the video out option to watch a movie from my new iPod on my TV. Somehow I can get the "TV Out" setting to say "ask" or "TV" like on my last iPod video 5.5. Does anybody know what is causing this problem or do I have to return the item? It´s a real bugger!
    I also experienced the click wheel response is very, very slow!
    Looking forward to reading your thoughts on this...

    From what I have read, no, what you wish to do will not work. Sorry to be the bearer of bad news. I hope that it's possible for Apple to rectify this problem with a firmware update. If that's not possible (e.g. it's a hardware-based problem), they should just issue a recall of all classics, fix the hardware, and rerelease it later after the problem has been corrected.
    It is unimaginable to me that Apple could have intended to invalidate monumental quantities of third-party (and even their own!) accessories for those who bought the new classics and touches and nanos. I mean, these are some of Apple's best customers: those who have purchased multiple iPods and bought into the whole accessory market too. Most companies are hesitant to burn their best customers like this, and for good reason: this kind of stuff can easily turn loyal customers into former customers, and via word-of-mouth can also turn potential customers into non-customers.

Maybe you are looking for