Taking Resources Allocation memory reservations into account with CIQ 1.5

Hello all,
I am trying to use CapacityIQ (1.5.2) to estimate how many more VMs can fit in our environment.  Unfortunately Capacity IQ appears to be estimating a _much_ larger number of available VMs (CIQ says space for 49 more VMs; Resource Allocation tab suggests room for ~1 more VM).
With the goal of having our VMs run optimally (many of them run java), we tend to use full memory reservations on our VMs, as suggested by VMware (http://kb.vmware.com/selfservice/microsites/search.do?language=en_US&cmd=displayKC&externalId=1008480).  This post (http://communities.vmware.com/message/1601230#1601230) suggests that CIQ does not take memory reservations into account when calculating capacity.  This would be a glaring oversight by VMware; please tell me it's not correct and that there is a setting that can be changed so I _can use_ (aka continue purchasing) CapacityIQ.
thanks,
donfede

Let Mozilla know how you feel about the Plugin Check page here. <br />
http://hendrix.mozilla.org/

Similar Messages

  • Things to taken into account  with Flex 3 Modular Programming approach

    Hi ,
    I am new to Flex , using currently Flex 3 for Programming .
    Till now i am developing simple  Applications , (Simple in the sense one Application mxmxl file and some Custom Components), i am able to do this with the help of expert  people in Adobe Flex Forum
    Now i want to start ddeveloping Flex 3 Modular Programming .
    I have seen this ModulLoader and SWFLoader for this .
    PLease tell me what are the basic i  need to take into account when starting with Modular Approach .
    Please share your experience in Flex .

    Hi
                  Modular concepts in flex have so many advantages and so much stuff to learn   check out this link
         http://livedocs.adobe.com/flex/3/html/help.html?content=modular_1.html

  • Profiles are not taken into account with DIS

    Hi,
    I created several profiles in the content management.
    They work correctly.
    Now, I have to use Desktop Integration Suite.
    The installation worked correctly.
    The problem is, when a user saves and closes the document, the "check-in" screen is the standard one.
    So, all the metadata are displayed on the screen (nearly 40 - it is becoming a mess for the users to known which ones to fill).
    I would like to use the profiles to reduce the metadata (as it is done for the check-in and search in the content server).
    How can I do it ?
    Does anybody encounter this problem ?
    Any help is welcome.
    Kind regards
    Pierre

    Hi Jason,
    I understood my mistake (but I installed the patch).
    The profile is correctly taken into account.
    But the trigger of my profile is the document type.
    With the DIS, I don't know how to transfer metadata before to open the "standard check-in" page.
    Once the check-in page is opened, if I change the document type, the profile is not activated.
    Do you know if it is possible :
    - To transfer metadata to the content server that could be used to determine the profile, for example by defining properties on the Word document.
    - To change of profiles by changing the value of the trigger used for the profile.
    For the moment, the only trick I've found was to create a "server" by value of the trigger and to put the document type as a data to be remembered.
    At that moment, the profile is correctly loaded.
    But, this solution is not very user-friendy. Do you see another one ?
    Pierre

  • What do I do if iTunes has been taking money out of my bank account with out my permission?

    iTunes keeps taking money out of my bank and I don't know what for, what do I do? Can I get it back?

    You can view the purchase history on your account on your computer's iTunes via the Store > View Account menu option, you should then see a Purchase History section with a 'see all' link to the right of it. Click on that and you should then see a list of your purchases (the most recent is above the list). I'm not sure if that shows auto-renewing subscriptions (I don't have any).
    If you can't the charges, and you haven't added or changed your credit card details (when you do then a small temporary store holding charge may be applied to check that the details are correct and valid, which should disappear within a few days) then you can contact iTunes Support via this page : http://www.apple.com/support/itunes/contact/ - click on Contact iTunes Store Support on the right-hand side of the page, then Purchases, Billing & Redemption

  • Can SAP take scrap into account with determining open production order qty?

    SAP appears to completely ignore scrap on production orders.  This isn't working for us.  What we would like is something like this:
    If the production order is for 20, we've confirmed scrap of 2, and confirmed 10 good, then the open quantity should be 8.  The next time MRP runs, it should re-schedule the 2 for a later date.
    I didn't see any way to accomplish this through settings on the order, or through configuration.  Can anyone recommend a user exit I can use to accomplish this, or did I miss a setting somewhere?
    Thanks,
    Randy

    Hi Randy,
    The scrap you are confirming is basically unplanned scrap...That is basically for consuming the components for the scrapped quantity ...but not to affect the total production.
    In your case you can maintain assembly scrap in material master...so that system will plan extra material while the MRP..
    For ex , if u want toa chieve a final qty of 100 & ur scrapping pattern is 20% ..syatem will plan for 12 % so that u can achieve 100 at the end of production.
    Regards
    Mahesh

  • Push Deployment with Safety Stock Horizon taken into account

    Hi,
    I would like to know if anyone has worked in the Push Deployment - Rule - S -With Push taking the safety stock horizon into account,
    If Yes, Please let me know how it should work....If possible in details.
    Regards
    Tarit

    Hi,
    For confirm planned goods issue for which you use the safety stock in the source location to cover these goods issue.
    if the difference between the requirements date and the deploy date is lower than the safety horizon.
    This means that the system only falls below the safety stock  that specified in the LOT SIZE tab. of loc prodcut master
    if the demand covered in the safety stock horizon.
    Regards.
    MJ

  • Updating textfield with DEL key not taking into account

    I have a decimal field which accepts only numerals...
    after modifying the value in the field and pressing an OK button...the new value is reflected in a table...
    but if i modify the same field value using the "delete" key and press OK...the new value is not taken into account....
    but the same works with "backspace" key...
    So do i need to set anything to respond to del key...
    Thanks

    Also i am not able to put the code here as it is a huge applicationI did not ask for your entire application. I asked for
    demo code means code that we can compile and execute, but it only contains the code relevant to your problem
    Here is an example:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class DemoCode extends JFrame
         JTextField textField;
         public DemoCode()
              textField = new JTextField();
              getContentPane().add(textField, BorderLayout.NORTH);
              JButton button = new JButton("Update Database");
              button.addActionListener( new ActionListener()
                   public void actionPerformed(ActionEvent e)
                        System.out.println(textField.getText());
                        textField.setText("");
                        textField.requestFocusInWindow();
              getContentPane().add(button, BorderLayout.SOUTH);
         public static void main(String[] args)
              JFrame frame = new DemoCode();
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.pack();
              frame.setLocationRelativeTo( null );
              frame.setVisible(true);
    }If you can't create a simple demo then you don't understand your problem and if you don't understand your problem then how are we supposed to?
    custom field So you probably have a coding problem and we have no idea what your code looks like
    that accepts only decimal values and why are you not using JFormattedTextField?
    And this problem is not seen if i modify the custom field using any other key say like "Backspace".Again this problem doesn't make sense since the character should be removed from the text field before the OK button is pressed.

  • Sales orders ans reservations not taken into account on MPS / MRP

    Hello,
    I am implementing the MPS / MRP and I have the following problem:
    I have modified the necessary material master fields to take into account some materials on the MPS / MRP execution. These fields are MRP type, Lot Size, Strategy group and Availability Check.
    Then, executing the MPS / MRP I have realised that only the sales orders and reservations created after the material master modifications are taken into account when I execute the MPS / MRP.
    I suppose this is because the sales orders and reservations created before the material master modifications did not create the requirements because the availability check was not set for the material and so on... but I need to take into account these "old" reservations and sales orders .
    Is there any way to "update" these orders and reservations?? Or I need to delete them and create new ones??
    There are several sales orders and reservations created before the material master modifications. I think there have to be an standard way to update them.
    Thank you very much in advanced,
    Jordi.

    Dear,
    Are you getting these reservation in MD04?
    Check the Planning file entry for these material in MD21 if not then create it through MD20 and take MRP run with planning mode -3 Deleted and recreated. And Processing key NETCH.
    Also check the The firmed receipt is within the rescheduling horizon. The rescheduling horizon is set in Customizing for the MRP group (Transaction OPPR, Table T438M). A default value can be predefined in the Customizing of plant data (Transaction OPPQ, Table T399D). define the longer duration for it.
    The firmed receipt (the MRP element) participates in the rescheduling check. You can set which MRP elements participate in the rescheduling check in the Customizing of the plant data (Transaction OPPQ).
    Else you can carry out modification A using the MD_CHANGE_MRP_DATA BAdI and the CONSIDER_RESB method without making a modification.
    Regards,
    R.Brahmankar

  • Tax calc. during invoice post - taking unplanned del cost into account

    Hi all
    Iam posting an invoice in Miro for a p.o
    i have material cost,unplanned cost
    Iam using a input Tax of 5% which should only take Material cost into
    account while posting.
    but in my case it is taking the unplanned del cost also for calculation
    can you pl. let me know where the changes are to be made so that only material
    cost is to be taken for tax calculation.
    for eg
    material cost -- 100
    tax               -- 5.0%
    unplanned del cost -- 10
    so my inv. value should be -- 115.00
    where as it is taking as -- 115.50.
    regards
    Prasanna

    Hi srinivas
    Thanks for your inputs
    This is the present scenario.
    We are distributing Unplanned del cost among the line items.
    1. without having the Config made ( in OMR2)
    We can still post the Invoices with Unplanned delivery cost
    (without clicking the Calculate tax button )
    by adding the
    1. unplnd del cost in invoice details
    2.clicking the Net proposal button on tax tab view
    3. enter the total amt on basic data
    4 when we are simulating we are getting
    Warning message *********Twice ******
    as Tax entered incorrect (code V4, amount 5.50), correct 6.05 eur
    Message no. FF 707. and then we get the
    5 We have to click the continue button twice
    6 then we get the Invoice data view
    7 when we click post , then again the
    above warning message appears,
    8  then we click continue button then it allows us to post.
    correct me if the above process is wrong
    My question :-
            1.  is this the standard functionality when using unplanned delivery cost  (without tax calculation )
           2. Can we apply some OSS so that this message appears only once.
    Thanks
    prasanna

  • Planned orders are not taking into account the processing time

    Hi,
    Could you please tell me why planned orders quantities are not based on processing time from the material master.
    Materials was set before with 1 day in house production , no matter of lot size.
    Based on routings I updated material master with processing time depending on lot size.
    What is bottering me now is that planned orders are not taking into account processing time. (e.g.  based on my processing time 1000 pce are produced  in 3 days, but planned orders show me that 1000 pce are still need  in 1 day , but it  can not be produced in 1 day   ).
    what did I miss?
    Thanks a lot for any information!

    Hello Simona
    The in house production time from tab MRP 2 is lot size independent.
    However, on tab work scheduling you can define a lot size dependent times.
    Please observe that, if you have entered an in house production time, the processing time will not be considered. The F1 help of the field provides the following explanation:
    You can define work scheduling times in the material master record in one of two ways:
    Either you enter the in-house production time. If required, you can get the system to update this value from the routing.
    Or you enter the setup, teardown, processing, and interoperation times. If you maintain these values, the system determines the in-house production time on the basis of lot size.
    Therefore, if you want to consider the processing time, you should remove the in house processing time.
    BR
    Caetano

  • How to approach authorization taking data into account (?)

    hi
    I have been similar to "Introduction to ADF Security in JDeveloper 10.1.3.2" for an approach to authorization taking data into account.
    For example to solve something like this:
    Some users should be able to update SCOTT.EMP.SAL, but only for those records where they "are manager" (e.g. based on SCOTT.EMP.MGR).
    Because the current (10.1.3) "OracleAS JAAS Provider" Re: ADF Security : custom SecurityContext seem to provide the API hooks or customization features I think I need for this, I tried the following approach:
    (1) A solution implementation should preferably be "JAAS like", using classes from the "java.security" package like java.security.Permission or java.security.AccessControlContext etc. This way it is more likely to be future proof and could possibly more easily be integrated with future JAAS solutions from Oracle.
    (2) To minimize dependencies in my application, I introduced only one custom interface that does what I really want to do, that is "to check permissions":
    package accesscontrolstuff.common.security;
    import java.security.AccessControlException;
    import java.security.Permission;
    public interface PermissionChecker
         public void checkPermission(Permission pPermission)
              throws AccessControlException;
    }(3) It should be possible to easily check permissions in the business service implementation (ADF BC) and the view/controller layer (JSF managed beans).
    I have created an example application that implements this approach (check README.txt) :
    http://verveja.footsteps.be/~verveja/files/oracle/AccessControlStuffApp-v0.01.zip
    It has an updateAllEmp.jspx page that has a button for each EMP row to give a raise (that is update SCOTT.EMP.SAL). It will show an error message when the user is not allowed to give a raise.
    It has an updateSomeEmp.jspx page that has a button only for the EMP rows where the user is allowed to give a raise.
    question :
    All suggestions for improvement, on the approach or the example application, are welcome.
    (using JDeveloper 10.1.3.3.0 : ADF Business Components and ADF Faces)
    regards
    Jan Vervecken

    Thanks for you reply Frank and for going through the example.
    (a1) about "... the example could be coded without JAAS in the application as well ..."
    I'm not sure I understand when an application is "with JAAS" or "without JAAS" (in an Oracle context)?
    (The AccessControlStuffApp-v0.01.zip example includes an orion-application file that has a jaas-mode configured, which I could probably use for an implementation variation the works with a javax.security.auth.Subject instance, but the current implementation works with the "no jaas-mode" variant using the getUserPrincipalName() method.)
    (a2) about "This makes it hard to manage security roles ..."
    I don't think I understand. For the example, all authorization configuration is in the EMP table, why would that be hard to manage?
    What alternative would you suggest to "manage" security on the EMP table as is intended in the example?
    (a3) about "I think the required enhancement would be to add the dynamic permissions to an existing ADFSecurityContext ..."
    That sounds like what I have been looking for (see forum thread "ADF Security : custom SecurityContext").
    (a4) about "... and make this available to the business service as well ..."
    That would probably be useful.
    see also http://www.oracle.com/technology/products/jdev/howtos/1013/adfsecurity/adfsecurity_10132.html
    that says : "The defense-in-depth security design pattern demands that application developers implement application security with multiple lines of defense. ..."
    Thank you for pointing developers to this thread.
    regards
    Jan

  • Can't sign into Ovi account with my Ovi Suite 3.0....

    I was using the older  version of Ovi suite and I could sign into ovi to update my software and stuff but since I updated to 3.0.0.284, I cannot sign into ovi thereby preventing me from updating my phone software....
    My internet is fine because I am able to check anything. The Ovi suite itself connects to the internet to give recommendation from ovi but jut that I can't log into my ovi account with the ovi suite. It tells me Nokia Ovi Suite cannot connect to the server. make sure your internet connection is working properly
    Any help
    Thanks
    Solved!
    Go to Solution.

    Your problem seems to be more complicated. I think the problem is in your PC system. The OS configuration prevent the OVi component to run. Please note also that OVi suite is not compatible to all Nokia Phone. Check the version list 1st.
    I have tested this version for several days with Win 7 Ultimate and there is no problem persist except cannot connect to OVI server (resolved after fill my OVI login info into Proxy form).  Except that, all function/feature work fine like sync, realtime sms, install app (except java app.), play music/video, and ect.
    Note : OVI Suite have no corelation with browser setting (all integrated). The most important thing that you have to pay attention is firewall, port setting, antivirus that can prevent connection to OVI server. Do not use advance internet connection like using proxy configuration (IP add : port). Just take off your mask
    Please refer to the sistem requirement  for OVI suite 3.0
    To install Nokia Ovi Suite, you need:
    Microsoft Windows 7 (excluding Starter Edition), Windows Vista (SP1 or newer), or Windows XP 32-bit version (with SP2 or newer)
    2 GB of disk space on your computer
    1 GHz processor
    64 MB graphics card
    1 GB of RAM (random access memory)
    1024x576 screen resolution and 24-bit colour
    Note: To play high-definition video, you need a 2 GHz processor and 128 MB of video memoryView full system requirements
    Choose how to connect your phone to a computer:
    With a USB Cable (DKE-2, CA-101, CA-53, CA-70, CA-126, DKU-2)
    Via Bluetooth
    Supported Bluetooth software
    Windows 7 32-bit and 64-bit editions:
    Microsoft Windows Bluetooth stack
    WIDCOMM Bluetooth stack, driver versions 6.x
    Toshiba Bluetooth stack, driver versions 5.10.12, 6.10.10, and 6.30.01
    IVT BlueSoleil Bluetooth stack, driver versions 5.0.5, 6.2.227.11, and 6.4.245.0
    Windows Vista 32-bit and 64-bit editions:
    Microsoft Windows Bluetooth stack
    WIDCOMM Bluetooth stack, driver versions 6.x
    Toshiba Bluetooth stack, driver version 5.10.12
    IVT BlueSoleil Bluetooth stack, driver version 5.0.5
    Windows XP 32-bit edition:
    Microsoft Windows Bluetooth (only in Service Pack 2)
    WIDCOMM Bluetooth stack, driver versions 1.4.2.18, 3.x, 4.x, and 5.x
    Toshiba Bluetooth stack, driver versions 4.0, 5.0, and 5.10.12
    IVT BlueSoleil Bluetooth stack, driver versions 2.x, 3.x, and 5.0.5
    Supported email, calendar and contacts software
    Microsoft Windows 7 Contacts
    Microsoft Windows Vista Contacts
    Microsoft Windows Vista Calendar
    Microsoft Outlook 2002, 2003, 2007, 2010
    Microsoft Outlook Express
    Mozilla Thunderbird

  • Finder not taking into account local backups when reporting free disk space

    Time Machine in Lion (10.7.2) stores local backups of files on your laptop's hard drive when it is not connected to an external Time Machine backup drive. See this article for more information.
    If you click on the Apple in the top-left corner of your screen and choose About This Mac > More Info > Storage, you will see exactly how much space your local "Backups" are taking (along with other useful info about how your hard drive space is being used).
    Interestingly, the amount of free HD space listed there differes from the amount of free space Finder says is available (when you choose View > Show Status Bar to display it). The amount that it differs is exactly the same as the amount of the local "Backups." So, it appears that Finder is not taking those local Backus into account when it displays free disk space.
    So, Finder is telling me I have almost 100 gigs MORE free space than I actually have. I would prefer Finder to show me how much space I have AFTER the local Backups are taken into account.

    The article that you linked to gives the rationale for this:
    Note: You may notice a difference in available space statistics between Disk Utility, Finder, and Get Info inspectors. This is expected and can be safely ignored. The Finder displays the available space on the disk without accounting for the local snapshots, because local snapshots will surrender their disk space if needed.

  • GPO Loopback Processing with Users taken into account

    Hello,
    I am attempting to configure loopback processing for a team and am wanting a bit of advice.
    I want a script to be ran for the users on this team, which are in a separate OU than regular users. However, because of the settings required, I want it to only apply to certain computers as well, in a separate OU themselves.
    Now I read that loopback processing is what I want to do, however the videos I've looked up don't explain how to do this really well.
    All I want it to do is run a script taking into account the computers and users. Say if a regular user logged into those computers, the script wouldn't run for them. But if this team logged in, the script would run for them.
    Can anyone explain how to do this appropriately with loopback processing?
    Thank you.

    Hi,
    >>Can anyone explain how to do this appropriately with loopback processing?
    Based on your description, the following steps can be referred to as reference:
    Enable Loopback
    Merge mode in a GPO which is linked to the computer OU
    In a GPO linked to the computer OU, configure logon script settings
    In the GPO which is mentioned in step 2, use Security Filtering to deny the OU where
    standard user resides Read and Apply access permissions to the GPO
    Regarding Loopback Processing, the following articles can be referred to for more information.
    Loopback processing with merge or replace
    http://technet.microsoft.com/en-us/library/cc782810(v=WS.10).aspx
    Windows Server: Understand “User Group Policy Loopback Processing Mode”
    http://social.technet.microsoft.com/wiki/contents/articles/2548.windows-server-understand-user-group-policy-loopback-processing-mode.aspx
    Regarding Security Filtering, the following article can be referred to for more information.
    Security filtering using GPMC
    http://technet.microsoft.com/en-us/library/cc781988(v=ws.10).aspx
    Best regards,
    Frank Shen

  • BOP taking into account HELD/HOLD POs

    Dear gurus,
    May i kindly seek your inputs as we are always receivnig errors in CIF due to faulty POs that has been set to held status.
    For what i know, BOP should NOT consider them, but in this case, it is still taking it into account.
    Please advise.
    Thanks and regards!
    Zeke

    Dear Zeke,
    When the PO is kept on hold, as far as I know, system should trigger a queue to APO to delete it from LC as it is no more an element that accounts for further processing. If you're still facing a problem here, there seems to be an inconsistency. Are you regularly running the CIF delta report /SAPAPO/CCR and are you correcting the errors ? If you're following these things and if you're still facing the errors, there might have been a note that is missing in your release that addresses this problem. Getting in touch with SAP can help you.
    Hope this helps
    Babu Kilari

Maybe you are looking for

  • Error occurred in XML processing LPX-00601: Invalid token in

    Hello all, I'm new here and hope to find a resouce to learn from and give back to when possible. I am parsing an xml file in a stored proc. The file parses out fine when I make a small modification to the source xml file. Here is the mod: These are t

  • Security and grants OWB 10.2.0.4.36

    Hi everyone! Can someone explain to me how security works in OWB 10.2.0.4.36. Here is my problem, I've created 2 schemas on the same db instance, as e_staging and e_target, one needs to select on tables of the other and vice and versa. Through the Gl

  • Thunderbolt Monitor causing severe lag in FCPX 10.1.2 - Help!

    So, I have been using final cut X for a while with a 2012 Retina MBP connected to a thunderbolt G-raid and the apple thunderbolt monitor. I have had sevre lag and beach balling in FCPX every single time its plugged into my thunerbolt monitor - howeve

  • Recent changes to Fon policy rendering service not...

    Hi all, before I go into my problem, I'm a web developer, have been for 10 years, I work from home a lot, I live in a grade 1 annexe adjacent to my landlord, so I have to share his connection (no new sockets / wiring allowed), as a result of this I'v

  • Delete applicant number whitout using PU90

    Hi Expert, I wrote an RFC function to create an applicant. I use BAPI_APPLICANT_CREATE. After, when I have an applicant number, I need to update some infotype. If during this update, I have an error, I need to delete the applicant number. It is possi