Formula for Days of Supply, 1st RDS, 2nd RDS in MD06

Dear Guru,
Can you share formulas for Stock DS, 1st RDS and 2nd RDS in MD06?

Erik,
The receipt days' supply indicates how many days a material will last. The system takes current plant stock and specific, predefined receipts into account when calculating the receipt days' supply.
You can define two receipt days' supplies.This enables you to instruct the system to take the less binding receipt elements into account for the first receipt days' supply, and to take only the binding receipt elements (such as production orders and shipping notifications) into account for the second days' supply.
In the IMG node you can define which mrp elements contributes or should be considered during calculation of days of supply.
Typically for most clients, I advise taking firm MRP elements like Production orders & purchase orders into 1st Reciept days of supply as well as 2nd reciept days of supply.
So in IMG node they get X =Take both receipt days' supply into account
For Firmed PR & Firmed planned order they should be considered under 2nd reciept days of supply only.
So in IMG node they get 2 = Only take receipt days' supply 2 into account
Hope this clarifies your question around this concept. More questions please feel free to ask.
thanks,
Ram

Similar Messages

  • 1st and 2nd Receipt days of supply calcluation

    HI,
    i was wondering how the first and second receipt days of supply are calcuted when viewing in MD06. I went into the configuration 'Define Receipt Elements for Receipt Days' Supply' via menu Consumption Based Planning --> Evaluation --> Define Receip Elements Days' Supply.
    However, in this config activity i'm not sure how it differentiates between 1st and 2nd receipt days of supply? Does anyone know where the difference is located in configuration.
    Many Thanks, Erik

    Erik,
    The receipt days' supply indicates how many days a material will last. The system takes current plant stock and specific, predefined receipts into account when calculating the receipt days' supply.
    You can define two receipt days' supplies.This enables you to instruct the system to take the less binding receipt elements into account for the first receipt days' supply, and to take only the binding receipt elements (such as production orders and shipping notifications) into account for the second days' supply.
    In the IMG node you can define which mrp elements contributes or should be considered during calculation of days of supply.
    Typically for most clients, I advise taking firm MRP elements like Production orders & purchase orders into 1st Reciept days of supply as well as 2nd reciept days of supply.
    So in IMG node they get X =Take both receipt days' supply into account
    For Firmed PR & Firmed planned order they should be considered under 2nd reciept days of supply only.
    So in IMG node they get 2 = Only take receipt days' supply 2 into account
    Hope this clarifies your question around this concept. More questions please feel free to ask.
    thanks,
    Ram

  • Traffic lights Vs day's supply

    Hi,
    In MRP collective lists, system is showing red signal lights to all the materials and showing the message "3.0- days is less than limiting value of 0.1-"
    In the day's supply,1stRDS and 2nd columns system is showing the value 3.0-.
    In this case, how to change the signal light from red to green?
    Can any body please explain the concept behind this?
    Thanks in advance.
    Sekhar.

    hi
    traffic light depends upon the day's supply and exception messages.
    in md04 collective access , display all materials with MRP controller wise. Press the Tab " define traffic lights" there u can put ur own criterion of days supply and R days supply.
    Example how system calculates days supply.
    Calculation of the range of coverage: Starting from the current plant stock, the requirements are deducted one after the other along the time axis. This is done until there is a shortage (requirement > stock). The range of coverage is then the number of workdays between todays date and the date of the requirement that causes the shortage minus one day. The value after the decimal point is the ratio between the opening stock on the day of the shortage and the requirement on the day of the shortage.
    Stock = 240 pcs
    1st day: Requirement for 90  pcs => Stock = 150 pcs
    2nd day: Requirement for 70  pcs => Stock = 80  pcs
    3rd day: Requirement for 100 pcs => Shortage
    Range of coverage = 3 workdays minus 1 + 80/100
                      = 2 + 0,8
                      = 2,8
    Reward if useful
    Amit

  • Days Of Supply (DOS)

    All,
    One of the SAP's xApps Analytics Composite Applications for SCM included in 2004s is the Global Inventory View. One of the metrics offered within the application is the actual Days of Supply (DOS).  From documentation I see that it is displayed by query 0APO_C12_Q0001 that reads from InfoCube 0APO_C12. I don’t have access to the live 2004s system.
    Who knows how 2004s determines the DOS value. In release 3.5 the DOS was available in two objects in Business Content:
    MultiProvider 0IC_MC02 - Material Range of Coverage Components
    The MultiProvider 0IC_MC02 is a union of Material Stocks/Movements (0IC_C03) and Plan/Actual Comparison Material Consumption (0PP_C05).
    You can display the number of days during which the current stock of materials will cover future requirements based on the current requirement from production. When calculating the material range of coverage, it is assumed that the average future requirements for production components will be the same as those in the past (constant model). The key figure is determined on the basis of the average production requirements in the last 365 days calculated from the current calendar day.
    (0IC_C03) - Material Stocks/Movements (Inventory InfoCube)
    You can use this InfoCube to show on the basis of the stock and issue values the number of days during which the current stock will cover future stock issues.  When calculating the material range of coverage, it is assumed that the average future stock issues will be the same as those in the past (constant model).  The key figure is determined on the basis of the average stock issues in the last 365 days calculated from the calendar day selected. 
    What I would like to know is whether the Days Of Supply offered by the  2004s is the actual DOS that takes into account the impact the demand and supply have on the inventory on-hand?
    Thanks in advance,
    Stan

    Hi David,
    Thanks for the tip on Code Tags. 
    The logic for Days of Supply is to take the ending inventory (Stock on Hand) for the month then looking forward at the forecast for future months determine the Days of Inventory on Hand (Days of Supply).
    In the example Stock on Hand for May is -23 and Days of Supply is 0
    However for June 2011, Stock on Hand is 442 so it has coverage for all the days in July (31) and then it can cover an additional day in August so Days of Supply is 32.
    The code I placed in original question is just an example of how it could be calculated in Excel.
    We would like to create the report in WEBI but we know longer can use Macro's in the version we are rolling out.
    Here is the Excel Function I created for Days of Supply:  This will give you the code to acheive the narrative I stated above.
    It passes Stock on Hand then two arrays.  The forecast for future periods and the number of days in each respective period.
    Private Function DOS(EndInventory As Single, Forecast As Variant, Days As Variant) As Single
        DOS = 0
        TotalDays = 0
        InventoryVar = EndInventory
        For x = 1 To Days.Count
        TotalDays = TotalDays + Days(x)
        Next
        For i = 1 To Days.Count
        If InventoryVar > 0 Then
            If Forecast(i) = 0 Then
                DOS = DOS + Days(i)
            Else
                If InventoryVar < Forecast(i) Then
                    DOS = DOS + ((InventoryVar / Forecast(i)) * Days(i))
                Else
                    DOS = DOS + Days(i)
                End If
            End If
        Else
            Exit For
        End If
        InventoryVar = InventoryVar - Forecast(i)
        Next
    If InventoryVar > 0 Then
        DOS = 9999
    End If
    End Function

  • Reg-Alert Macro-Day's supply not working

    Hi,
        We are using Data base alert macros for day's supply of SNP.But it seems macros are not working.Planning book day's supply key figures value not refelcting in alert monitor(amon1).
    our setting is 0-30 days-Information;
                         31-50-Warning;
                         above 51-Error
    Thanks&Regards
    Venkadesh

    Hi Venkadesh,
    I think you put your indicator upside down.
    0 to 30 should be error and avobe 51 information.
    Another comments: to check if the macro is working: after running it, in interactive or background, check table /SAPAPO/AM_ALERT to see if you can see the alert or not.
    If you can see the alert in the table but not in the profile, then the issue is your profile; if you can't see your alert in the table neither, then the issue is the alert creation in the macro...
    I hope it helps
    Julien

  • How do I share an iMovie file for use on 1st or 2nd generation Apple TV

    How do I share an finished imovie file for use on 1st or 2nd generation apple TV?

    I shared my finished movie in I Tunes but it doesnt show up on my Gen 1 apple tv or my gen 2 Apple TV. The sharing process indicates that the movie is compatable with gen 3 Apple TV.
    Carl

  • Size difference of dock for 1st and 2nd gen

    Hi, I tried searching the forums but i couldn't find a specific answer to my question.
    I know that the dock for the 1st and 2nd gen is at a different place, but does anyone know if the exact size has changed? That is, if i have just a plug which was made for the 1st gen nano, can this plug fit into the 2nd gen dock pins?
    Any help will be great, thanks!
      Windows XP Pro  

    All dock connectors are the same, so you can use the same cable.
    However, you asked about the dock which is not the same as the dock connector. The dock is this.

  • Formula for dates back 7 days failing because of end of month?

    HI I have a CR that has been working fine till now. it runs every Sunday late in the day and looks back past 7 days. it has formula for dates from and to.
    tonumber(totext(CurrentDate,'yyyyMMdd'))-6
    and tonumber(totext(CurrentDate,'yyyyMMdd'))
    yet this past Sunday, it is not giving all previous 7 days. could it be related in any to the end of month? i cant think this is it. but perhaps.the date col is type = NUMBER and in YYYYMMDD.
    WHen I ran this report manually by selecting on the dates needed it returns more data.

    Hi Paul,
    The issue is when you convert a date to number a subtract 6 from it, it doesn't go 6 days back; it just subtracts 6 days from that converted number.
    So, today, represented as a number would be 20140804 however, when you subtract 6 from this number you get : 20140798 which of couse is Not a date.
    Your code (if the dates are stored as number in the database) should be :
    tonumber(totext(CurrentDate-6,'yyyyMMdd'))
    -Abhilash

  • My iPad 1st generation, has been charging for days......

    My iPad 1st generation, has been charging for days and still shows dead battery... Tried to restore (which I was able to do in the past and was successful)  and received an error saying something went wrong can not restore and went back to showing dead battery again.    The battery is not dead... Any suggestions?

    "The battery is not dead"
    How did you ascertin that?

  • Formula for calculating the average takings for a given day in the week?

    I would like to calculate the average takings for each day of the week for a given financial year.

    Rick,
    I've looked at your document, made some additions and returned it to you. In your document you were not only using AVERAGE, but also MIN and MAX. Unfortunately, MIN and MAX don't have "IF" versions, so they can't be used to selectively operate on data matching criteria in a range.
    What I did to accommodate the need for MIN and MAX was to add a column for each criteria, in this case the different days of the week.
    In your document you also indicated the need for a Chart to graphically summarize the performance by day of the week. I rearranged your summary stats table to facilitate creating a chart from that table. I chose the mixed category chart with Bars for Min and Max and a Line for Average.
    Following are Screen Shots for the modified Data table, the Stats table and the Chart:
    The key expressions are:
    For Monday receipts:
    =IF(WEEKDAY($B)=2, $G, "")
    For Monday Minimum:
    =MIN(INDIRECT("Ledger::"&CHAR(70+ROW())))
    You had pre-filled Column A with 3-letter abbreviations of the Days of the Week. I am not sure this is important, since you could have formatted the Date (Column B) to show the same information, but I didn't like seeing the abbreviations for days that didn't have data entered yet so I replaced the text with an expression...
    =IF(LEN(B)>0, LEFT(DAYNAME(WEEKDAY(B)), 3), "")
    I seems that you may have filled the table with several months worth of rows of Mon, Tue, etc. Now, if you wish, you can trim the blank rows to just a few and add more as you need them.
    Let me know if you have any questions about maintaining the document.
    Jerry

  • So like, I called my someone in FaceTime, and after 6 or more rings, the person answered, I asked why it took so long for her to answer and she said that she answered at the 1st or 2nd ring? Is she lying or is it just that it was a delay in FaceTime?

    I called someone in FaceTime and it rang 6 or more times and she answered, I asked her why it took her so long to answer, she said that she answered at the 1st or 2nd ring. Is it a FaceTime delay or anything? Or was she just lying?

    I think she's not lying, unless you have a reason to think that. The same thing can happen with a phone call. It can ring multiple times on your end and only ring once or twice on the other end.

  • Day's Supply

    Hi All,
    I have one query on day's supply calculations.
    Suppose stock as on date( 05-12-08) for a material is 1
    1st Requirement which is on (09-12-08) for the material is 4
    Then what should be the day's supply.
    As per the help 'The range of coverage is then the number of workdays between todays date and the date of the requirement that causes the shortage minus one day. The value after the decimal point is the ratio between the opening stock on the day of the shortage and the requirement on the day of the shortage'. According to it the day's supply should be 4-1+(1/4) = 3.25
    But actually system is displying the value of 0.25

    Dear
    The days' supply for a period is the stock level divided by the average requirements, where average requirements = sales/number of workdays.
    Days' supplies are calculated by the system. You cannot overwrite them.
    In ur case
    DS = 1/4 = 0.25
    Ur stock level is 1. & average requirement is 4
    Regards
    Samunder Singh

  • How do I change Excel calendar template for it to be 1st April to 31st March

    Would appreciate some help on this one.
    From Office.com Templates
    I've downloaded the calendar "Family calendar (any year, Mon-Sun)
    I've changed the layout so
    that it
    runs on the financial year from 1st
    April
    to 31st
    March. But I'm struggling to
    get the January to
    March section to display the
    correct days for the following year. - As in to
    say, in the 2015/16 calendar, I need Jan to March to
    match 2016 days to dates.
    the formula for January is
    =IF(DAY(JanSun1)=1,"",IF(AND(YEAR(JanSun1+1)=CalendarYear,MONTH(JanSun1+1)=1),JanSun1+1,""))
    So what do I need
    to change
    in
    that formula
    to get it
    displaying the next
    year's dates on
    the right days?
    thanks

    Absolutely Brilliant.
    thanks for your help, Hans
    Managed to complete Step
    2 OK. But on step 1
    I had to Edit the "BlankCalendar"!
    lines before the second CalendarYear would save.
    thanks again :)

  • Crosstab - Quarterly Date Range Column - Need to Print 1st Qtr, 2nd Qtr,etc

    I am using Crystal 2008.
    I have a column in a cross tab that pulls from a date field.  In the crosstab expert, in the group options for the column, I have indicated to sort in a specific order, by quarter.  In the specified order tab, I have created the orders for 1st Qtr, 2nd Qtr, 3rd Qtr, and 4th Qtr.
    However, the colum heatding prints with the the dates of 01/2010, 04/2010, 07/2010, and 10/2010 instead of 1st Qtr, 2nd Qtr, 3rd Qtr and 4th Qtr.
    Any suggestions would be appreciated.

    The date in the column (which is the only column) is a date field MM/DD/YYYY.  The column name use to print correctly (1st Qtr, 2nd Qtr, 3rd Qtr, 4th Qtr) and now it suddenly started printing 01/2010, 04/2010, 07/2010, 10/2010.  In the crosstab expert, I have the date field in the column section and under group options, I have set it to print in a specified order.  In the specified order tab, I added named groups for each quarter.  When defining the named groups, each group was set to look at the date field for the correct quarter.  For example, the name group "Qtr 1" is defined as "in the period " "Calender1stQtr".  That is what is in the drop-down boxes for me to choose when defining the named groups.
    This data is correct.  It is pulling data and putting the information in the correct columns.  It is just the heading that will no longer print in the format I want.  This report has been available for some time and it has always worked correctly.  We have not modified or upgraded the Crystal product, so I'm not understanding why it won't still work the same way without having to try to create other formulas.  The named group section has the criteria I need in the drop down boxes.

  • HT202157 What is the difference between the 1st and 2nd generation Apple TV?

    What is the main difference between the 1st and 2nd generation Apple TV's? I just got the 1st generation and was wondering if I should send back for the 2nd gen?

    There is one other difference. The ATV3 uses a new processor with a better graphic processing unit.  If you only had the ATV2 for less than 14 day. Why not upgrade. 1080p video will be a little sharper, but in reality most people won't notice any real difference. It's likely that Apple will stop supporting the ATV 1st gen and 2nd gen in couple of years. Apple as a company usually only supports hardware 5-6yrs max! 

Maybe you are looking for

  • If CD-R's no longer play read this as possible fix

    Hi, After going round and round with Applecare and CompUSa the store that sold me my eMac 1.0 ghz (stock 128mb ram) 40 gb HD. Issue was no longer able to play any type of burned CD's or burn CD's (photos/music etc) Comp USA at point of sale upgraded

  • How to put simple labels on pictures

    I want to simply label a photo with street names. In my humble opinion, this is something that Mac ought to be able to handle. I am not a graphic design expert and I do not expect to have to learn a lot of graphic design stuff to do that. Pages does

  • TC not able to reach more than 17ish mbps

    Hello,  my ISP connection is 30mbps and the only way to reach that speed is to connect my MBP directly to the RJ45 that comes from the cable modem.  If I used wireless (tried every settings on both 2.4 and 5GHz) or wired from the TC, the connection s

  • Can a new Business Layer be tied to a specific schema?

    I feel like I'm missing something rather simple. We have a dedicated Connection that provides exposure to multiple schemas (SQL Server) and we have a universe already built (dev environment), we want to use the same Connection, but build out a new Bu

  • Flash banner Exporting trouble

    Ok... I have just made a banner in Flash CS3 and it all seemed to be working perfectly. I wanted to export the banner as an animated GIF. So i go through "Publish Settings" to find this and then i publish it and this is where everything goes wrong. W