Use of Std Price in APO

Hi All,
Please let me know the use of standard price in APO that is updated from R3. Our scenario in APO include DP, CTM, deployment and TLB. We do not run SNP optimizer.
As CTM does not recommend based on cost, can std price field be deleted without affecting anything in APO in the scenario mentioned.
This is as per our client requirement, request for speedy response.
Thanks,
Umesh

Hi Umesh,
I am not clear on your requiment.
As Gustavo said Standard price does not come to APO from R3. Even though in your environment standard price is transferred to APO using custome modifications you should have business reason/use behind that.
Even if you are having standard price in custome field and If you are using standard CTM, Deployment (heuristic) and TLB then it will not impact any of the standard functionality.
If you can give more details about your scenario, it will be more helpful.
Regards,
Harshil Desai

Similar Messages

  • Problem in bdc to change  std price to moving price

    hi
    I had created BDC for changing std price ' S ' to moving price ' V ' . I had done recording for MM02 Trans.
    At the time of creation of material ,MM person selects different views for same type of material .
    moving price presents  in Accounting 1 View. In recording this view was at 13th position  .but If I check my BDC for other material while running BDC in foreground it takes MRP1 view which is at 13th position 
    because here the no of views are more as compared to the recorded material .Again position of recording is also not matching.
    please advice what to do in this case ?
    Thanks in Advance.
    Regards,
    Atul

    hiii,
    take the PSTAT field from mara for that particular material and make the following changes in ur code.
      PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         '1' 'SAPLMGMM' '0060',
         ' ' 'BDC_CURSOR' 'RMMG1-MATNR',
         ' ' 'BDC_OKCODE' '/00',
         ' ' 'RMMG1-MATNR' new_material,
         ' ' 'RMMG1-MBRSH' ind_sec,
         ' ' 'RMMG1-MTART' mat_type.
    PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
           ' ' 'BDC_OKCODE' '=P+'.
    SEARCH pstat FOR 'K'. "BASIC DATA
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(01)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(02)' 'X'.
      ENDIF.
        SEARCH pstat FOR 'V'. "SALES ORG DATA
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(04)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(05)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(06)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(07)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(08)' 'X'.
      ENDIF.
      CLEAR flag_pur.
      SEARCH pstat FOR 'E'. "PURCHASING
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(09)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(10)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(11)' 'X'.
    *************SHAFI********
        flag_pur = 'X'.
      ENDIF.
        SEARCH pstat FOR 'D'. "MRP
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(12)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(13)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(14)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(15)' 'X'.
      ENDIF.
    SEARCH pstat FOR 'P'. "FORECASTING
    IF sy-subrc = 0.
       PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
        ' ' 'MSICHTAUSW-KZSEL(16)' 'X'.
    ENDIF.
      SEARCH pstat FOR 'A'. "WORK SCHEDULING
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(17)' 'X'.
      ENDIF.
      PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
             '1' 'SAPLMGMM' '0070',
           ' ' 'BDC_OKCODE' '=ENTR'.
      SEARCH pstat FOR 'Z'. "GENERAL PLANT DATA/STORAGE LOCATION
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(01)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(02)' 'X'.
      ENDIF.
    ****************shafi**********
      IF NOT v_drg IS INITIAL.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
        ' ' 'MSICHTAUSW-KZSEL(02)' 'X'.
      ENDIF.
      SEARCH pstat FOR 'S'. "WAREHOUSE MGMT
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(03)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(04)' 'X'.
      ENDIF.
      SEARCH pstat FOR 'Q'. "QUALITY MGMT
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(05)' 'X'.
      ENDIF.
      SEARCH pstat FOR 'B'. "ACCOUNTING
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(06)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(07)' 'X'.
      ENDIF.
      SEARCH pstat FOR 'G'. "COSTING
      IF sy-subrc = 0.
        PERFORM POPULATE_BDC_TAB1  tables itab1 USING :
         ' ' 'MSICHTAUSW-KZSEL(08)' 'X',
         ' ' 'MSICHTAUSW-KZSEL(09)' 'X'.
      ENDIF.
    make sure that u have the ok code 'P+' for view which are displayed after u press page down event.
    Hope it helps u..
    Regards,
    Anil N.

  • Set up std. price for proc.type F parts (External Procurement)

    Experts,
    what is the comon way to set up Std. price for materials with Proc.Type F (External procurement). Current I am using KKPAN and set cost out of PIR and material burden as seperate line.
    Looking for a way to have the material burden as fixed value in the system which I can use as base for calculation.
    Thanks in advance
    Jörg

    Dear ,
    For any FG material you should have Standard Price (S)  in Cost2 view  getting updated thrugh CK24 after ck11n done during production process .
    For any Externally procured item , you should have MAP or Planned price with Valdidty .Generally duing planned cost estimaiton , planned price will be considered  while you will do good issue agianst production order , systm will consider  the MAP to calcualte the cost of the material .
    Now to update the price you should carry out MR21 with new price for company code , validdity date , price control indicator  and valution variant .
    Generally in project scinario , you can use MAP for FG material .
    refer :
    http://help.sap.com/saphelp_47x200/helpdata/en/47/60ff6249f011d1894c0000e829fbbd/content.htm
    http://www.sap-img.com/materials/price-control-v-or-s-in-material-type.htm
    http://help.sap.com/saphelp_47x200/helpdata/en/47/60ff0749f011d1894c0000e829fbbd/content.htm
    Regards
    JH

  • Moving average prices and std prices

    hi friends,
    i have a doubt abt prices...
    which will b assigned for raw materials-standard price? or avg moving price? and why?
    if possible explain clearly about avg.moving price and std.price
    for spit valuation what price we will use??
    help me out..
    thanks in advance...
    venkat

    Standard price are used for products that do not fluctuated frequently.  It is usually used for finished or semi finished products.
    Moving average price are used mainly for raw materials that are purchased externally.  The advantage of using moving average price for your raw materials is that your inventory costs will always reflect the current market cost.
    SAP strongly recommends that you do not select price control V for semi-finished products and finished products, because doing so will very easily cause the calculation of unrealistic valuation prices. SAP recommends: 
    Price control V for raw materials and trading goods; price control S for semi-finished products and products
    We recommend that you only use price control V for materials procured                          
    externally. Materials produced in-house should be subject to a                                 
    standard price control.                                                                        
    Generally all raw materials (ROH), spare parts (ERSA), traded goods (HAWA) etc. are assigned as moving average price (MAP)  because of the accounting practice of accurately valuating the inventory of such materials. These materials are subject to the purchase price fluctuations on a regular basis.
    The semi-finished goods (HALB) and finished products (FERT) are valuated with standard price because of the product costing angle. If these were to be MAP controlled, then finished/semi-finished product valuation would fluctuate due to data entry errors during backflushing of material and labour, production inefficiencies (higher cost) or efficiencies (lower cost). This is not a standard accounting and costing practice
    For Split valuated material it is recommended to use Moving average price

  • How to change std price

    Hi
    For a mat price control is maintained with V, & std price also maintained during creation.
    Now want to change the std price.
    In MR21 its not allowing me to change moving avg price,if price control is V.
    Is there any way? pls advise..

    Hi,
    Use Tcode MASS to change data.
    Go to MASS - select object type as  BUS1001001 (material) - Execute - here select the tab FIELD and select the line with field: price control again execute then enter. input the number from and to of the materials for which you are require to change the price control and execute.
    I hope this helps
    Regards,

  • Material std. price change

    hii
    Can we change the std. price of material...if yes..then pls tell me t.code..?
    regards
    Rekha sharma

    hi rekha,
    Are you talking about changing the "Price control" (Price control S to V) or just a standard price amount in a material?
    If you want just the amount then use MR21. And then give the new value as the new price.
    If you want to change the price control then it has few prerequisites prior change it.
    You need to delete all open PO line items, Production Orders and stocks.
    Then only you can change the control. And it will give all open orders when you try to change it.
    If you delete all then you can use MASS to change it mass level.
    Hope this will helpful.
    thanks & BR
    sandun

  • On costing run, Raw material price in Std price  field is getting updated

    Hi All
    When i am executing costing run (CK40N) for a FG, the price field in Std price for a raw material is getting updated.
    We are maintining price control as "V" in case of raw material.
    Is this right? if not, how can this be avoided.
    Regards
    Rakesh Hase

    HI Ian,
    Given enough time and money, anything is possible....
    You do not say which industry you are operating in. In some SAP industry solutions the functionality you describe is available - if I remember correctly IS Mill Product has something like that. It is available for use by companies that for example make copper cable. They get a regular copper price from an exchange.
    But it would be relatively simple to get a feed from an exchange with the daily closing price, and then write a little program that will read that file and post an MR21 transaction to update the price.

  • Manual changes of Std price in Material master

    Dear friends,
    I am updating the price in material master monthly by std. cost estimate,
    Can it be possible to change the price manually.
    If it can changed manually ..........can anyone tell me how to do it...........
    I tried it by MR21, but it is not allowed in my system..............
    I am in urgent need............
    Thanks & Regards
    Shailesh

    hi shailesh
    To change the std price manually first u have to delete the std cost estimate for that month which has been marked & released . To do that use t- code CKR1 then change the std price using MR21.
    This should work.
    Regards
    Prasad
    Reward if useful

  • Moving Average price & Std price

    Hai friends,
    Any body tell me the difference bet Moving Avg Price & Std Price...
    Actually why we are entering the Std or MAP in Material master..
    What is the Impact in PO...
    Thanks 
    Ros

    Hello Roshan,
    <b>Difference bet Moving Avg Price & Std Price...</b>
    Material price in Material master is represented by Material price Indicator, The main purpose of material price is to valuated the material stock for financial transaction in company. There are two procedures available in the standard system:
    <b>Valuation at standard price</b> : The price is decided by the organization (Costing / Finance / Purchasing / Marketing dept) which is fixed for material, it will not be changed by any inventory or financial transaction, but you can change it with special price change procedure.
    This std price is represented with price indicator S
    Valuation using a standard price has the following features:
    - All inventory postings are carried out at the standard price
    - Variances are posted to price difference accounts
    - Variances are updated
    - Price changes can be monitored
    <b>Valuation at moving average price or (if the material ledger has been activated) periodic unit price</b> : This price is not decided by any organization (but in come case it will decide i.e. to upload the initial stock) but it will automatically updated by the Invnetory transactions (i.e. Goods receipt, Invoice receipt) or financial transaction (Debit/credit material). It will keep changes automatically when there is price difference.
    This MAP is represented with price indicator V
    Valuation using a moving average price results in the following:
    - Goods receipts are posted at the goods receipt value.
    - The price in the material master is adjusted to the delivered price.
    - Price differences occur only in exceptional circumstances.
    - Manual price changes are usually unnecessary. However, they are possible.
    <b>Actually why we are entering the Std or MAP in Material master..</b>
    We are maintaining material price for material stock valuation and inventory transaction valuation.
    <b>What is the Impact in PO...</b>
    The material price does not have impact on PO, but definately it has impact on inventory transactions i.e. GR, GI, IR debit/credit material.
    more info, <a href="http://help.sap.com/saphelp_46c/helpdata/en/47/60ff0749f011d1894c0000e829fbbd/frameset.htm">Price Control</a>
    Hope this helps.
    Regards
    Arif Mansuri

  • Std price and moving avg price

    hii frends...in which scenario we hve to go for std price and moving avg price...
    thnx in adv...

    Generally all raw materials (ROH), spare parts (ERSA), traded goods (HAWA) etc. are assigned as moving average price (MAP) because of the accounting practice of accurately valuating the inventory of such materials. These materials are subject to the purchase price fluctuations on a regular basis.
    Company generally uses moving average on purchased materials with small cost fluctuations.  It is most appropriate when the item is easily obtainable.  The impact on margins are minimized which reduces the need for variance analysis.  Furthermore, the administrative effort is low as there are no cost estimates to maintain.  The cost reflects variances, which are closer to actual costs.
    The semi-finished goods (HALB) and finished products (FERT) are valuated with standard price because of the product costing angle. If these were to be MAP controlled, then finished/semi-finished product valuation would fluctuate due to data entry errors during back flushing of material and labor, production inefficiencies (higher cost) or efficiencies (lower cost). This is not a standard accounting and costing practice.
    Hope this will help you.
    Cheers,
    Parag Mahajan

  • Std price to Moving Avg Price & VICE VERSA

    Dear,
    Im MM01 - Trnx I maintained Moving Avg price ,  i want to convert to Std price  in the given scenorios
    1) Newly created MMR - P.O Created - Mtl not inwarded so far
    2) Mtl already transactions done , so many times.
    Also explain if its Std price to Moving avg what steps need to be done.
    Regards,
    Suresh.P

    Hi
    Under certain conditions, you can change the type of price control:
    From standard price to moving average price :-
    You can make this change at any time. The moving average price (which until now has been updated for informational purposes only) replaces the standard price and is used for valuation from now on.
    From moving average price to standard price:-
    You cannot make this change in the following two cases:
    1. If the material master record is set up as a valuation header record for a material subject to split valuation .
    2. If the standard price comes from costing and is not equal to the moving average price
    If the change is possible, the moving average price becomes the standard price, which is then used for valuation.
    You change the type of price control by overwriting the price control indicator in the material master record with the new indicator.
    Changing the type of price control for a material does not change the value of the material stock, since in both cases the current price becomes the new price.
    I hope it will solve your problem. Please revert back.
    Regards
    Raj.......

  • Std price

    Hi all
    How to change the std price in material master.i had uploaded the materials by lsmw and it is not considering the decimal places while uploaded.
    for eg: if the price is 21.97,it  is getting updated as 2,197.00 in the materail master.
    please guide me in this issue.
    regards
    shaker

    Please check the definition of the currency you are using. Maybe it doesn't allow decimal places.
    Re: DECIMAL NUMBERS NOT ALLOWED IN PRICE FOR STANDARD OR MVAP
    trx: OY04
    Edited by: Csaba Szommer on Mar 19, 2009 10:07 PM

  • Relation between STD Price and Costing

    Hi,
    Could anyone explain about the relation between STD Price and Costing & when and where it gets effected.
    Points will be rewarded.
    Regards

    Hi ,
    Std. Price :-
    A constant price at which a material is valuated without taking goods movements and invoices into account.
    Costing:-
    The value of use of economic goods both tangible and intangible for the creation and sale of goods and services, as well as the acquisition and maintenance of plant and machinery.
    A process that calculates the cost of goods manufactured, or the cost of goods sold, in relation to a product or cost object.
    The results of costing are used to determine the following information:
    Target costs
    Variances for materials produced
    Contribution margin for materials sold
    The costing process is based on the order quantity or the costing lot size in the material master record.
    Edited by: vk on Apr 24, 2008 7:17 AM

  • Product Costing using Moving Average Price of FERT & HALB

    Dear Experts,
    My client wants to use Product Costing functionality by using Moving Average Price instead of Standard Price on Finished Goods & Semi Finished Goods and as per my understanding, SAP recommends to use Standard Price on FERT &  HALB.
    I know if we use moving average price instead of standard price than there will be no concept of variances. Can anyone tell me more about what are the pros and cons of using moving average price instead of standard price in Product Costing?
    Thanks in advance.
    Regards,
    Zain Bashir

    Hi Zain
    Let's take an example
    You have V for Mat A
    You create 3 Prod orders in a month
    Order 1 - Qty 10 - variance 100
    Same for Order 2 and 3..
    At month end, you sold 20 pieces and 10 is in stock..
    When you settle order 1, system will compare order qty and stock.. It will match I.e. 10 = 10... Hence variance of 100 will be posted on stock
    Same will happen for Order 2 and 3... Ideally, only 100 should have posted on stock... but in this case 300 of variance will be posted on stock...
    This is what the note mentioned by Arturo tells, but not so clearly
    Hope this helps
    Br. Ajay M

  • Issue with Std price & Overheads at the time of goods issue

    Hi Experts,
    Please help me on below concern.
    system is taking the std price at the time of goods issue as we marked price control "S" for all materials to track the PPV seperately. So once we run the std costing system is calculating the std cost= direct material+overheads and updating the same in std price in accounting 1 tab.
       But as per our requirement at the time of goods issue system has to take only direct material not overheads,  also one more problem is at the time of actual overheads calculation in the period end , system is calculating overheads on total of direct material+overheads instead of direct material only.
      So please suggest how to config the system to meet my client's requirement.
    Thanks&Regards,
    Spandana.

    Hi Ajay,
      Thanks for your inputs.  In the std costing run system is showing components as below.
    Material cost       110$
    Material overheads  10$
    Labor cost  20$
    Labor Overheads 10$
    In this Material cost 110$ , materials overheads also included(100$+10$). Why system is calculating Material overheads twice please suggest what mistake i did.
      The material overhead percentage rate is 10%.
    As per my client requirement system should calculate components as shown below
    Material cost 100$
    Material overheads 10$
    Labor cost  20$
    Labor overheads 10$
    Please advise its very urgent, your inputs will be rewarded with points.
    Thanks&Regards,
    Spandana.

Maybe you are looking for