Moving Average Price Different Ways of Value Calculation On Date
Moving Average Price Different Ways of Value Calculation On Date
The method to be used is identified on the material master level, thus different materials can use
different methods with in plant.
SAP recommended that, Standard price usually used for finished or semi-finished material.
Moving average price are used mainly for Raw Materials and External Purchases.
The Price of external procured materials varies based on Market, will reflect the current market cost.
Because of this reason we will use the Moving average price for External procured material like raw
materials and Trading materials...etc.
While going to new client implementation, for moving average price will get updated based on initial
stock upload with Value. But for Standard price Control S will be updated based on standard cost
estimation.
They are different ways to check moving average price calculation. If you need to find the Logic to
develop the Report to see Moving average price on period or day basis- Need to find Logic for this.
1. 1) By using Formula
1. 1) By using Formula:
When material is subject to moving average price control, the system values for goods movements in
following way
Example:
1. 1) 20.04.2015 Goods Receipt Quantity 100 Kg and the value of Goods Receipt as 1200 Rs.
2. 2) 21.04.2015 Goods Receipt Quantity 90 kg and the value of Goods receipt as 1100 Rs.
4. 4) 29.04.2015 Goods Receipt Quantity 110Kg and the value of Goods receipt as 1600.
Now I need to find the moving average price on 24.04.2015. Using above formula we can find this.
In standard, we have standard report can view the moving average price.
T-code: S_P00_07000139
Here we need to work out on formula. i.e.; Total valuated value / total valuated stock.
Enter Period and other required fields and execute the Program.
You will get the total valuated value and total valuated stock.
=86500/3250 = 26.62.
Same you can compare with MB5B- Total receipts - total issues with quantity and value.
We can write logic to get the report for moving average price on selection date. As know everybody
we can get latest price from MBEW table. But how we can see when the price was updated and how
it was updated can be get values from CKMI1.
Logic:
1. 1) Pass Material and valuation area (plant) in MBEW table and pick the value of Prod Cost
Est.No. (KALN1)
2. 2) Pass Prod Cost Est no into CKMI1 table – filed name Cost estimation no (KALNR) and pass
year
3. 3) Check the values of quantity and amount and moving average price.
The moving average price will be update when the next accounting entries updated. Example: if you
are checking on 30.04.2015 and next entry updated at 01.05.2015 then you should see moving
average price on 01.05.2015 and it will be the moving average price on 30.04.2015
Here see above entries. On 30.04.2015 the moving average price is 26.62 which is updated on
04.05.2015.
You can calculated summation of all the amount / summation of all the Quantity up to date.
If you want to see on 30.04.2015 then (Qty -> 1000+1500+750 = 3250) and (Value->
25000+45000+16500 = 86500) = 86500/3250 = 26.62.
I. If you want to see latest price when it was updated means -à see the last date entry on date
in CKMI1 and check in MBEW for latest price.
In Standard we have S tables which is related to LIS structures. The below S Table which is related to
Inventory stock and price. From this you can find the moving average price on date. We can call as
info structure table.
Table: S031 – information structure for Inventory stock and price on period based on date based.
While updating the values you should select date basis (daily basis).
For better practice you can copy from S031 to S931 and update the values in S931 on daily basis.
In this table, will get valuated receipt stock and valuated receipt value and also valuated issue stock
and valuated issue value.
Summation of all valuated receipts quantity and value as well as valuated issue quantity and value
from up to date all entries (selection date).
Moving average price = (total value receipt – total value issues)/ (total quantity receipt – total
quantity issues).