Issue with Resource Usage

When I open up the project plan I see the following in the Resource Usage view for John (resource):
The level of effort for the task is 8 hrs for that day. However I am seeing a discrepancy where the total effort for that day appears as 9.6 hrs. I don't know where the additional 1.6 hrs is coming from.
The issue is the same for the other resources in the project.
Has anyone seen this issue before?
Thanks in advance. 

Hi Bomasamudram,
And you'll only see this check box for Summary Resource Assignemtns if you choose the account each time you start project pro...
Ben Howard [MVP] | web |
blog |
book | P2O

Similar Messages

  • Issues with data usage Samsung S5

    Over the past few months I have been paying outrageous bills due to one of my lines eating all my data when there is no one even touching the phone. I have 3 phones and a tablet on my plan and I am paying 288.00 a month and last month they charged me 15.00 for overage usages because it went over on the last day of the billing cycle. Once again that one line ate up all the data even though it's connected to our wifi or just sitting dormant. I am getting sick of paying these outrageous prices and am about to go somewhere else. I was tricked into the 10.00 a month tablet fee when I signed two phones up under the verizon edge plan. the sales clerk did not tell me I could not cancel the 10.00 a month fee because it would be under a year contract nor did I sign anything saying that, but when I went back in to change the 3rd line over to the Edge plan they told me it would be a $300 or so disconnect charge. So of course I am still paying 10.00 a month for no reason because I have wifi in my home and I only use the tablet in my home. so i need help with trying to figure out the data issues with just one of my lines. I do not have bluetooth on or location. I have went to the play store and uninstalled everything I could. I constantly close out of my applications and clear history etc.,,

    So you thought they would just give you a free tablet at $10 a month and it didn't need to be in a contract like phones?  I took the free tablet too but common sense told me it was locked into a contract, I didn't even ask as I just knew that would be the case but I didn't care.  Mary

  • Issue with resource bundle.

    Hi ,
    I have been facing a issue with getting properties from resource bundle.
    final ResourceBundle resourceBundle = ResourceBundle.getBundle("config/global");
    I had placed my global.properties file under "WEB-INF/classes/config" folder.It was working fine.I had resinstalled my sun one application server,.Now the server is throwing following exception -
    java.util.MissingResourceException: Can't find resource for bundle java.util.PropertyResourceBundle, key record.length
    But the same war file is working fine when I deployed it in sun one app servers running other machines.
    when i changed the code to -
    final ResourceBundle resourceBundle = ResourceBundle.getBundle("config//global");
    it started working in machine as well.
    How can I resolve this?
    Thanks,.
    Vivek

    And also you can try like this,
    My locale file in backing bean is like this
    Locale bean
    public class LocaleBean {
    public String language = "en";
    * @return
    public void changeLocale(String language) {
    System.out.println("changeLocale " + language);
    this.language = language;
    this.setLanguage(language);
    Locale newLocale = new Locale(this.language);
    FacesContext context = FacesContext.getCurrentInstance();
    context.getViewRoot().setLocale(newLocale);
    JSFUtils.storeOnSession("LOCALE", language);
    System.out.println("end of change locale");
    public void setLanguage(String language) {
    this.language = language;
    public String getLanguage() {
    return language;
    public void changeLocaleAction(ActionEvent actionEvent) {
    changeLocale(this.language);
    // Add event code here...
    Faces-config.xml
    <?xml version="1.0" encoding="windows-1252"?>
    <faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee">
    <application>
    <default-render-kit-id>oracle.adf.rich</default-render-kit-id>
    <resource-bundle>
    <base-name>Resorces.xx</base-name>
    <var>message</var>
    </resource-bundle>
    <locale-config>
    <default-locale>en</default-locale>
    <supported-locale>ar</supported-locale>
    <supported-locale>en</supported-locale>
    </locale-config>
    </application>
    <managed-bean>
    <managed-bean-name>localeBean</managed-bean-name>
    <managed-bean-class>LocaleBean</managed-bean-class>
    <managed-bean-scope>request</managed-bean-scope>
    </managed-bean>
    </faces-config>
    and my resource bundle as this :
    xx_ar_AR.properties
    xx.properties
    And Project properties>compiler property >character encoding > UTF-8
    select Tools-->Preferences-->Environment
    and then set the encoding to UTF-8.
    no need to change your trinidad-config.xml
    Regards
    PY

  • Classloader issue with resource adapter and webservice

    The following applications are planned to be deployed on the server.
    1.My-shared-lib.ear (J2EE shared library).
    2.My-Service-ear.ear (Service)
    3.My-Resource-Adapter.rar
    The My-shared-lib.ear contains a war which has 3rd Party jars.
    The My-Service-ear.ear contains the service classes and refers to the My-shared-lib.ear using a library relationship. In our case, it refers to spring, Hibernate and related jars.
    The My-Resource-Adapter.rar contains the Resources Adapters. In this case it contains the Spring jars.
    Points on Setup
    1.The configuration does not specify any jars in the classpath.
    2.There are no 3rd party jars in the ext folder.
    *2.Issue Description*
    Issue while starting the Service EAR.*
    The development setup has an application server that has My-shared-lib.ear and My-Service-ear.ear deployed. This works fine.
    The proposed deployment architecture mandates that these applications be deployed on a server where the My-Resource-Adapter.rar is already running. We can deploy & start My-shared-lib.ear . However, when we try to deploy and start My-Service-ear.ear, it fails to start with the error. The detailed exception is found in Appendix A.
    Error Message:
    java.lang.NoClassDefFoundError: org/hibernate/ejb/HibernatePersistence
    *3.Options tried*
    1.Place all the required jars in the .rar.
    We placed all the 3rd party jars required for the My-Service-ear.ear in the My-Resource-Adapter.rar file. When we deployed all the 3 applications, all applications including the My-Service-ear.ear were deployed and started as well.
    2.Place all the required jars in the Service ear.
    We placed all the 3rd party jars required for the My-Service-ear.ear in the My-Service-ear.ear file with the <prefer-web-inf-classes>true</prefer-web-inf-classes>. When we deployed all the 3 applications, all applications including the My-Service-ear.ear were deployed and started as well.
    3.Altering deployment order.
    The deployment order was altered with a higher preference being given to the My-Service-ear.ear. When we deployed all the 3 applications, the application My-Service-ear.ear was deployed but failed to start giving the same exception.
    *4.Analysis*
    1.The spring jar though available in the library ear is being loaded from the .rar application by the classloader.
    2.The above point means that the library reference being provided in the My-Service-ear.ear does not seem to have any impact.
    3.In the 3rd scenario we observed that when the spring is removed from the .rar, it gets loaded from the My-shared-lib.ear. However when it tries to load Hibernate related classes, it fails.
    *5.Summary*
    Our understanding is that all the applications run within their own Classloaders. If classes are not found within the applications, then they should be looking at the Application Server. But here we see that they are referring to the classes in ‘.rar’ file. Hence we are unable to understand this issue. The above problem has workarounds. However, these options are not allowed as per the requirement. The requirement is that the application should run independent of the’ .rar’. Is there a better approach? Are we missing any configuration?
    Edited by: user8575867 on Oct 13, 2010 11:41 PM

    This thread caught my attention - because since switching last week from a late '06 Macbook to the Macbook Pro 13", my Wifi performance at home has gotten slow and unreliable.
    I'm using the Apple MiniDP-DVI adapter, connected to a 24" Dell monitor, which has worked great for a few years on my white Macbook. My base station is a Linksys WRTSL54GS, located about 20 feet away from my desk.
    So, I tried some speed tests with and without the DVI. Performance with the adapter connected is terrible, disconnected it's perfect. Further testing shows that positioning matters.
    When the adapter is turned back 90 degrees, leading the monitor cable towards the back of my desk, Wifi performance is bad. When I turn the adapter so it sticks straight out the left side of the Macbook Pro, performance is normal.
    This is a little weird, but an acceptable workaround for me.

  • Special character issue with Resource Object in OIM 11g

    Hello
    While creating Resource Object with special character '/' in OIM 11g, it's not allowing me.
    For ex: Peoplesoft Finance/Reporting
    Do we have any other workaround without changing the Resource Object name??
    Thanks for your help.

    Nothing is there in system configuration related to special character.

  • Issue with jconsole usage

    hi,
    i am running a jar using
    java -Dcom.sun.management.jmxremote -jar start.jar
    i then run Jconsole and it doesnt recognize this process. I also tried
    to run jconsole with the pid and this is the error i got
    Exception in thread "main" java.lang.Exception: Could not open
    PerfMemory
    at sun.misc.Perf.attach(Native Method)
    at sun.misc.Perf.attachImpl(Perf.java:253)
    at sun.misc.Perf.attach(Perf.java:183)
    at sun.management.ConnectorAddressLink.importFrom(ConnectorAddressLink.java:66)
    at sun.tools.jconsole.JConsole.main(JConsole.java:779)
    Could anyone help me with this and let me know what i can do run
    jconsole properly.
    Thanks,
    Anirudh

    Hi Bomasamudram,
    And you'll only see this check box for Summary Resource Assignemtns if you choose the account each time you start project pro...
    Ben Howard [MVP] | web |
    blog |
    book | P2O

  • MS Project 2013 - Issue with Resource Custom Fields

    When I use “Resource Custom Fields”, (Number type) the formula do not work. Moreover the “Calculation for task and group summary rows” options do not work (be it sum, average or any other option). Any information regarding this will really be
    helpful.

    No, what I mean is that data you enter into the Number1 field added in a Resource view (Resource Sheet for example) will not show the same data as the Number1 field added in a task view.  See FAQ51 at: http://project.mvps.org/faqs.htm
    If you are seeing the correct data in the Task view, you can try applying the built-in Resource Group - but the issue will be that you will not see the total per resource.  For example - if Resource1 and Resource2 are assigned to one task and then Resource2
     and Resource3 are assigned to another task, you won't see the individual details for Resource 2.

  • Mobileconfig issue with ipad

    Hello everyone,
    I am facing an issue with the usage of mobileconfig to push profiles into Ipad/Iphone. This has been tested with IOS 8.1(iPad) and 8.3(iPhone).
    My profile has been generated manually(writing through apple key references) and then with the IPhone Config Utility, this profile works great with mac os X.x versions, tested on Snow Leopard, Maverick.
    This profile is here to setup an EAP-TLS connection, with server authentication, client authentication and CA certificate inside the profile.
    My connection is setup properly and I can connect on mac OS X as I said, but on iPad/iPhone after the profile installation, I get a screen to fill infos (login/pw) to connect to the network. As this is an EAP-TLS network I shouldn't have this, and I should have a choice of certificate(as my identity) if there were one thing to choose before the connection.
    So now I fill the information for login/pw and it still impossible to click the button 'Connect'.
    To have an idea this is how my "configured ssid" via the profile appear on the iPad/iPhone if I try to connected to it:
    http://imgur.com/dUOENth
    As you guessed 'Rejoindre = Connect'
    I have been through multiple threads and cannot find the source of the issue.
    My mobileconfig file is signed, my profile is trusted when installed as I ask to trust my newly pushed CA, I also try to install the CA before and then push the profile, same result.
    Lastly, the configuration of EAP-TLS with manually installed certificate is working great, only the autoconfig by profile is not. The auto configuration by profile with PEAP is working fine also.
    Here is my profile(I removed the content as some of the information are not supposed to be public, TestEAP = CA, svr = server authentication cert and antoine = client authentication cert):
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
      <key>PayloadContent</key>
      <array>
      <dict>
      <key>AutoJoin</key>
      <true/>
      <key>EAPClientConfiguration</key>
      <dict>
      <key>AcceptEAPTypes</key>
      <array>
      <integer>13</integer>
      </array>
      <key>EAPFASTProvisionPAC</key>
      <false/>
      <key>EAPFASTProvisionPACAnonymously</key>
      <false/>
      <key>EAPFASTUsePAC</key>
      <false/>
      <key>PayloadCertificateAnchorUUID</key>
      <array>
      <string>41FDAD3B-4024-4ACF-AFB0-AE9462B586E4</string>
      <string>C55E83E1-4C0D-4735-A158-FE05C83065E0</string>
      </array>
      <key>TLSTrustedServerNames</key>
      <array>
      <string>antoine.p12</string>
      <string>svr</string>
      </array>
      </dict>
      <key>EncryptionType</key>
      <string>WPA</string>
      <key>HIDDEN_NETWORK</key>
      <false/>
      <key>PayloadDescription</key>
      <string>Configure les réglages de connectivité sans fil.</string>
      <key>PayloadDisplayName</key>
      <string>Wi-Fi (pf-aa-sec)</string>
      <key>PayloadIdentifier</key>
      <string>antoine2.wifi</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadType</key>
      <string>com.apple.wifi.managed</string>
      <key>PayloadUUID</key>
      <string>945A78A2-214F-4E85-B44D-50E8A5077D4E</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
      <key>ProxyType</key>
      <string>None</string>
      <key>SSID_STR</key>
      <string>pf-aa-sec</string>
      </dict>
      <dict>
      <key>PayloadCertificateFileName</key>
      <string>srv.der</string>
      <key>PayloadContent</key>
      <data>
      </data>
      <key>PayloadDescription</key>
      <string>Authentifie l’appareil (certificat ou identité).</string>
      <key>PayloadDisplayName</key>
      <string>svr</string>
      <key>PayloadIdentifier</key>
      <string>antoine2.reference1</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadType</key>
      <string>com.apple.security.pkcs1</string>
      <key>PayloadUUID</key>
      <string>41FDAD3B-4024-4ACF-AFB0-AE9462B586E4</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
      </dict>
      <dict>
      <key>PayloadCertificateFileName</key>
      <string>TestEAP.der</string>
      <key>PayloadContent</key>
      <data>
      </data>
      <key>PayloadDescription</key>
      <string>Authentifie l’appareil (certificat ou identité).</string>
      <key>PayloadDisplayName</key>
      <string>TestEAP</string>
      <key>PayloadIdentifier</key>
      <string>antoine2.reference2</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadType</key>
      <string>com.apple.security.root</string>
      <key>PayloadUUID</key>
      <string>C55E83E1-4C0D-4735-A158-FE05C83065E0</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
      </dict>
      <dict>
      <key>Password</key>
      <string>qwer</string>
      <key>PayloadCertificateFileName</key>
      <string>antoine.p12</string>
      <key>PayloadContent</key>
      <data>
      </data>
      <key>PayloadDescription</key>
      <string>Authentifie l’appareil (certificat ou identité).</string>
      <key>PayloadDisplayName</key>
      <string>antoine.p12</string>
      <key>PayloadIdentifier</key>
      <string>antoine2.reference</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadType</key>
      <string>com.apple.security.pkcs12</string>
      <key>PayloadUUID</key>
      <string>680D4DB3-6196-471D-95AF-6EA0A1B6AF58</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
      </dict>
      </array>
      <key>PayloadDescription</key>
      <string>Description du profil.</string>
      <key>PayloadDisplayName</key>
      <string>antoine2</string>
      <key>PayloadIdentifier</key>
      <string>antoine2</string>
      <key>PayloadOrganization</key>
      <string></string>
      <key>PayloadRemovalDisallowed</key>
      <false/>
      <key>PayloadType</key>
      <string>Configuration</string>
      <key>PayloadUUID</key>
      <string>A1C6BF16-CE1A-4D64-B315-9DD72400E3C4</string>
      <key>PayloadVersion</key>
      <integer>1</integer>
    </dict>
    </plist>
    Thanks for reading

    Couldn't you use the free mdm -- meraki to generate the profile?
    Meraki -- A free MDM   [ expect lots of email and phone calls about upgrades ]
       Read the product overview.  Click on "get started now" to sign up.
         https://meraki.cisco.com/products/systems-manager/?ref=YZRzCR
       Video's on how to setup and use Meraki.
         https://meraki.cisco.com/blog/2012/08/how-to-get-the-most-from-meraki-systems-ma nager/

  • I am having a data excess usage issue with my Jetpack although I did not use the VZW network at all.

    Background: My home does not have access to landline internet and I am relying on a Verizon Jetpack device rather than satellite cable for internet access.  Within my JetPack wireless network I have several devices connected, iPADs, PC’s, printer, etc. (up to 5 devices can be connected with my system).  Recently, I had one device within my immediate wireless network that I needed to transfer data via FTP to another local device within my immediate network.  The receiving device FTP’d data from device (198.168.1.42) to local IP (address 192.168.1.2).  To understand the data path a Trace rout for this transfer is 198.168.1.42 (source) to 198.168.1.1 (Jetpack) to 192.168.1.2 (receiver).  Note that the VZW network ((cloud)/4G network) was NOT used in this transfer nor was any VZW bandwidth used for this transfer (of course less the typical overhead status/maintenance communications that happen regardless). Use of the VZW bandwidth would be something like downloading a movie from Netflix, (transferring data from a remote site, through the VZW network, into the Jetpack and to the target device).  I also understand if ones devices have auto SW updates that would also go against the usage as well.  I get that.  My understanding of my usage billing is based data transfer across the VZW network.
    Now to the problem: To my surprise I was quite substantially charged for the “internal” direct transfer of this data although I didn’t use the VZW network at all.  This does not seem to be right, and doesn’t make much sense to me.  Usage is should be based on the VZW network not a local Wi-Fi.  In this case, Verizon actually gets free money from me without any use of or impact to the VZW network.  Basically this is a VERY expensive rental for the jetpack device, which I bought anyway.  Considering this, I am also charged each time I print locally.  Dive into this further, I am also interested in knowing what is the overhead (non-data) communications between the jetpack router and devices and how much does that add up to over time?
    Once I realized I was getting socked in bandwidth, as a temp solution I found an old Wi-Fi router, created a separate Wi-Fi network off the Jetpack, but the billing damage was already done.  Switching each device back and forth to FTP and print is a hassle and there should be no reason the existing hardware couldn’t handle this and charges aligned with VSW usage. Is purposely intended by Verizon? Is this charging correct? And can I get some help with this?
    Logically, usage should be based on VZW network usage not internal transfers.  All transfers between IP addresses 192.168 are by default internal.  Any data that needs to leave the internal network are translated in to the dynamic IP addresses established by the VZW network.  That should be very easily detected for usage. In the very least, this fact needs to be clearly identified and clarified to users of the Jetpack.  How would one use a local network and not get socked with usage charges?  Can one set up a Wi-Fi network with another router, hardwire directly from the router to the Jetpack so that only data to and from the VZW network is billed? I might be able to figure out how to have the jetpack powered on but disable the VZW connection, but I don’t want to experiment and find out that the internal transfers are being logged and the log sent after the fact anyway once I connect…. A reasonable solution should be that users be able to use the router functions of the Jetpack (since one has to buy the device anyway) and only be billed for VZW usage.
    Your help in this would be greatly appreciated. Thanks

    i had one mac and spilt water on it, the motherboard fried so i had to buy a used one...being in school and all. it is a MC375lla
    Model Name:
    MacBook Pro
      Model Identifier:
    MacBookPro7,1
      Processor Name:
    Intel Core 2 Duo
      Processor Speed:
    2.66 GHz
      Number of Processors:
    1
      Total Number of Cores:
    2
      L2 Cache:
    3 MB
      Memory:
    8 GB
      Bus Speed:
    1.07 GHz
      Boot ROM Version:
    MBP71.0039.B0E
      SMC Version (system):
    1.62f7
      Hardware UUID:
    A802DE22-1E57-5509-93C5-27CEF01377B7
      Sudden Motion Sensor:
      State:
    Enabled
    i do not have a backup of it, so i am thinking about replacing my old hard drive from the water damaged into this one, not even sure if that would work, but it did not seem to be damaged, as i recovered all the files i wanted off of it to put onto this mbp
    the previous owner didnt have it set to boot, they had all their settings left on it and tried to edit all the names on it, had a bunch of server info and printers etc crap on it.  i do not believe he edited the terminal system though--he doesnt seem to terribly bright(if thats possible)
    tbh i hate lion compared to the old one i had, this one has so many more issues-overheating,fan noise, cd dvd noise
    if you need screenshots or data of anything else as away
    [problem is i do not want to start from scratch if there is a chance of fixing it, this one did not come with disks or anything like my first. so i dont even know if i could, and how it sets now i am basically starting from scratch, because now all my apps are reset but working, i am hoping to get my data back somehow though, i lost all of my bookmarks and editing all my apps and setting again would be a pain

  • Usage type issue with PI upgrade from 7.01 to 7.11

    Hi guys,
    We are currently performing an upgrade on our PI system.
    We are upgrading from PI 7.01 to PI 7.11 and we've come cross an issue during the prepare phase of the install.
    An error has occurred during the execution of the CHECK_SUPPORTED_SOURCE_USAGES phase.
    This upgrade doesn't support upgrade of sap.com/MI usage detected on the source system.
    You can find more information in the log file /usr/sap/PI3/upg/java/log/CHECK_SUPPORTED_SOURCE_USAGES_SSU_01.LOG.
    Use the information provided to troubleshoot the problem. An SAP Note may provide a solution to this problem. Search for SAP Notes with the following key words: com.sap.sdt.j2ee.phases.PhaseTypeCheckSupportedSourceUsages com.sap.sdt.j2ee.tools.check.NegativeResultException This upgrade doesn't support upgrade of sap.com/MI usage detected on the source system. CHECK_SUPPORTED_SOURCE_USAGES INIT PREPARE NetWeaver Upgrade SAPJup Java Upgrade
    When reporting problems to SAP Support, attach the trouble ticket file /usr/sap/PI3/upg/java/log/TroubleTicket_01.txt to your message.
    We've looked through the main upgrade notes and they mention which usage types are supported, but they do not mention explicity what usage are not supported, and how to proceed with the upgrade if your system does have one of these non-supported usage types.
    Considering our system does contain usage type MI, does this mean that we cannot upgrade our current PI system to 7.11?
    Please help!
    Thanks,
    Steph

    Hello
    Please see note #1247043 Release Restrictions for EHP 1 for SAP NetWeaver PI 7.1 - section "Upgrade: source system must be a dedicated PI system".
    It is not possible to upgrade an existing system with the usage type MI. Even if you delete the usage type MI (if this is possible) the upgrade will not be possible.
    Regards
    Mark

  • Issues with Firefox hogging resources...

    I have several issues with Firefox intermittently consuming 99-100% of my CPU memory. Now, let me preface this by saying that I am NOT an advanced user, and can only tell you what I see on things like the Task Manager and such. Furthermore, I know that you guys know about some of this stuff - at least, I am pretty sure you do - but I am nowhere near comfortable enough to mess with any command line... stuff... in Firefox. I just am not knowledgeable enough about the program, and I don't want to 'break' it (lol). Anyway, down to business. Here are the issues I am having:
    1. Upon startup, Firfox takes between 30 seconds and a minute and a half to load 5 tabs. When I first downloaded and installed it, these same tabs took less than 10 seconds to load. I have tried clearing my cache and history but nothing seems to help. If it matters, I have been using Firefox for going on 5 years now.
    2. Once the program has loaded, '''any''' keyboard shortcuts I use in it (ctrl+a, ctrl+c or v, alt=tab, etc) cause the CPU memory usage of Firefox to spike to 99 or 100 percent. In affect, it freezes my computer for anywhere between 2 and 30 seconds, roughly. It does this usually, but not always, and I frequent all the same sites, so the page I am on does not seem to matter.
    3. I have noticed that some of the addons I use with Firefox, mainly Multi Links, lag as well when the above issue is occurring. Not sure if the two are connected in any way (also not sure why that feature is not ''built into Firefox to begin with'') and would have checked this but I will not risk not being able to get back here again. See below.
    4. This is unrelated, but I felt it merited some small mention. This is effectively my SIXTH attempt at posting my query. The first time, I created an account and it forwarded me to some page basically saying 'Yup, you're logged in alright.' Then it KEPT doing that every time I tried to flesh out and ask my question, until I navigated COMPLETELY away from the page ''four times'' and attempted this one last time. Very frustrating. I even tried going to Live Chat for help, but somehow got off the chat window page and then suddenly chat was closed... right. Anyway, point being, it was difficult to get this posted and it has me even more annoyed. >.<
    I have always loved Firefox because it was faster and more reliable than IE. But here recently... it just seems to be going downhill. For instance, I have seen others ask questions about what's going on with the plugin container and that stupid flash plugin - I happen to have that issue rather severely, to the point that I must leave Flash off entirely until I ''have to'' turn it back on (which is wearing down my last nerve, I might add, since I use sites that require that particular plugin daily), and while I did see a couple rather nice solutions about editing/tweaking internal Firefox settings, I must profess that I am nowhere near competent or comfortable enough to even think about attempting them. Furthermore, I do not believe I should be required to make such changes in order to get the program to function properly and risk ruining it completely so that I have to uninstall and reinstall just so I have Firefox. This is all rather exasperating, and judging from the replies I saw on those topics, I do not expect much help here (a couple of people were rather rude on one of those topics, I am afraid I am a minority here, not knowing my way around program language and all =( ). My main goal is to make you aware, if you are not already, that issues exist and if you have tried anything on your end to rectify them, it has not worked for some. I am at my wit's end here, I do not know what else to do to try to solve these issues other than clear cache and history, restart Firefox, so on and so forth. *sigh* I'm seriously thinking about going back to IE, and you have no idea how much that really ticks me off; I think, out of all of this, even all my wasted time, that's what upsets me the most.

    Issues of this sort are, unfortunately, more common and the we'd like them to be. However, they tend not to be cause by Firefox itself, but rather by software that is running either inside or alongside it, such as add-ons or firewalls. Since these issues have a broad span of possible causes, you need to diagnose your problems before fixing them. Follow these instructions ''to the line'', as they'll probably help you diagnose and fix the problems you're having.
    #run Firefox in [http://support.mozilla.com/en-US/kb/Safe+Mode safe-mode] to disable all extensions, themes and plugins. If this fixes your problem, be it with RAM or CPU usage, then you know it's a problem with add-ons (plugins, themes or extensions). Proceed to number 2. If safe-mode doesn't fix your problem, then read bellow, after this list;
    #update all extensions (go into ''Tools > Add-ons > Extensions > Find Updates''), themes and plugins (see [https://www.mozilla.com/en-US/plugincheck/ this page] in your Firefox. If this doesn't solve the issues, proceed to the following number;
    #disable all extensions, themes and plugins in your Firefox (not running safe-mode). This is temporary and for diagnostic purposes only. Being certain that, as in safe-mode, the problems you're having have gone away, enable one plugin at a time. You should be certain that you actually want that plugin to be enabled. It's best to keep the overall number of enabled plugins as low as possible. When you encounter problems, you know you've found a problematic plugin, so disable it for good. Keep enabling all plugins (except problematic ones) until you've gone through them all. If you need support for a problematic plugin, you need to contact its author for support;
    #enable one extension at a time. Again, be certain that you actually want that extension to be enabled. As with plguins, it's best to keep the overall number of enabled extensions as low as possible. Also, try the theme you want to have installed so see if that is what's causing the problem. When you encounter problems, you know you've found a problematic extension/theme, so disable it for good. Keep enabling all your extensions (except problematic ones) until you've gone through them all. Just the same as with plugins, if you need support for a problematic extension/plugin, you need to contact its author;
    #if you've followed my instructions above, you're done! You've fixed your problems with problematic add-ons. If you want to keep using those problematic add-ons, please contant their authors for support.
    Ok, now... ''If'' disabling all extensions and plugins through safe-mode didn't work to fix your problems (or, in other words, if you've just read number 1 on the list above and come straight here), then you have different issue. The most likely scenario is that you have a third party software running on your computer that is messing with Firefox. Detecting which program it is may be tricky, but the following list should help you. Make sure you follow it carefully. Don't forget to answer the question on the last point, if nothing else helps.
    #try reinstalling Firefox. No data will be lost. You can get the latest version (for free, as always) at [http://www.getfirefox.com/ getfirefox.com]. Make sure you [http://support.mozilla.com/en-US/kb/Uninstalling+Firefox uninstall Firefox] prior to reinstalling it. For help installing Firefox, see [https://support.mozilla.com/en-US/kb/Installing+Firefox this support article]. If that doesn't fix the problem, proceed;
    #do a virus/malware check on your computer. See [https://support.mozilla.com/en-US/kb/Is+my+Firefox+problem+a+result+of+malware?s=malware&as=s this support article] for help on this point. ''This is a very important step'', so please pay attention to it. If your problem is not due to viruses/malware, proceed;
    #disable all software running in the background that you don't want to have running in the background (in Windows operating systems, this is done by pressing WINDOWS+R in your keyboard, typing ''msconfig'' and pressing Enter; now, under the ''Startup'' tab, you can uncheck the software you don't want, and reboot your system for changes to take effect; if you're unsure of what software you want running, ask someone with more experience). If this doesn't fix your issues with Firefox, proceed;
    #check if your firewall/antivirus/security suite is conflicting in any way with Firefox's normal behavior. Check for enabled functions/features that you don't want and/or may be causing problems with Firefox. You'll find that these features are most likely tied to Internet Security features, such as link scanners or URL checkers and the like. If you're not sure they are conflicting with Firefox, simply try to disable them temporarily to see whether or not that's true. If this doesn't solve the issues, proceed to the following number;
    #check your operating system security options, mainly advanced options that are not configured by default. While it's very unlikely that this may be the cause of the problem, it's remotely possible. If this doesn't work, proceed to the following point;
    #update your modem/router software. There have been some reports that some modem/router software may cause Firefox and other browsers to loose performance and/or stability. If updating doesn't fix your issue, try other versions of the software, if possible. If you need support with this, contact your modem/router manufacturer. If this doesn't help, proceed;
    #if you are using a Windows operating system, clean up your OS registry using appropriate software. There have been reports that badly maintained Windows Registries may case problems with Firefox. If this doesn't help, see the following point;
    #please try creating a new temporary Firefox profile ([http://support.mozilla.com/en-US/kb/Managing+profiles managing profiles]) and see if the issues persist. Please report the results, so we can help you further.

  • Issue with IP address resource

    Hi
    I have been having an issue on our file server cluster recently where an IP address for the backup LAN scope will not come online. This happened a few days ago and the IP address eventually went online, but now it has been failing for over of day with the
    following message in cluster logs (Client Identifying information removed):
    000040a8.000020c8::2014/05/15-11:19:42.768 WARN  [RES] IP Address <IP Address 10.*.*.*>: NetInterface *************-****-****-************ is not reachable. Wait & retry.
    000040a8.000020c8::2014/05/15-11:19:43.782 ERR   [RES] IP Address <IP Address 10.*.*.*>: Timed out waiting for NetInterface *************-****-****-************ to be available. Failing resource.
    I can not see any issue with network cards, and this issue occured even on another node. This single resource failing is also causing the networks in that scope to show as failed.
    Update:
    I have been able to get this issue to resolve by reapplying the Static Routes (even though they show as already existing when I put them in). The resource then goes online. Unfortunately this reoccurs on a daily basis.

    Hi DH84,
    I see what you say but when you can write static route please you use interface ID.
    It is a best practise for all cluster systems
    For example, here is my route table, the interface id 7 is my data nw. when i write a static route it must be;
    route add x.x.x.x mask 255.255.255.0 x.x.x.x if 7
    Regards

  • Exchange 2013 issue with High memory Usage on Mailbox server post SP1 update.

    So we have been chugging along fine since Feb 2 2014. 
    I performed a migration from 2010 from the UK to the US doing "incremental" mailbox moves. (get in contact with me if you want to know how. But we moved 400 Mailboxes averaging at 2gb a piece from the UK to the US, over the transcontinental link.
    & then the weekend of the final, had everyone & everything done by the end of the cutover weekend)
    Any woot.
    So I applied the 2013 SP1 a few weeks back, & have intermitantly been alerted to the memory spiking over 95%. For me (and for any exchange admin) when i get those types of alerts i drop everything & run to the nearest PC to see what is going on.
    Now the first & second time, it was an issue with logs filling up the drives, & my clean log script not running to remove any logs older than 30 days. But since then it has been legitimate 95%+ memory usage. 
    For the most part its been 95-97 max, with 1 or 2 times hitting 98. After some time, the memory does drop back down to 94.
    this is ....umm "fine" however it is becoming a nuisance, since most of the time it corrects itself. What i dont want to happen is get into the groove of saying "ah bah! its nothing" & letting it go.
    the server has 16gb of memory in it, it is the Mailbox server (CAS /Frontend is on a seperate server)
    below is a screen shot, so i know the Storeworker grabs whatever it feels like grabbing, however it does NOT EVER release memory.  I also see the NodeRunner.exe (2 of them)  is always around 900 almost a MB
    now if i could somehow get the first 2 Storeworkers to drop down to 900ish, then that should alleviate my memory issues. 
    what I am m looking for is some type of "magic bullet" to put my memory issues at ease..

    thats the problem & seems to be a misconception.
    Exchange NEVER releases the memory when other things need it.  As the users state in your thread you linked. (i came across that early in my search for a resolution). An example is if another admin & myself log into the backend server at the same
    time & begin clicking around opening things, etc..Memory will go to 100% which = No Buenos. 
    There are numerous post all over the internet from people who say it releases, but them 5 more comments to that 1 saying that it does not. 
    I know what the process's do, however it seems like the SP1 has increased memory usage, as typically the Store.exe would only grab about 900-1000. 
    in terms of the noderunner, once again i know its role, however we are now 2 months+ live on 2013 post migration, I do not think it is still indexing all those emails. 
    all DB's report healthy.
    Name                            Status  CopyQueue ReplayQueue LastInspectedLogTime   ContentIndex
      Length    Length                             State
    WBAC1\EXCHBE001                          Mounted         0         0                        
             Healthy
    WBAC2\EXCHBE001                          Mounted         0         0                        
             Healthy
    WBAC3\EXCHBE001                          Mounted         0         0                        
             Healthy
    WBAC4\EXCHBE001                          Mounted         0         0                        
             Healthy
    WBAC5\EXCHBE001                          Mounted         0         0                        
             Healthy

  • Issue Downloading Resources with Java Web Start

    I'm having an issue with Java Web Start downloading resources. After executing the JNLP file, the download will start and the main Jar will download, then the download will just stop. The downloader is still running, but the progress bar just sits and nothing happens. This only will happen on some machines, even ones on the same network. Others download fine, and the application starts correctly. I thought maybe a setting with java web start needed to be changed, but the proxy settings are set to the browser, which are the same for all machines. The JNLP file is below (however, for security reasons the codebase/homepage are left out, but they are correct in the actual file). Does anyone have any idea of what the problem might be?
    <?xml version="1.0" encoding="UTF-8" standalone="no"?>
         <jnlp codebase="..." spec="1.0+">
         <information>
         <title>Java3D Test</title>
              <vendor>None</vendor>
              <homepage href="..." />
              <description>Test application for Java3D</description>
         </information>
         <update check="always" />
    <security>
         <all-permissions/>
    </security>
    <resources>
              <j2se version="1.5+"/>
         <jar eager="true" href="TestJava3D.jar" main="true" />
              <jar href="lib/Library.jar" />
              <jar href="lib/Java3D.jar" />
              <jar href="lib/j3dnative.jar" />
         </resources>
    <application-desc main-class="testjava3d.TestJava3DMain">
    </application-desc>
    </jnlp>

    You could enable JavaConsole and turn on tracing to get more debugging info. See: http://docs.oracle.com/javase/7/docs/webnotes/tsg/TSG-Desktop/html/plugin.html#gcexdf

  • Issue with embedding and usage of worklist TF in ADF app

    In our application, we have embedded the worklist TF from "adflibTasklistTaskflow.jar" in our jspx page. Below is the page def binding for the TF
    <taskFlow id="taskListtaskflowdefinition1"
    taskFlowId="/WEB-INF/taskList-task-flow-definition.xml#taskList-task-flow-definition"
    activation="deferred"
    xmlns="http://xmlns.oracle.com/adf/controller/binding">
    <parameters>
    <parameter id="federatedMode" value="false"/>
    <parameter id="showActionDropdown" value="true"/>
    <parameter id="showViewFilter" value="true"/>
    <parameter id="showAssignmentFilter" value="true"/>
    <parameter id="showStatusFilter" value="true"/>
    <parameter id="showSearchControl" value="true"/>
    <parameter id="showTaskTabs" value="false"/>
    <parameter id="displayColumnsList"
    value="title, state, creator, assignedDate"/>
    </parameters>
    </taskFlow>
    Issue
    When we try to re-assign the claimed task in the worklist, it opens up a re-assign popup - "Identity browser".
    Within Reassign Screen:
    - Select "All" value on the dropdown
    - Enter a last name on the text field. I.e. "Kristoffersson"
    Or enter an email address.
    - SOA error will appear as mentioned below
    "Search failed with an error. Service error.. Refer to the log file that is configured for oracle.soa.services.identity for more details on this error and contact Oracle Support Services"
    This issue is not seen for any other option in the drop down other than "All" (e.g. "users", "group", etc. it is displaying all corresponding search results of users from LDAP)
    Below are the library which we have added in our UI project:
    I. BPM worklist components
    1) adflibTasklistTaskflow.jar
    2) adflibWorklistComponents.jar
    II. BPM Workflow
    1) bpm-services.jar
    2) bpm-infra.jar
    III. BPM taskflow
    1) bpm-workflow-datacontrol.jar
    IV. BPM services
    1) bpm-services.jar
    Is there anything missing from the uptake? Please suggest.
    Also, is there any uptake document for the same (embedding human worklist into a page)?

    Hi,
    I remember a similar issue with inner frames that should be fixed in JDeveloper 10.1.3.3. The problem was that the ADF Faces JavaScript did not get the correct document root.
    Frank

Maybe you are looking for

  • Helpful article on TLF...

    My colleague just wrote a very helpful and interesting article on TLF. I hope you find it as helpful. http://blog.grio.com/2009/10/going-with-the-flow-tips-and-tricks-for-using-the-adobe-flex- text-flow-component.html

  • AE Crashing and Errors

    Hey I am having issues with AE crashing when i try to scrub through a project. This is a particle build logo. Also when i try to render the project I get this error Once I get this error I cant even close the programme without going Ctrl, Alt Del???

  • Do we need to give new joins in physical layer

    hi all, due to some back ground problem ,we have deleted the existing table in back end and again we have created the table having different columns names with same table name let say ,i have deleted table A and it is having columns (no int ,name var

  • Xerces SAXParser validation problems

    I'm using the Xerces 2 beta 3 SAXParser to validate an XML document but it does not seem to raise a SAXParseException even though my XML is not valid. Say I have the following DTD, example.dtd: <?xml version='1.0' encoding='UTF-8' ?> <!ELEMENT a (b)>

  • Security Update 2014-002, Safari update issues

    I have tested the latest 10.9.2 security updates on a client running DFX and it appears to completely break OS X. Our base image has proven faultless and unmodified (thanks to DFX) over 70+ clients for about a month. Post security update installation