Purchase requisition material price

Hi all
My understanding is that the valuation price of a material (In my case MAP) is defaulted into the purchase requisition valuation price.
I have a bit of a funny scenario here. 
I have a plant WB00 (requesting plant - no stock is kept in this plant) (we manually update the MAP for release purpose on the PREQ)
I have another plant (SWB0) (Supplying plant - this plant holds stock and seen as vendor.  Requsting plant will create order against this plant).
I have now activated Split Valuation on plant SWB0.
I have the following
Material 1 - SWB0 - Val Type "" - R200
Material 1 - SWB0 - Val Type New - R300
Material 1 - SWB0 - Val Type Reclaim - R100
Material 1 is in Plant SWB0 and Sloc WB52.
On Plant WB00 there is no Split valuation.
In the account view of Material 1 in plant WB00, the MAP price is R300.
When I create the PReq for this material and enter the plant WB00, the price comes as R300.
However when I put in the Sloc WB52 o nthe preq, it then changes the price on to R200.
I require it to stay at R300.  What could I be doing wrong.
Thanks

Thanks
But as you will see, that is not happening.
The MAP price on plant WB00 is R300.
When I create the purchase requisition it initially has R300, but when I populate the sloc, it changes the price to R200. I cannot understand why.
R200 is the average price on plant SWB0, and Plant SWB0, SLOC WB52, is the supplying plant for the material.
It seems to be taking the price from there, which is WRONG.
WB00 should be independant?

Similar Messages

  • Purchase requisition -Valuation price and Quantity greyed out

    Hi,
    I created purchase requsition with Release strategy, once i have enter Valuation price and quantity and check the document Release strategy Invoked.
    And Valuation ,quantity fields greyed out before saving the requisition.
    Please help me.
    Regards,
    Sridhart

    Why are you entering the Valuation price in PR creation.
    If a material master record exists for the requested material, the price is automatically taken from the valuation price field.
    If no material master record exists, you must enter a price when creating the purchase requisition.
    Please elaborate in detail.

  • PM (T-code IW32) - Creation of purchase requisition permitted price=0$

    Hi,
    In IW32, we are able to enter a price of 0,00$ and save the purchase requisition. In ME51N, this action is not possible, we have to enter a price > 0,00$. Why are we able to save a 0,00$ purchase requisition using IW32, and not ME51N? We should not be able to create a 0,00$ purchase requisition in IW32 !
    IW32 procedure of PO creation:
    1. Run IW32
    2. Enter order number
    3. Go to «components» table
    4. DO NOT enter component, enter description, reqmnt qty, UM, IC, Plnt, OpAc
    5. Select the line item
    6. Click on the Purchasing button at the bottom left of the screen
    7. Enter Price = 0,00$, G/L account number, and save
    8. Quit IW32 transaction
    9. Go back in IW32, select the line item, click on the purchasing button, and there will now be a purchasing requisition number in the Purchasing Data table.
    10. Go in ME54N. You will now be able to release a 0,00$ purchase requisition....
    The system SHOULD NOT allow me to create and release a 0,00$ purchase requisition. How can I fix this?
    Thanks,
    Julien

    Hi,
    Go to SPRO > MM > Purchasing > Purchase Requisition > Define Screen Layout at Document Level > Here for Field selection key "ESTF" i.e. Requisition from prodn. order, mark field "Price and price unit" as required under selection group 'Quantity and price'.
    It will start asking Valuation Price during Order Creation for PR.

  • Purchase requisition valuation price

    Hi Gurus
    System prompts me to enter the valuation price in purchasing screen in the sales order when I select the item category TAS/TAB.
    I maintained the valuation price using MR21 but still does not pick it. Info record too exists.
    Is something thing? Please advice on how to fix this?
    Thanks
    Kumar

    Hi,
    Go to SPRO > Materials Management > Purchasing > Purchase Requisitions > Define Screen Layout at Document Level > Here for Field Selection Key "ESTV", under Field Selection Group "Quantity and Price", mark field "Price and price unit" as optional.

  • Copy Purchase Requisition - Material Short Text

    When creating a new purchase requisition by copying an existing purchase requisition using the document overview in ME51N, the material short text is always copied from material master (makt-MAKTX) instead of the line item (eban-TXZ01) from the source purchase requisition.
    Is there a way to set up copy control for short texts as there is for long texts ?
    using ECC 6.0
    thanks in advance

    Hello Thomas,
    Unfortunately no, when you copy the PR from another PR the System redetermined some  fields from the material master,these fields are :
    Planned Delivery Time,
    Unit of Measure,
    Material Short Text  
    Goods Receipt Processing Time,
    Material Category,
    MRP Controller...
    This system behaviour is intended since many companies more often change the data in the material master rather than copying a purchase requisition that contains changed material data.
    Regards,
    Mauro

  • Info record in purchase requisition

    Hi all,
    when I create a stock material purchase requisition for a material with info record I don't see the price of info record but the price of material master. I see it only when I create the purchase order.
    Is there any way to see in purchase requisition the price of Info record?
    Thanks in advance.
    Valem

    Hi Valerio,
    Purchase requisition is an internal document. When u create a requisition for a material the valuation price will be pulled from material master only. whereas Purchase order is an external document it gets the valuation price from the info record maintained for that vendor/material combination.  It will not take the valuation price mentioned in purchase requisition.
    Hope this helps. Reward if u find this useful.
    regards
    Anand.C

  • Purchase requisition- Mat. description problem.

    Hi Experts,
    I am stuck with one problem regarding Purchase requisition material description. The scenario is as follows.
    We have two types of PR creation. With or without material code.
    Material description is set to display only. But if the user enters the material code and random description and then press Enter button then the system doesnt pick the description from MAKT and keep the random description and disabling it for input. As shown in below screen shot.
    I want to restrict this, So I used the enhancement - MEREQ001 in CMOD and exit - EXIT_SAPLMEREQ_010  and INCLUDE ZXM02U12 , to compare the material description and change it to master data from table MAKT. But the problem here is the original PR data fetched in to the exit is not changing. I have written below code.
    +++++++++++++++++++++++++++++++++++++++++++++
    LOOP AT im_t_eban INTO l_s_eban.
    IF l_s_eban-matnr <> ''.
            SELECT SINGLE maktx FROM makt INTO mde
              WHERE matnr = l_s_eban-matnr.
              IF mde <> l_s_eban-txz01 .
                MESSAGE w007(zm_msg) . " DISPLAY LIKE 'E'.
                l_s_eban-txz01 = mde.
                  MODIFY im_t_eban FROM l_s_eban TRANSPORTING txz01. " THIS LINE IS GIVING SYNTAX ERROR THAT im_t_eban is not changeable
              ENDIF.
          ENDIF.
    ENDLOOP.
    ++++++++++++++++++++++++++++++++++++++
    So how to solve this problem??
    Or is there any other way to restrict the user to change the material description ??
    Thanks,
    Vishal .

    hello abaper,
    have a look on this
    Hi Gaurav, try this:
    http://scn.sap.com/thread/3297154
    FIELD-SYMBOLS: <T_EBAN> type mereq_t_eban.
    FIELD-SYMBOLS: <im_t_eban> type mereq_t_eban.
    DATA: wa_eban LIKE eban.
    ASSIGN ('(SAPLMEREQ)LT_EBAN[]') to  <T_EBAN> .   <-Uncommet this line
    LOOP AT <im_t_eban> INTO wa_eban.
    * => here you can change the value
       SELECT SINGLE matnr maktx into (mcode,mdesc)
             FROM makt
             WHERE matnr = wa_eban-matnr.
         if sy-subrc = 0 .
         move mdesc to wa_eban-txz01.
       MODIFY <T_EBAN> from wa_eban TRANSPORTING txz01.   <-Change the field-symbol for the one that is referencing the standard table
         ENDIF.
    ENDLOOP.

  • Material Price Evaluation

    Good Evening.
    In my SAP R/3, release 4.7, we have a material price evaluation with Standard Price.
    The material price, is updated every year, with MR21, but we have only a valid price, in table MBEW (MBEW-STPRS).
    In next months, this logic is going to be changed, with another one.
    My customer will manage material price evaluation through the Purchase Order Material  Price. So, if the same material i am going to buy has different prices, after the goods entry, i need to save the several prices, and not the standard one..as now..
    For ex. Material Quantity Price
                   XXX ,     1           2                                 
                   XXX ,     1           3                        
                   XXX ,     1           4  
    Therefore, i will consider more than one valid price (and not the average).
    My question is: is there any way to manage different prices, in standard procedures? Or shall i use a custom solution?
    I need the price information, because the following goods issue will consider both the quantity and the different price.
    I thank you in advance for your cooperation.
    Francesco

    Hi FranciscoPas,
    As per my understanding, you want to valuate each of your goods movement at PO price .. .. ...
      For example :
       PO for 1 quantity  price is $ 500 .
    In Inventory the accounting document will have two entries   one is material account (BSX ) and another is GR/IR clearing account ( WRX) ... ... .
    As per your requirement you want that the value to be posted to material account should equate to PO ....
    One more option to do this is to manage material by Moving average price so that at each posting the accounting will be posted with the price in PO ...
    However making material to Moving average price might not be acceptable by your business ... not sure You have to check this ..
    I can comment on other options which are suggested above :
    >> Split valuation can not be applied here as you need to create accounting view for each segment you want to maintain price  and  creating accounting view for every new goods movement is off-course not feasible
    >> Automatic batch creation for each goods movement by setting valuation category as X , for which prices will be maintained for each goods movement and every time new batches will be created .
    Do you want to test this functionality in your system , I can help you in creating examples ?
    Rgs
    Shashank

  • Purchase Requisition - Adopt requisition price in purchase order

    Hello all,
    In Purchase Requisition there is the field BPUEB (Adopt requisition price in purchase order) that is used to transfer the valuation price from the PR to the PO.
    The field's values are :
    0. Do not adopt
    1. As gross price
    2. As net price
    The default value is "Do not adopt".
    How can I change the default value to "As gross price" ?
    Thanks,
    Isaac

    Hi,
    you can control this via the user parameter EVO.
    the various combinations can be configured in SPRO
    Material management > Purchasing > Environement data > Define default values for buyers
    Choose an entry (or create a new one)
    Go to the price adoption tab and set the "always copy" option and flag the "manual becomes gross price".
    Allocate this code to the EVO parameter on the user profile settings.
    Steve B

  • Automatic convert of planned order to purchase requisition with latest info price

    Dear Friends,
    Our client want to convert planned order to purchase requisition through background job,but they want to pur requisition picking price should be latest info record price.
    how can i map in to sap,is that possible in T.CODE MDUM, pl help on this requirement.
    Thanks &regards,
    Sabhapathy R

    Hi Sabhapathy R,
    The price in the Purchase Requisition is the Valuation Price of the material master.
    If you press F1 in the Purchase Requisition on the field Valuation Price at tab Valuation , you will see the SAP documentation:
    Price in Purchase Requisition
    Shows the price of the requested material per price  unit.
    Use
    The price and quantity set out in the purchase
    requisition determine the value of the purchase requisition item or
    purchase requisition. In turn, this value is applied in determining the release
    strategy for the requisition.
    In Customizing for Purchasing under Purchase Requisition ->
    Define Screen Layout at Document Level, you can set price and price unit.
    The Valuation price field can be set as a mandatory or optional input
    field.
    Procedure
    Input mandatory:
    If a material master record exists for the
    requested material, the price is automatically taken from the valuation
    price field.
    This is explained in several threadhs:
    Info record price not comming in PR after "Assign source of Supply" in PR
    The price of the Info Record will be determined when the Purchase Order is created.
    If you want price to picks from your Info Record when the PR is created, then check for a user exit or BAdI.
    Thanks and Regards,
    Mariano

  • Purchase Requisition - Stock Tranport Order - Valuation Price

    Hello,
    The creation of the Purchase Requisition regarding the STO is carried out either by the Material Requirement Planning (MRP) or manually.
    When it occurs manually, the purchase requisition have the following parameters in the tab Source of Supply:
    - Agreement = 46xxxA
    - Purchase Organisation = 1000
    - Fixed Vendor = 9000
    - Supplying plant = 5000
    When it occurs with the help of the MRP, the purchase requisition have the following parameters in the tab Source of Supply:
    - Agreement = 46xxxA
    - Purchase Organisation = 1000
    - Supplying plant = 5000
    The Material is managed with a different standard price on the receiving plant and the supllying plant:
    -Supplying plant: 0,14
    -Receiving plant: 0,34
    When the PR is created manually, it seems that the system picked up the standard price of the supplying plant which is equal to 0,14 whereas during the MRP process, the PR seems to pick up the standard price of the receiving plant.
    Could you confirm my point of view?
    Thank you in advance for your help
    Regards
    Pierre

    Hi,
    What is your process of STO. Is it Intra company or Inter company.
    For your knowledge in intracompany process the valuation occurs as per the price of issuing plant and in Inter company process the valuation happens in the supplying plant as per the price maintained in material supplying  plant and in receiving plant it happens as per the price maintained in Receiving plant.
    Thanks,
    Atal

  • Changing price from purchase requisition to purchase order

    Hi MM gurus,
    I've created a purchase requisition and I've maitained manually a valuation price (ME51N).
    Then, I've tried to create a purchase order in reference to this purchase requisition (ME59N or ME21N).
    I've noticed that system brings a net price completely different from the valuation price I've maitained in PR AND from the price maitained in the info record.
    What's wrong ?
    Regards,
    Bahia.
    Edited by: Bahia M. on Oct 6, 2009 10:23 AM

    Hi,
    First of all PR price will never fetch in PO....Prices which comes in PR are valuation prices....same u can check in MM03 in accounting view...
    Now coming to your next query..Why Prices are not fetching from info record...Reason may be...you have created enough PO's with combination of material ,vendor ,plant and  p.org...So the prices will get updated in order price history...Same you can check in ME1P...
    what i will suggest is, create new material, and plant, then create frsh Info record and PO..def it will work.
    Utsav

  • Standard Purchase Price List @ Purchase Requisitions

    Hi everyone
    I am trying to find a way to maintain a standard purchase price list that is used at the Purchase Requisition creation.
    Our sourcing managers will negotiate prices with vendors. Once these prices are set, any purchase requisition created should default to this purchase price.
    Using PIR did not work - maybe some configuration is required.
    I do not want to define contracts - because in essence there is no contract.
    Can someone help..
    Thanks

    No, nothing else than standard or moving average price field from material master (depends on price control).
    if you want any other price in the PR then you may need to develope an individual solution

  • Last price in a purchase requisition

    Hello to everyone,
    is there any way to get in a purchase requisition the last price of a purchase order for a material without any development?
    Regards

    Dear,
    The price which you see in the Purchase Requisition generally comes from Material master record.Same you can see in MM03 under accounting 1 view.
    This is the valuation price which generally fetches in MMR after calculating Moving average / standard  price .
    The same price will fetch in Purchase requisitoin which signifies the valuation price of material.
    So it will never fetch your Last PO price in the PR.
    Hope it helps.
    Utsav

  • Can Purchase requisition carry on prices to PO?

    Hi gurus,
    I have automatically created Purchase Requisition from sales order. I want this Purchase Requisition to carry the prices to the Purchase orders. Is this possible?
    Can I make a PO referencing the PR and have the prices I put in the sales order?
    Thank u in advance

    Dear Theodoros  ,
    In sales order you give price for the customer, but in PO this is for the vendor.
    If you want prices to come automatically in PO w.r.t PR, you can maintain info record for vendor & material.
    Give that info record no. in PR, system will copy it to PO for automatic price.
    pl. update.
    Ravi

Maybe you are looking for

  • Excise Invoice for Purchase and Sales

    Dear All,       I am getting the problem regarding excise invoice for Purchase and Sales.      In item master i Define the item as Excisiable, that item having Purchase and Sales.     For Purchases I am going to post the Incoming Excise Invoice but  

  • Radeon HD 7730 graphical artifacts (open source driver)

    Hi, I'm not very familiar with AMD video cards, so I hope there's someone with more knowledge on this topic, who can help me with this issue. With no xorg configuration I get this artifacts after X starts (same in KDM): With custom 20-radeon.conf (pr

  • Can't parse beyond a certain point... HELP!!

    Hey folks, A cute little problem happens to me with a SAX parser: I have an XML document with a number of "objects" in it. All the objects are made up of the same attributes. If I parse the whole document and retrieve the values of every element succ

  • Drag-drop data column sorting

    Hey guys, Does any one know how to achieve drag-drop data column sorting? I tried, but could not find an efficient way to do this. It would be an awesome spry feature if possible, but if someone else knows how to do this already it would help. Thanks

  • How to transfer IDOC information to BUT000?

    Hi, We are working on transferring Business Partner Master Data from SAP HR system to SAP CRM system through IDOCs. The changes done in the standard SAP fields like (Partner No, Fist name, Last name etc) are transferred to BUT000 in SAP CRM successfu