Min/max temperatires for all stations on computer.

iMac, Intel 2/2, 6mb, L2Cache_4g, 1.33ghz, 10.6.8 Snow Leopard
I've lately become aware of the presence of a temperature report on my Dashboard and wonder where I can find the Min/Max status for all my heat situations.
.....goldie

Anyone able to help with this?
Regards
Richard

Similar Messages

  • How to set physical min/max values for a scale in xy graph?

    Hello,
    I have troubles with the way LabView handles physical units in xy graphs. In particular, I use a time scale for the x axis.
    The values are timestamps and have the unit [s]. Now I want to read write the min max values for this scale via
    property nodes. It seems that the properties for min max do not support the use of the unit I use for the data for
    that same axis. This is very inconvenient and I am not even sure which kind of data to use at all for this properties.
    Is it simply converting to/from [s] using the unit converter?
    (I am using LabView 7.1 for the programm in question).
    Thanks,
    Olaf

    Hi Olaf
    "It seems that the properties for min max do not support the use of the unit I use for the data for that same axis."  
    What are the units you are using? can you make it a littlebit clear.
    You can change the units also using Property node.
    Just check the attachment once. If that is what you are looking for, then the problem is solved.
    Regards
    Anil
    Message Edited by reddy on 05-23-2006 05:25 AM
    Message Edited by reddy on 05-23-2006 05:27 AM
    Attachments:
    X-Scale.jpg ‏8 KB

  • In mdx how to get max date for all employees is it posible shall we use group by in mdx

    in mdx how to get max date for all employees is it posible shall we use group by in mdx
    example
    empno  ename date
    1         hari        12-01-1982
    1         hari        13-06-2000
    by using above data i want to get max data

    Hi Hari3109,
    According to your description, you want to get the max date for the employees, right?
    In your scenario, do you want to get the max date for all the employees or for each employee? In MDX, we have the Max function to achieve your requirement. You can refer to Naveen's link or the link below to see the details.
    http://www.sqldbpros.com/2013/08/get-the-max-date-from-a-cube-using-mdx/
    If this is not what you want, please provide us more information about the structure of you cube, so that we can make further analysis.
    Regards,
    Charlie Liao
    TechNet Community Support

  • Multipoint 2012: Same Desktop (Template/Image) for all stations possible?

    How can I get the same Desktop on all stations?
    - same startpage in Internet Explorer
    - same search engine (e.g. fragfinn.de)
    - same Icons on Metro and Desktop
    - same background

    Group Policy will do a lot of the things for you but it wasn't robust enough for my needs so I created an unattend.xml file for our sysprep image that accomplishes what you want. We've set up 3500 stations with this.
    We have 700+ of the same servers, so I created the image exactly how I wanted it, down to where the desktop icons were located, customizations within Office products, classicshell.net start button replacement, drivers, etc. The trick is to create a normal
    user account (not an administrator account) that will be copied over as your default profile when you sysprep the image. All users will get the account settings by default when you run sysprep. I suggest that you clean up this master user account as well,
    by deleting temp, cache, and dump files that are not needed. You can do this after-the-fact by cleaning the C:\Users\Default profile, but you might as well do it now. Also, do NOT turn on DiskProtect or authenticate Windows. The unattend.xml file will authenticate
    Windows for you and automatically log in as the administrator account so you can rename the server and join it to your domain if needed.
    1. Once you've got your image perfect, make a backup of the partition/drive BEFORE continuing, since if you ever want to make changes to your image (i.e. install Windows Updates, software, or new drivers), you'll need to restore from this backup. You can
    do this with Ghost, Acronis, or some free ones out there.
    2. Log into your master user account that will be used for all users (DO NOT USE THE ADMINISTRATOR ACCOUNT). For this example, I created a user called SysPrep.
    3. Open up a command prompt with "Run as Administrator" and run this command (replace "U:\SysPrep" with the drive and folder where you've saved your unattend.xml file). Your server will power off after a minute.
    Do NOT turn your computer back on unless you're going to boot up to a CD/USB drive to capture an image or backup.
    C:\Windows\System32\SysPrep\sysprep.exe /oobe /generalize /shutdown /unattend:U:\SysPrep\unattend.xml
    4. Your drive is now ready to be used as a master drive for cloning to other hard drives. You have several options at this point but let me tell you what I did.
    A. Create a .wim file of the image to be used in ConfigManager. I was able to do this by booting up into WinPE and then running the imagex command as shown in the "Capture an Image for Deployment" section of this guide:
    http://www.danscourses.com/Windows-7-and-8/how-to-create-a-wim-system-image-file-with-windowsaik-and-windowspe.html
    B. I also purchased some StarTech.com SATDOCK4U3RE stand-alone hard drive duplicators with 3 StarTech.com 12in 22 Pin SATA Power and Data Extension Cables (Item: SATA22PEXT from MonoPrice) to make the transfer easier (I just plug the hard drives to the cable,
    so I don't have to remove the hard drive enclosure). This allows you to copy the master hard drive to 3 other drives at the same time. It takes about 17 minutes to transfer the master drive to 3 other drives. I purchased 3 of these units, which was much cheaper
    than purchasing one big unit that does more hard drives at the same time
    5. You'll want to do some cleanup after you've booted up a computer with the image. These commands (just put them in a .bat file and run as an administrator) will remove the unattend.xml files from the computer since they may include passwords and it will
    remove the master user account (I called mine SysPrep) since you don't need that anymore. I have a TON of other commands that created for more customization, but that's beyond the scope of this message.
    del /Q /F c:\windows\system32\sysprep\unattend.xml
    del /Q /F c:\windows\panther\unattend.xml
    powershell -command "([ADSI]\"WinNT://$env:computername\").delete(\"user\",([ADSI]\"WinNT://$env:computername/SysPrep,User\").name.value)"
    Okay, one last thing, since you asked about the background image. There are ways to get a different background image and I think you can do this in the unattend.xml file, but I sort of cheated and just replaced the master background image with my own (if
    I remember correctly, the file was locked down, so I had to take ownership of it before I could replace it with my own). The downfall of this is that if you run a check/repair on your Windows system files (I can't remember the command for that) it'll "repair"
    this background image and restore the old one. Here's the default background image: C:\Windows\Web\Wallpaper\Windows\img0.jpg
    Here is the unattend.xml file that I created. You'll want to tweak it for your own. I take no responsibility if this messes up your system or doesn't work as expected, so make backups before using this. The magic of this unattend file is that the following
    two lines allow the image to retain your drivers and most of your user profile settings (custom toolbars and pinned programs will not be retained).
    <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>      
    <CopyProfile>true</CopyProfile>
    The following values need to be adjusted for your situation:
    <Value>TypeInYourAdminPassword</Value>
    <Value>TypeInYourAdminPassword</Value>
    <ProductKey>xxxxx-xxxxx-xxxxx-xxxxx-xxxxx</ProductKey>
    <CompanyName>YourCompanyName</CompanyName>
    <RegisteredOrganization>YourCompanyName</RegisteredOrganization>
    <RegisteredOrganization>YourCompanyName</RegisteredOrganization>
    <Organization>YourCompanyName</Organization>
    <Home_Page>http://google.com</Home_Page>
    <Manufacturer>Lenovo</Manufacturer>
    <Model>TS130</Model>
    <TimeZone>US Mountain Standard Time</TimeZone>
    <HorizontalResolution>1366</HorizontalResolution>
    <VerticalResolution>768</VerticalResolution>
    ----------------------- Here are the contents of the Unattend.xml file below ----------------------
    <?xml version="1.0" encoding="utf-8"?>
    <unattend xmlns="urn:schemas-microsoft-com:unattend">
        <settings pass="windowsPE">
            <component name="Microsoft-Windows-International-Core-WinPE" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SetupUILanguage>
                    <UILanguage>en-US</UILanguage>
                </SetupUILanguage>
                <InputLocale>0809:00000809</InputLocale>
                <SystemLocale>en-GB</SystemLocale>
                <UILanguage>en-US</UILanguage>
                <UserLocale>en-GB</UserLocale>
            </component>
            <component name="Microsoft-Windows-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ComplianceCheck>
                    <DisplayReport>Never</DisplayReport>
                </ComplianceCheck>
                <Diagnostics>
                    <OptIn>false</OptIn>
                </Diagnostics>
                <DiskConfiguration>
                    <WillShowUI>Always</WillShowUI>
                </DiskConfiguration>
                <DynamicUpdate>
                    <Enable>true</Enable>
                    <WillShowUI>OnError</WillShowUI>
                </DynamicUpdate>
                <ImageInstall>
                    <OSImage>
                        <InstallFrom>
                            <MetaData wcm:action="add">
                                <Key>/IMAGE/NAME</Key>
                                <Value>Windows MultiPoint Server 2012</Value>
                            </MetaData>
                        </InstallFrom>
                    </OSImage>
                </ImageInstall>
                <UserData>
                    <AcceptEula>true</AcceptEula>
                    <FullName>IT</FullName>
                    <Organization>YourCompanyName</Organization>
                    <ProductKey>
                        <WillShowUI>OnError</WillShowUI>
                    </ProductKey>
                </UserData>
                <EnableNetwork>true</EnableNetwork>
            </component>
        </settings>
    <!--
        PersistAllDeviceInstalls set to true makes it so Windows doesn't delete the existing drivers when you generalize
        DoNotCleanUpNonPresentDevices set to true allows for devices to persist after generalization, even if they aren't turned on
    -->
        <settings pass="generalize">
            <component name="Microsoft-Windows-PnpSysprep" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <PersistAllDeviceInstalls>true</PersistAllDeviceInstalls>
                <DoNotCleanUpNonPresentDevices>true</DoNotCleanUpNonPresentDevices>
            </component>
        </settings>
        <settings pass="specialize">
            <component name="Microsoft-Windows-IE-InternetExplorer" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <Home_Page>http://google.com</Home_Page>
                <CompanyName>YourCompanyName</CompanyName>
                <FavoritesOnTop>true</FavoritesOnTop>
                <FilterLevel>High</FilterLevel>
                <ShowMenuBar>true</ShowMenuBar>
                <Help_Page></Help_Page>
                <DisableFirstRunWizard>true</DisableFirstRunWizard>
                <DisableWelcomePage>true</DisableWelcomePage>
                <PlaySound>true</PlaySound>
                <ShowInformationBar>true</ShowInformationBar>
                <UserAgent></UserAgent>
                <Window_Title_CN></Window_Title_CN>
                <SearchScopes>
                    <Scope wcm:action="add">
                        <ScopeDefault>true</ScopeDefault>
                        <ScopeKey>Search1</ScopeKey>
                        <ScopeDisplayName>Google</ScopeDisplayName>
                        <ScopeUrl>http://www.google.com/search?q={searchTerms}&amp;sourceid=ie7&amp;rls=com.microsoft:{language}:{referrer:source}&amp;ie={inputEncoding?}&amp;oe={outputEncoding?}</ScopeUrl>
                        <FaviconURL>http://www.google.com/favicon.ico</FaviconURL>
                        <SuggestionsURL>http://clients5.google.com/complete/search?q={searchTerms}&amp;client=ie8&amp;mw={ie:maxWidth}&amp;sh={ie:sectionHeight}&amp;rh={ie:rowHeight}&amp;inputencoding={inputEncoding}&amp;outputencoding={outputEncoding}</SuggestionsURL>
                    </Scope>
                </SearchScopes>
                <EnableLinksBar>false</EnableLinksBar>
                <PrintBackground>true</PrintBackground>
            </component>
            <component name="Microsoft-Windows-RemoteAssistance-Exe" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <fAllowFullControl>true</fAllowFullControl>
                <fAllowToGetHelp>true</fAllowToGetHelp>
            </component>
            <component name="Microsoft-Windows-Security-SPP-UX" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SkipAutoActivation>false</SkipAutoActivation>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <ProductKey>xxxxx-xxxxx-xxxxx-xxxxx-xxxxx</ProductKey>
                <ComputerName>*</ComputerName>
                <RegisteredOrganization>YourCompanyName</RegisteredOrganization>
                <RegisteredOwner>IT</RegisteredOwner>
                <DoNotCleanTaskBar>true</DoNotCleanTaskBar>
                <CopyProfile>true</CopyProfile>
            </component>
            <component name="Microsoft-Windows-TerminalServices-LocalSessionManager" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <fDenyTSConnections>false</fDenyTSConnections>
            </component>
            <component name="Networking-MPSSVC-Svc" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <DomainProfile_EnableFirewall>false</DomainProfile_EnableFirewall>
            </component>
            <component name="Microsoft-Windows-TerminalServices-RDP-WinStationExtensions" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS"
    xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <UserAuthentication>1</UserAuthentication>
            </component>
        </settings>
        <settings pass="oobeSystem">
            <component name="Microsoft-Windows-International-Core" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <SystemLocale>en-GB</SystemLocale>
                <UILanguage>en-GB</UILanguage>
                <UserLocale>0809:00000809</UserLocale>
            </component>
            <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
                <RegisteredOrganization>YourCompanyName</RegisteredOrganization>
                <RegisteredOwner>IT</RegisteredOwner>
                <TimeZone>US Mountain Standard Time</TimeZone>
                <Display>
                   <ColorDepth>32</ColorDepth>
                   <HorizontalResolution>1366</HorizontalResolution>
                   <VerticalResolution>768</VerticalResolution>
                </Display>    
                <Themes>
                    <ThemeName>C:\Windows\Resources\Themes\aero.theme</ThemeName>
                    <DefaultThemesOff>false</DefaultThemesOff>
                </Themes>
                <OEMInformation>
                    <Manufacturer>Lenovo</Manufacturer>
                    <Model>TS130</Model>
                </OEMInformation>
                <OOBE>
                    <HideEULAPage>true</HideEULAPage>
                    <NetworkLocation>Work</NetworkLocation>
                    <ProtectYourPC>1</ProtectYourPC>
                </OOBE>
                <UserAccounts>
                    <AdministratorPassword>
                        <Value>TypeInYourAdminPassword</Value>
                        <PlainText>true</PlainText>
                    </AdministratorPassword>
                </UserAccounts>
                <VisualEffects>
                    <FontSmoothing>ClearType</FontSmoothing>
                    <SystemDefaultBackgroundColor>9</SystemDefaultBackgroundColor>
                </VisualEffects>
                <AutoLogon>
                    <Password>
                        <Value>TypeInYourAdminPassword</Value>
                        <PlainText>true</PlainText>
                    </Password>
                    <Username>Administrator</Username>
                    <LogonCount>1</LogonCount>
                    <Enabled>true</Enabled>
                </AutoLogon>
            </component>
        </settings>
    </unattend>

  • How to set min & max connections for  MSSQLconnection pool

    Hi,
    I want to set minconnection, maxconnection, idletimeout initial limit for the pool
    I have got a MSSQL database connection using following java code.
    // MSSQL DbConnection Code
    import java.sql.*;
    public class MsSqlDataSource
    public static void main(String arr[])
    Connection con = null;
    ResultSet rs = null;
    try{
    com.microsoft.sqlserver.jdbc.SQLServerDataSource ds = new com.microsoft.sqlserver.jdbc.SQLServerDataSource();
    ds.setServerName("10.50.50.51");
    ds.setPortNumber(1711);
    ds.setDatabaseName("test");
    ds.setUser("starhome");
    ds.setPassword("starhome");
    con = ds.getConnection();
    }catch(Exception e){}
    }In oracle i have passed min and max number of connection properties through setConnectionCacheProperties method.
    //Connection Pooling using Oracle Data Source:
    m_connSource = new OracleDataSource();
    m_connSource.setDriverType("thin");
    m_connSource.setServerName(m_host);
    m_connSource.setNetworkProtocol("tcp");
    m_connSource.setDatabaseName(m_db);
    m_connSource.setPortNumber(m_port);
    m_connSource.setUser(m_user);
    m_connSource.setPassword(m_password);
    // Enable caching. m_connSource.setConnectionCachingEnabled(true);
    java.util.Properties prop = new java.util.Properties();
    prop.setProperty("MinLimit", m_minConnections);
    prop.setProperty("MaxLimit", m_maxConnections);
    prop.setProperty("InitialLimit", m_initialConnections);
    prop.setProperty("InactivityTimeout", m_inactivityTimeout);
    prop.setProperty("AbandonedConnectionTimeout", m_abandonedTimeout);
    prop.setProperty("ConnectionWaitTimeout", m_connWaitTimeout);
    m_connSource.setConnectionCacheProperties(prop);I dont know how to pass min and max number of connection properties for SQLServerDataSource. Is there any method available to pass min and max number of connection properties for SQLServerDataSource.
    Iam using Tomcat. I found one way to set min and max connections for pool by doing changes in context.xml and web.xml using below url http://tomcat.apache.org/tomcat-4.1-doc/jndi-datasource-examples-howto.html
    I dont want to touch tomcat configuration files. I need to set connection pooling properties which is independent of application server.
    Please anybody give solution for this?
    Thanks,
    Prisha

    Hi,
    you need to define your database under the DB Admin tab. In the Schema objects node you'll find Sequence Implementations, and there you can definde min max values as well as caching and increments.
    Gerald

  • How to use min-max functions for date in transformation in bpel?

    Hi,
    I have a requirement where i need to map earliest date of a Source field among all the dates to a target field in a transformation file in BPEL. There are functions called max-value-among-nodeset and min-value-among-nodeset in mathematical functions but they can be used only for numbers and strings.How to do these with dates?
    Thanks,
    Prasanna

    I exactly have the same requirement.Are you able to solve this?
    Its very urgent.Please help me.

  • Reminder needed: how to set password protection  for all uses of  computer

    It's been a long time coming, but I feel that I need to limit the access to all materials on a Mac running OS 9.2.
    Is there a simple way that I can password protect the whole computer?
    Thanks for your time - and stay cool!

    Hi, Bruce -
    Try using Multiple Users to do that. One of its features is password access to use any account.
    This will provide a moderate level of security - however, a knowledgeable person will have little trouble defeating it.

  • Mac Mini max resolutions for 2 screens?

    Hi all. I have the latest Mac Mini and I'm currently running a Samsung 24" at 1920x1080 from the Mini Displayport socket via a DVI adaptor, and also a second display at 1280x1024 from the HDMI socket via DVI adaptor.
    I'm looking to upgrade the Samsung to a screen that's 1920x1200 resolution - I'm assuming the Mini can handle this slight increase but I can't find specs anywhere for this. Would it even run a 2560x1600 screen alongside the 1280x1024 one?
    Many thanks in advance.

    The > Mac mini (Late 2012) - Technical Specifications doesn't clearly state what the maximum resolution for each output is.
    Funny part is, that the Spec's for the previous Mac Mini 2010 and 2011 models does.
    One would think that they are the same? Unfortunately that would be pure speculation and contrary to the ASC Terms of Use.
    On that note: Your best bet might be to > Contact Apple Support and get some clarification.

  • Stringing 2 or more mini's together for a more powerful computer

    has anyone cabled together more than one mini to make a more powerful computer? and how would this be done. was thinking about buying 3 or 4 of the low end mini's and putting them together. In fact, as I get money I can make my computer more powerful..
    any thoughts on this?

    hummm.. wonder how much they want for that..
    was reading a while back how a university put 5000 mac servers together and made a super computer..
    something like that on a smaller scale..
    4, 5, or 6 minis...
    thanks I will check out the Xgrid further..
    I imagine it will require optical cabling between each unit?

  • Windows XP magnifier, which I - as a blinkd person - depend on for all of my computer work, does not function in Firefox 5 like it does in my other applications, making work extremely tedious.

    My Windows XP machine is set up following the accessibility options in Windows accessories...expanded text...large cursor and the High Contrast theme...with green text...black background...large icons and scrollbars. I use Windows Magnifier at the top of the screen to enlarge what is showing in an application window. Magnifier works well in MS Office, Paint Shop, Notetab, Outlook Express, IE, and Firefox 3.x. Since updating Firefox, first to 4 and now to 5, Magnifier cannot follow my cursor in forms that are contained in web sites. I must write my text or code in a text editor (I use Notetab) and then paste it into forms. I write and post web content for a local pro-life group, and the inability to depend on Magnifier to show me what I am typing into a text area or text box, means I must spend extra time moving back and forth between applications. Set up a Windows XP machine as I have done, and you will see what I mean. Firefox must be set to match the Windows accessibility settings. I do use IE when I absolutely have to, but Firefox is so much more secure.

    My Windows XP machine is set up following the accessibility options in Windows accessories...expanded text...large cursor and the High Contrast theme...with green text...black background...large icons and scrollbars. I use Windows Magnifier at the top of the screen to enlarge what is showing in an application window. Magnifier works well in MS Office, Paint Shop, Notetab, Outlook Express, IE, and Firefox 3.x. Since updating Firefox, first to 4 and now to 5, Magnifier cannot follow my cursor in forms that are contained in web sites. I must write my text or code in a text editor (I use Notetab) and then paste it into forms. I write and post web content for a local pro-life group, and the inability to depend on Magnifier to show me what I am typing into a text area or text box, means I must spend extra time moving back and forth between applications. Set up a Windows XP machine as I have done, and you will see what I mean. Firefox must be set to match the Windows accessibility settings. I do use IE when I absolutely have to, but Firefox is so much more secure.

  • Can we use MRP to plan for FERT in-house produced  with PIR's & has Min/Max

    Hi SAP Guru's
    I have a very critical issue from the client who wants to use MIN/ MAX stock values for planning its finished products (in-house produced)
    <b>here is the details of the scenario</b>
    Client recieves 2 Excel files every week from customer
    <b>1st</b> file contains the Weekly Demand Forecast of FERT material for next 1 year and they upload it in MD61 as PIR's <u><b>BUT</b></u> this value is also <u><b>Inclusive</b></u> of Safety stock value (<b>ex: if weekly demand entered in MD61 as PIR is 50 and if safety stock value is 10, then actual demand is only 40)</b>
    <b>2nd</b> file send contains only <b>safety stock values</b> (for ex in this case let it = <b>10</b>) to be maintained for the FERT materials
    the client wants MRP to plan and trigger based on this PIR's in MD61 and Safety stock level fand plan for FERT, HALB and also ROH materials as defined in the BOM also taking into consideration the current WIP levels (Work in progress for any existing production orders currently being processed) based on the production Lead times values maintained
    so what the client wants is they want to maintain 2 stock values, that is one least stock value and other higher value which if stock falls below this point, will trigger production based on the lead time and considering any WIP levels also
    <b>(for ex in this case if PIR = 50 and safety stock is 10, MRP run result client wants is = 30 and NOT =40)</b>
    so here are my questions
    1. is this scenario feasible? use safety stock and min/max level for in-house produced finished which has demand PIRs in MD61 at the same time?
    2. Also due to SOX complaince regulations, the client does not want to change the forecast values in MD61, so is it possible to make some settings so that forecast is corrected by WIThOUT including the safety stock value in it? ( for ex: in this case as = 40 only and NOt as 50)
    3. which all settings should i maintain like for MRP type or lot size or stock qty levels or anyother customizations if any required so that when we run MRP, can it ignore the safety stock value and generate the client desired output?
    thank u verymuch for your time & expert advice in advance

    Hi Chakri,
    This is not possible as per standard functionality. MRP always creates proposals for the shortage quantity of the safety stock. We have used the user exit in the plant level MRP run to exclude both plant and safety stock in the net requirements calculation.
    You have to write logic to convert the safety stock into plant stock in the user exit so there will be no additional procurement proposals...you can create custom indicatar in materail master or linked any existing indicator like MRP group to the user exits so the MRP will checks this and will not create proposals for the selected parts.
    If you have any questions then please inform.
    Regards
    TAJUDDIN

  • Can I use ASUS VM60-G072R Desktop (like mini Mac) with my iMac all in one computer? I need to use Windows version of QB and I don't want to buy a PC tower or laptop.

    I need to use the Windows version of Quickbooks Pro and I don't want to use Parallel or buy a PC tower or laptop. Can I use ASUS VM60-G072R Desktop (like Apple Mini) with my iMac all-in-one computer?

    Thank you Kappy. I guess I have to decide to purchase a separate monitor and keyboard for this mini PC computer then. And also find extra space in my office. I'm happy you answered my question so quickly.

  • MRP creating cancel notices for min max purchased items

    We use min max planning for many repetitive purchased items. These same items are also set to MPS/DRP Planned as well. This is only so we can use the Planned Order report to identify material shortages to flow schedules.
    However, MRP exceptions is requesting we cancel our min max purchased items since there is no demand. Can MRP be modified to NOT include min max planning method in cancel requests?
    If not, where can I find a tool to identify material shortages for flow schedules?

    Many thanks for this.
    I can see entirely why it's designed as such, but I just find it slightly frustrating that there's no way to break the link between the order and the shipment out to the depot. Just to clarify, we're not requiring the orders to change - they will still be made and will come in - but just that the orders themselves don't specifically need to be the stock that is used for the replenishment.
    So -
    1. Min Max identifies depot needs replenishing.
    2. Central distribution does not have (enough) stock to replenish.
    3. Order is made to replenish central distributions stock.
    4. We ship whatever we've got, when we've got it, to depot to replenish.
    It's the bit where Min-Max is trying to replensih a specific depot rather than our central distribution centre that's my problem.
    I suspect that, as you say, that specific issue is not directly fixable without getting our IT contractors to do a customisation.
    I'm going to look into your Supply Date Offset suggestion now, though I'm not sure how this affects the shipping after the orders are placed. The orders themselves are approved manually after we've checked our stock position (i.e. what's in with the recycling team), but we recycle & refurb probably 60% of our maint stock so there'll always be kit turning up after the order has been made because of the long lead times.
    Thanks again.

  • Min-Max Planning concept

    Hi Neils,
    Can you please throw a light on --> Min-Max Planning Concept and what is the formula for Min-Max
    regds
    MRR

    Hi MRR,
    Min-max planning is used to maintain inventory levels for all of your items or selected items. With min-max planning, you specify minimum and maximum inventory levels for your items. When the inventory level for an item (on-hand quantities plus quantities on order) drops below the minimum, Oracle Inventory suggests a new purchase requisition, internal requisition, move order, or job to bring the balance back up to the maximum.
    See the Inventory Users Guide > Planning and Replenishment > Min-Max Planning for more detailed description of the principles behind. In addition to Min-Max you may want to consider Reorder Point Planning where you bring demand figures into the calculations.
    If you would like to have sales orders or production demands on end-item or sub-assembly levels influence the planning of components then a type of MRP is needed to break down a product structure to lower level material requirements. For even more advanced planning where capacities, constraints and may be even different optimizations objectives are to be considered you have to look at the Advanced Plannning Suite of applications.
    Hope this helps ypu in the right direction.
    /Niels LM

  • Production supply area w/Min Max

    Hello,
    I have a WM scenario that i want to prototype, and i would like to know the steps involved in this WM scenario.
    The scenario is :
    Production Area Supply w/ Min Max
    Illustrate the material replenishment to the PSA based on min/max levels for raw materials and intermediates; Min level based on requirements for 2 production runs, Max level based on requirements for 3 production runs.
    the material for the replenishment is taken from the storage types.
    pl. do mention the steps or how to carry out the scenario with the t codes involved in it.
    Thanks,
    Maxx

    I suggest you checking system by two ways:
    1) Set PSA to work center, now it works? If so please check BOM settings carefully.
    2) Don't use dynamic production bin, just try a physical bin. If it works please check control cycle settings.
    Note: You create the dynamic storage bin "production order" in the control cycle for pick parts. The system then stages all the materials for a specific production order in a dynamic storage bin with this production order number.
    When you system emit errors again please use LS24 to check if having a dynamic bin with a production order number.

Maybe you are looking for

  • RSCRM_BAPI scheduling of extract jobs after an event

    Hi We are using RSCRM_BAPI to extract data from 3 BW queries and export the data to a CSV file so that it can be picked up and loaded to another system. The extracts run fine, but I am trying to find a way of including them within the BW process chai

  • Compatibility windows 7 and 8

    Hello, I need some advises from you Adobe professional users I have and old desktop which I have to replace with a new one and I have a laptop. Specs of the laptop are : Acer Aspire 5810TG Intel(R) Core(TM) 2 Duo CPU U9400 @ 1.40Ghz/1.40Ghz 4GB Ram m

  • Wireless Adapter

    Now that I have my Linksys N router installed and working...do I need to insatall a "N" wireless adapter in my notebook( vista hp)? Will it make it any faster ? My IP is Time Warner Road Runner Turbo..or would AT&T "extreme DSL" be faster with the "N

  • Export - custom queries and reports, and security profiles

    We would like to keep a copy of our customizations to the application.  There are ways to import queries, reports and profiles into the app.  Is there any way to export the following to something like a CSV file for the following: - custom queries (a

  • CF8 - Ajax Form Post and Document Type

    I'm having a problem trying to figure out how to get a form post to return a PDF document using CF8. I can't seem to get CFDOCUMENT to deliver a PDF through the form. I have a form inside a CFDIV... <cfdiv id="mydiv"> <cfform action="myscript.cfm" me