Interest Lock

Does Interest lock ever stop interest calculation on Security Deposit Payments?
Interest locks on Account should stop interests on all items however it never stops credit interest from being posted - is that how it is designed to work as security deposit interests should be paid due to legal requirements regardless of utility preference.

Shewta,
As per Standard SAP, the interest lock field at Contract Account level is only designed to stop the Late payment charge (debit Interest on Overdue items).It doesn't consider the SD Down Payment for blocking interest.
To Stop the interest calculation for the SD payment-
(a) Place the interest lock at the line item against the SD payment and then it will not calculate the Credit interest.
(b) If you want to stop the interest calculation for the SD payments, considering the interest lock field at the Contract account field, then you have to enhance event 2015 and raise exception ITEM_BLOCKED, for items which have the interest lock field active at contract account level.
Hope it helps
Thanks,
Amlan

Similar Messages

  • Interest on Security Deposits

    Hi Experts,
    I have an issue with Interest on Security Deposits. Eventhough we have locks in Contract Account and its validity period is till 9999 and few years back returned the security deposits. When we run the Interest on Security Deposit FPINTM2 system calculating the interest for all (security deposit alredy returned and having locks in contract account) i.e. very small amounts like $0.86, $0.82, $0.73 and crediting. We have hundreds of contract accounts like don't know why system behaving like this.
    Any thoughts and replies appreciable.
    Awaiting your responses.
    Thanks & REgards
    KV

    Hi,
    If the cash security interest run is calculating interest on SD, then somehow the System is not taking the status of the SD as released.
    You can first check in the table DFKKIAPT about the interest documents and all the relvant information,like the period for which the interest is getting calcuated, interest key etc.
    Also check the released field in table -FKK_SEC for the security deposit no. For a relased SD, there should be flag X against this field. If this is not X, system will calculate interest on SD.
    Moroever, instead of placing locks at the contract account master, place the interest lock at the SD line item through FPL9.
    Hope it helps....
    Thanks,
    Amlan

  • Resume from suspend - Background & Lock Screen image corruption

    I have a Dell Vostro 3700.
    The OS is Arch 64 bit. I am using Nvidia-340xx and kernel 3.17.4-1.
    When I resume from suspend my lock screen and wallpaper images look like static on a TV.
    If the img tag doesnt post the image...here is my imgur link to what it looks like. http://imgur.com/xnftjFC
    Thank you.

    thiagowfx wrote:Would reloading the wallpaper solve your problem? For example, with feh. If yes, maybe you could reload it automatically every time you exit from suspend.
    Reloading the wallpaper actually does do the trick. The feh method will most likely work.
    i3lock && systemctl suspend
    The i3lock produces the same results. Interesting lock screen btw.
    I didn't have this problem until the upgrade when I had to use 'nvidia-340xx' instead off 'nvidia' for my drivers. Obviously that was quite a while ago and since then I have re-installed arch from scratch a few times and each time, it was the same issue.

  • Poor performance caused by using OCI driver?

    [Sorry for the multipost]
    I'm working on a medium-sized Apache / Tomcat / WLS 5.10 / Oracle
    system hosted on some 4-processor Suns. The Apache / Tomcat tier
    uses one box, the WebLogic tier uses another, and the Oracle tier
    uses a third.
    We've found that the performance, measured as the time it takes user
    operations like loading a page that displays database data, gets
    unacceptably bad at suspiciously low loads. When the system is in
    this state, none of the machines appears to be pushed very hard.
    There's no significant paging going on, the disk and network I/O
    isn't out of line, and the CPU load just isn't high enough to
    explain what's going on. Only the WebLogic tier shows a load over
    10%. When the system is perceived as too slow by the users, the
    CPU load on this tier is only 30-40%.
    To try to find out what's going on, I did a series of thread dumps.
    When the system is heavily loaded, I only see about three Oracle
    statements currently being processed (runnable threads with call
    stacks inside weblogic.db.oci.*). What I do see lots of is blocked
    (and one runnable) threads inside
    weblogic.rjvm.RJVMImpl.removePeerGoneListener or
    weblogic.rjvm.RJVMImpl.addPeerGoneListener. These threads appear to
    be attempting to obtain or release database connections.
    I don't know why, but the site is configured to use the WebLogic OCI
    driver for Oracle, instead of the Oracle-supplied thin driver. Is what I'm
    seeing what Sun is describing in this paragraph
    (excerpted from http://java.sun.com/docs/hotspot/PerformanceFAQ.html#24):
    Oracle provides two types of database drivers: a type-2
    driver, called the OCI (Oracle Call Interface) driver
    that utilizes native code, and a type-4 pure Java driver
    called the thin driver. In single processor environments,
    the thin driver works somewhat better than the OCI driver
    because of the JNI overhead associated with the OCI
    driver. On multi-processor configuations, synchronization
    points within Solaris used by the OCI driver become big
    bottlenecks and prevent scaling. We recommend using the
    thin driver in all cases.
    -- Erik

    Hi. I'll chip in here too. Yes, you are wasting JVM cycles having all those
    wasted threads. Threads aren't free, inexhaustable sources of compute power
    that some people assume (I'm not saying you're one). All these threads do
    share a single OS process and CPU. The JVM has to check all these all the
    time to see if they have something to do. I recommend configuring the
    server to run about 15 or 20 execute-threads.
    I see only one thread waiting on Oracle to return data, so I don't think this
    is a JDBC issue necessarily. What I do see is lots of threads trying to operate
    on a Vector, all being blocked, or at least serialized by the lock this thread has, below.
    Is the server hung at this point, or just slow?
    "ExecuteThread-109" daemon prio=5 tid=0x311fb8 nid=0x78 runnable [0xcf9ff000..0xcf9ffc68]
    at java.util.Vector.removeElementAt(Vector.java:509)
    at java.util.Vector.removeElement(Vector.java:598)
    at weblogic.rjvm.RJVMImpl.removePeerGoneListener(RJVMImpl.java:352)
    at weblogic.time.server.ScheduledTrigger.destroy(ScheduledTrigger.java:112)
    at weblogic.time.server.ScheduledTrigger.cancel(ScheduledTrigger.java:100)
    at weblogic.jts.internal.CoordinatorImpl.cancelCurrentTimer(CoordinatorImpl.java:199)
    at weblogic.jts.internal.CoordinatorImpl.commit(CoordinatorImpl.java:404)
    at weblogic.jts.internal.TxContext.commit(TxContext.java:255)
    at weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.java:103
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:849)
    at com.xxx.yyy.as.TaskSessionEJBEOImpl.findTaskByFilter(TaskSessionEJBEOImpl.java:784)
    at
    com.xxx.yyy.as.TaskSessionEJBEOImpl_WLSkel.invoke(TaskSessionEJBEOImpl_WLSkel.java:101)
    at
    weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at
    weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    Erik Horstkotte wrote:
    "Rob Woollen" <[email protected]> wrote in message
    news:[email protected]...
    You generally need a lot of data to find the performance problem in
    a distributed system like this.Understood, but I was hoping that someone would recognize my description
    as the "signature" of the locking problem with the OCI driver that Sun
    describes.
    It's very easy to switch to the Thin driver so you might as well
    try it.I had hoped so, and in most cases, you're likely correct. Unfortunately,
    the OCI driver is a touch more permissive than the thin driver. Some
    errors (too many bind parameters) have crept in to our code that don't
    cause problems for the OCI driver, but cause exceptions to be thrown by
    the thin driver. In this particular case, I'm trying to solve a problem on
    a production system - fixing the code there isn't an option (we are
    switching to thin driver in our next release, so we are fixing these
    problems).
    If that doesn't help, I would suggest inserting some timing logic
    in your code. In particular, I'd want to know the time a request
    entered apache/tomcat, left apache/tomcat, entered WLS, left WLS
    (to go to the database), returned from the database, left WLS, got
    back to apache/tomcat, and finally left apache/tomcat to return the
    response. With information like that, you should be able to narrow
    down the problem a bit.In the next release, this is a good idea, and we'll probably do something
    much like this. Unfortunately I can't make changes to the code on the
    production site, so I have to rely on more passive methods of data
    collection for the moment.
    "Slava Imeshev" <[email protected]> wrote in message
    news:[email protected]...
    There can be other reasons for bad performance ranging from
    serialized access to singletons to inefficient queries to
    server mis-configuration. I have some doubts that oci driver
    would affect performance at low loads.I don't see any evidence of serialization blocking, except for the
    interesting locking issue that I mentioned in the original message (a
    PeerGoneListener table maintained somewhere down inside WLS).
    I'm certain that inefficient queries play a large role in our
    performance problems.
    Service mis-configuration could very well play a role here. Note for
    example the large number of blocked idle execute threads in the thread
    dump below. Clearly this instance has way too many execute threads. Not
    knowing the internal architecture of WebLogic Server, nor the
    implementation method Sun used for monitors in Solaris JVM 1.4.2, I don't
    know how much of an impact an excess of execute threads has on
    performance. Anyone?
    Could you post a questionable thread dump here?See the bottom of this message. The dump has been "blinded" to remove some
    customer-specific information.
    Also, what's the load in terms of number of concurrent users
    and requests per second?At peak load, there are about 60 users logged in, of whom only about 4-12
    actually do much. The number of requests per second is very peaky, and
    varies from about 1-10 per second. The complexity of requests also varies
    wildly.
    I've attached a thread dump from a point in time when the WebLogic Server
    instance was taking about 30% of the CPU.
    Any and all ideas are appreciated.
    -- Erik
    Full thread dump:
    "HighPriority TimeEventGenerator" daemon prio=9 tid=0x4223ed0 nid=0xa7 waiting on monitor [0xcceff000..0xcceffc68]
    at java.lang.Object.wait(Native Method)
    at weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    at weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.java:141)
    at java.lang.Thread.run(Thread.java:484)
    "ListenThread" prio=5 tid=0x423f7a0 nid=0xa6 runnable [0xccbff000..0xccbffc68]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421)
    at java.net.ServerSocket.implAccept(ServerSocket.java:243)
    at java.net.ServerSocket.accept(ServerSocket.java:222)
    at weblogic.socket.WeblogicServerSocket.accept(WeblogicServerSocket.java:26)
    at weblogic.t3.srvr.ListenThread.run(ListenThread.java:325)
    "NBExecuteThread-1" daemon prio=5 tid=0x331ea0 nid=0xa2 waiting on monitor [0xccfff000..0xccfffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "NBExecuteThread-0" daemon prio=5 tid=0x3317b8 nid=0xa1 waiting on monitor [0xcd0ff000..0xcd0ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-149" daemon prio=5 tid=0x330228 nid=0xa0 runnable [0xcd1ff000..0xcd1ffc68]
    at weblogic.socket.PosixSocketMuxer.poll(Native Method)
    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:290)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-148" daemon prio=5 tid=0x32f740 nid=0x9f waiting on monitor [0xcd2ff000..0xcd2ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-147" daemon prio=5 tid=0x32ec58 nid=0x9e waiting for monitor entry [0xcd3ff000..0xcd3ffc68]
    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:289)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-146" daemon prio=5 tid=0x32e170 nid=0x9d waiting for monitor entry [0xcd4ff000..0xcd4ffc68]
    at weblogic.socket.PosixSocketMuxer.processSockets(PosixSocketMuxer.java:289)
    at weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-145" daemon prio=5 tid=0x32ce80 nid=0x9c waiting on monitor [0xcd5ff000..0xcd5ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-144" daemon prio=5 tid=0x32c398 nid=0x9b waiting for monitor entry [0xcd6ff000..0xcd6ffc68]
    at java.util.Vector.removeElement(Vector.java:595)
    at weblogic.rjvm.RJVMImpl.removePeerGoneListener(RJVMImpl.java:352)
    at weblogic.jts.internal.CoordinatorImpl.unregisterClientDeathNotification(CoordinatorImpl.java:101)
    at weblogic.jts.internal.CoordinatorImpl.commit(CoordinatorImpl.java:347)
    at weblogic.jts.internal.TxContext.commit(TxContext.java:255)
    at weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.java:103)
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:849)
    at com.xxx.yyy.as.ProfileSessionEJBEOImpl.getContactNumbers(ProfileSessionEJBEOImpl.java:5687)
    at com.xxx.yyy.as.ProfileSessionEJBEOImpl_WLSkel.invoke(ProfileSessionEJBEOImpl_WLSkel.java:222)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-143" daemon prio=5 tid=0x32b8b0 nid=0x9a waiting on monitor [0xcd7ff000..0xcd7ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-142" daemon prio=5 tid=0x32adc8 nid=0x99 waiting on monitor [0xcd8ff000..0xcd8ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-141" daemon prio=5 tid=0x32a2e0 nid=0x98 waiting on monitor [0xcd9ff000..0xcd9ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-140" daemon prio=5 tid=0x3297f8 nid=0x97 waiting on monitor [0xcdaff000..0xcdaffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-139" daemon prio=5 tid=0x328d10 nid=0x96 waiting for monitor entry [0xcdbff000..0xcdbffc68]
    at java.util.Vector.addElement(Vector.java:573)
    at weblogic.rjvm.RJVMImpl.addPeerGoneListener(RJVMImpl.java:348)
    at weblogic.time.server.ScheduledTrigger.setExecCon(ScheduledTrigger.java:46)
    at weblogic.t3.srvr.T3ServerServices.getScheduledTrigger(T3ServerServices.java:177)
    at weblogic.jts.internal.CoordinatorImpl.resetTimer(CoordinatorImpl.java:210)
    at weblogic.jts.internal.CoordinatorImpl.<init>(CoordinatorImpl.java:83)
    at weblogic.jts.internal.CoordinatorFactoryImpl.createCoordinator(CoordinatorFactoryImpl.java:95)
    at weblogic.jts.internal.CoordinatorFactoryImpl_ServiceStub.createCoordinator(CoordinatorFactoryImpl_ServiceStub.java:69)
    at weblogic.jts.internal.TxContext.getCoordinator(TxContext.java:139)
    at weblogic.jts.internal.TxContext.begin(TxContext.java:93)
    at weblogic.jts.internal.CurrentImpl.begin(CurrentImpl.java:48)
    at weblogic.jts.internal.TransactionManagerImpl.begin(TransactionManagerImpl.java:56)
    at weblogic.ejb.internal.EJBHomeImpl.setupTransaction(EJBHomeImpl.java:838)
    at weblogic.ejb.internal.BaseEJBObject.setupTransaction(BaseEJBObject.java:281)
    at weblogic.ejb.internal.BaseEJBObject.preInvoke(BaseEJBObject.java:471)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl.getClientConfigurationSiteSpecific(SecuritySessionEJBEOImpl.java:143)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl_WLSkel.invoke(SecuritySessionEJBEOImpl_WLSkel.java:254)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-138" daemon prio=5 tid=0x328228 nid=0x95 waiting on monitor [0xcdcff000..0xcdcffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-137" daemon prio=5 tid=0x326d38 nid=0x94 waiting on monitor [0xcddff000..0xcddffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-136" daemon prio=5 tid=0x326250 nid=0x93 waiting on monitor [0xcdeff000..0xcdeffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-135" daemon prio=5 tid=0x325768 nid=0x92 waiting on monitor [0xcdfff000..0xcdfffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-134" daemon prio=5 tid=0x324c80 nid=0x91 waiting on monitor [0xce0ff000..0xce0ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-133" daemon prio=5 tid=0x324198 nid=0x90 waiting on monitor [0xce1ff000..0xce1ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-132" daemon prio=5 tid=0x3236b0 nid=0x8f waiting on monitor [0xce2ff000..0xce2ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-131" daemon prio=5 tid=0x322bc8 nid=0x8e waiting on monitor [0xce3ff000..0xce3ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-130" daemon prio=5 tid=0x3220e0 nid=0x8d waiting on monitor [0xce4ff000..0xce4ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-129" daemon prio=5 tid=0x3215f8 nid=0x8c waiting on monitor [0xce5ff000..0xce5ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-128" daemon prio=5 tid=0x320b10 nid=0x8b waiting on monitor [0xce6ff000..0xce6ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-127" daemon prio=5 tid=0x320028 nid=0x8a waiting on monitor [0xce7ff000..0xce7ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-126" daemon prio=5 tid=0x31f540 nid=0x89 waiting on monitor [0xce8ff000..0xce8ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-125" daemon prio=5 tid=0x31ea58 nid=0x88 waiting on monitor [0xce9ff000..0xce9ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-124" daemon prio=5 tid=0x31df70 nid=0x87 waiting on monitor [0xceaff000..0xceaffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-123" daemon prio=5 tid=0x31d488 nid=0x86 waiting on monitor [0xcebff000..0xcebffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-122" daemon prio=5 tid=0x31bb90 nid=0x85 waiting on monitor [0xcecff000..0xcecffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-121" daemon prio=5 tid=0x31b0a8 nid=0x84 waiting on monitor [0xcedff000..0xcedffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-120" daemon prio=5 tid=0x31a5c0 nid=0x83 waiting for monitor entry [0xceeff000..0xceeffc68]
    at java.util.Vector.addElement(Vector.java:573)
    at weblogic.rjvm.RJVMImpl.addPeerGoneListener(RJVMImpl.java:348)
    at weblogic.jdbc20.rmi.internal.ConnectionImpl.<init>(ConnectionImpl.java:39)
    at weblogic.jdbc20.common.internal.RmiDataSource.getConnection(RmiDataSource.java:65)
    at weblogic.jdbc20.common.internal.RmiDataSource_ServiceStub.getConnection(RmiDataSource_ServiceStub.java:179)
    at com.xxx.yyy.asutil.DataAccessManager.getConnection(DataAccessManager.java:113)
    at com.xxx.yyy.as.MetricsSessionEJB.logEvent(MetricsSessionEJB.java:222)
    at com.xxx.yyy.as.MetricsSessionEJBEOImpl.logEvent(MetricsSessionEJBEOImpl.java:324)
    at com.xxx.yyy.as.MetricsSessionEJBEOImpl_WLSkel.invoke(MetricsSessionEJBEOImpl_WLSkel.java:242)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-119" daemon prio=5 tid=0x319ad8 nid=0x82 waiting on monitor [0xcefff000..0xcefffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-118" daemon prio=5 tid=0x318ff0 nid=0x81 runnable [0xcf0fe000..0xcf0ffc68]
    at weblogic.db.oci.OciCursor.execAndFetch(Native Method)
    at weblogic.db.oci.OciCursor.oci_execAndFetch(OciCursor.java:1890)
    at weblogic.jdbcbase.oci.Statement.executeQuery(Statement.java:905)
    at weblogic.jdbcbase.jts.Statement.executeQuery(Statement.java:58)
    at weblogic.jdbc20.rmi.internal.PreparedStatementImpl.executeQuery(PreparedStatementImpl.java:46)
    at weblogic.jdbc20.rmi.SerialPreparedStatement.executeQuery(SerialPreparedStatement.java:40)
    at com.xxx.yyy.as.SecuritySessionEJB.getClientConfiguration(SecuritySessionEJB.java:1669)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl.getClientConfiguration(SecuritySessionEJBEOImpl.java:985)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl_WLSkel.invoke(SecuritySessionEJBEOImpl_WLSkel.java:234)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.extensions.BasicRequestDispatcher.dispatch(BasicRequestDispatcher.java:82)
    at weblogic.rmi.internal.ServerRequest.sendOneWay(ServerRequest.java:73)
    at weblogic.rmi.internal.ServerRequest.sendReceive(ServerRequest.java:77)
    at com.xxx.yyy.as.SecuritySessionEJBEOImpl_WLStub.getClientConfiguration(SecuritySessionEJBEOImpl_WLStub.java:703)
    at com.xxx.yyy.as.QuestionnaireSessionEJB.getQuestionnaireBatches(QuestionnaireSessionEJB.java:3479)
    at com.xxx.yyy.as.QuestionnaireSessionEJBEOImpl.getQuestionnaireBatches(QuestionnaireSessionEJBEOImpl.java:631)
    at com.xxx.yyy.as.QuestionnaireSessionEJBEOImpl_WLSkel.invoke(QuestionnaireSessionEJBEOImpl_WLSkel.java:237)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-117" daemon prio=5 tid=0x317f00 nid=0x80 waiting on monitor [0xcf1ff000..0xcf1ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-116" daemon prio=5 tid=0x317418 nid=0x7f waiting on monitor [0xcf2ff000..0xcf2ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-115" daemon prio=5 tid=0x316930 nid=0x7e waiting on monitor [0xcf3ff000..0xcf3ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-114" daemon prio=5 tid=0x315e48 nid=0x7d waiting on monitor [0xcf4ff000..0xcf4ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-113" daemon prio=5 tid=0x314b58 nid=0x7c waiting on monitor [0xcf5ff000..0xcf5ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-112" daemon prio=5 tid=0x314070 nid=0x7b waiting on monitor [0xcf6ff000..0xcf6ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-111" daemon prio=5 tid=0x313588 nid=0x7a waiting on monitor [0xcf7ff000..0xcf7ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-110" daemon prio=5 tid=0x312aa0 nid=0x79 waiting on monitor [0xcf8ff000..0xcf8ffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-109" daemon prio=5 tid=0x311fb8 nid=0x78 runnable [0xcf9ff000..0xcf9ffc68]
    at java.util.Vector.removeElementAt(Vector.java:509)
    at java.util.Vector.removeElement(Vector.java:598)
    at weblogic.rjvm.RJVMImpl.removePeerGoneListener(RJVMImpl.java:352)
    at weblogic.time.server.ScheduledTrigger.destroy(ScheduledTrigger.java:112)
    at weblogic.time.server.ScheduledTrigger.cancel(ScheduledTrigger.java:100)
    at weblogic.jts.internal.CoordinatorImpl.cancelCurrentTimer(CoordinatorImpl.java:199)
    at weblogic.jts.internal.CoordinatorImpl.commit(CoordinatorImpl.java:404)
    at weblogic.jts.internal.TxContext.commit(TxContext.java:255)
    at weblogic.ejb.internal.StatelessEJBObject.postInvokeOurTx(StatelessEJBObject.java:103)
    at weblogic.ejb.internal.BaseEJBObject.postInvoke(BaseEJBObject.java:849)
    at com.xxx.yyy.as.TaskSessionEJBEOImpl.findTaskByFilter(TaskSessionEJBEOImpl.java:784)
    at com.xxx.yyy.as.TaskSessionEJBEOImpl_WLSkel.invoke(TaskSessionEJBEOImpl_WLSkel.java:101)
    at weblogic.rmi.extensions.BasicServerObjectAdapter.invoke(BasicServerObjectAdapter.java:347)
    at weblogic.rmi.extensions.BasicRequestHandler.handleRequest(BasicRequestHandler.java:96)
    at weblogic.rmi.internal.BasicExecuteRequest.execute(BasicExecuteRequest.java:15)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:129)
    "ExecuteThread-108" daemon prio=5 tid=0x3114d0 nid=0x77 waiting on monitor [0xcfaff000..0xcfaffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-107" daemon prio=5 tid=0x3109e8 nid=0x76 waiting on monitor [0xcfbff000..0xcfbffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-106" daemon prio=5 tid=0x30ff00 nid=0x75 waiting on monitor [0xcfcff000..0xcfcffc68]
    at java.lang.Object.wait(Native Method)
    at java.lang.Object.wait(Object.java:420)
    at weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:99)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:126)
    "ExecuteThread-105" daemon prio=5 tid=0x30f418 nid=0x74 waiting for monitor entry [0xcfdff000..0xcfdffc68]
    at java.util.Vector.removeElement(Vector.java:595)
    at weblogic.rjvm.RJVMImpl.removePeerGoneListener(RJVMImpl.java:352)
    at weblogic.jdbc20.rmi.internal.ConnectionImpl.close(ConnectionImpl.java:161)
    at weblogic.jdbc20.rmi.SerialConnection.close(SerialConnection.java:162)
    at com.xxx.yyy.asutil.Util

  • Who are the last users who altered data in a table

    Hi,
    i'm managing this release of database:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options
    my experiece is a little more than a normal user and plsql developer, but with the responsability to manage 6 databases in my and client's offices.
    since we are experiencing many problems of continuous data variations on my databases, i need to know what happens.
    as a first thing i am imagining i need to know who accesses to what tables, when, with what update etc etc.
    maybe it could be interesting lock some tables for some users during some hours of the working day.
    I'm sorry for my english, i hope u all will understand what i'm trying to explain, if anybody could help me with documentation and explainations i will be happy :)
    Thanks,
    Massimo

    You need to enable auditing. Use fine grained auditing.
    http://www.oracle-base.com/articles/10g/Auditing_10gR2.php
    Regards
    Asif Kabir

  • I have an icon on my phone that showed up the other day

    looks like a circle with a lock in the middle .. what is it for??

    This may be of interest:
    Locking Orientation
    (Note that I am a representative of the organization for the above link, which is not endorsed by Apple).

  • Charge Types

    Hi Gurus,
    Please tell me how to track different types of charges levied by bank?
    Please tell me the configuration path and what are the important fields required?

    Hi Gverma
    Normally bank charges
    Commission
    Interest
    Locker deposit
    Charges for service
    You need to track the charges as per the code used by the bank.  Normally in the bank has some codes for each charges.   If you are using Electronic bank statement, you need to make settings in GLOBAL settings for EBS in IMG.
    thanks
    Ashok
    Assign points for useful answer

  • I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that the program is "locked or in use by another user". I need this fixed immediately.

    I am unable to open my Photoshop program after installing the entire Creative Suite: Premium Production 6. All other programs work, but with Photoshop it says that it "Could not open a scratch file because the file is locked, you do not have necessary access permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock the file." Then I select "OK" and the next message comes up "Could not initialize Photoshop because the file is locked, you do not have the necessary permissions, or another program is using the file. Use the 'Properties' command in the Windows Explorer to unlock this file. I installed all of the programs on the same day from a CD. I need this fixed immediately.
    I am not interested in switching to Creative Cloud, so don't even suggest it. I spoke to Mashmi (or something to that effect) on the "Support" Chat and there was absolutely no support. Useless actually.
    Thanks in advance.

    Could not open a scratch file because the file is locked or you do not have the necessary access privileges. (…) | Mylen…
    Mylenium

  • I want to access/sync a spreadsheet stored in /my personal/ iCloud folder from a work-provide iPad locked to a /different/ iCloud account.  Possible? How?

    I'm a teacher, and I've built a fairly substantial, personalized gradebook/student data spreadsheet in Numbers 3.0 for iCloud on my personal ca. 2011 MBP.  Every evening when I'm home from school, I transcribe into it my daily handwritten notes on student progress, missing homeworks, test scores, etc.  It can be pretty laborious.  What I'd like to do, in the interest of efficiency, is load my gradebook/spreadsheet onto a school-provided iPad, and then use it to walk around the classroom and check off homework/attendance/whatnot on the fly.  The issue:  all of the iPads at school are all registered to district iCloud accounts, and locked down and inaccessible to teachers. I can't save to them, and I can't access them w/o reams of red tape and administration.  So what i want to know is: is there a way I can load the spreadsheet onto a school-provided iPad for on-the-go recording purposes, even if temporarily?
    To clarify: I do not have access to iCloud settings on the school's iPads, and I am issued a different iPad nearly every time I wish to use one.  The iPad user accounts do not "belong" to me – they are accounts shared with other teachers, etc., and I would prefer if my gradebook was not accessible to anybody who shared the equipment. I want to look at a Numbers 3.0 documents on a private iCloud account unassociated with school.  What to do?

    Thanks! I've turned iCloud and Photostream on and the new photos are coming through. I emailed my older photos to myself (there weren't that many) to then download to the iPad.
    For future reference, do you know how to import older images into Photostream?

  • ACR locking up i7 processor when using selective adjustments brush

    I hit a strange problem last night that I've not previoulsy encountered with ACR, which is normally fast and responsive on my PC.
    I'm running CS5 on an i7 860 with 8GB RAM and a Radeon 5850 graphics card on Windows 7 64-bit.
    I'd previoulsy made a pretty large mask using the adjustment brush with an 8.5MB raw file. I say large as it was intended to significantly darken the background of the photo; it covered perhaps as much as two thirds of the image (not something I'd normally need to do) and the adjustment was set to darken by around -2 stops of exposure. I'd set up the mask a couple of days ago, but went back in last night to tweak it as some of the edges were a bit too abrupt in the way they transitioned from the black background to the subject of the photo. When I first set it up, it didn't seem to cause any issues other than slower loading of the file (but I expected this as it will of course be having to make a lot of ajustments to the image preview due to my heavy adjustment brush use).
    Working on it last night, ACR slowed to an absolute crawl. Even zooming in could take say 30 seconds to move from 50% view to 100%. Likewise, panning around the image when zoomed in was exceptionally slow. I have that standard Windows gadget running on the desktop that gives an indication of memory and processor use, and I was astounded to see that it was running the processor at 100% (I could also hear the fan kicking in to overdrive)! In all my time using CS4 and CS5 on this PC, it's never got to that level before, including when carrying out activities such stitching around 40 images together in Photoshop, working with 3GB PSB files, etc. This was after all a single raw file. I perceviered and managed to complete the edit. When I closed the file down I went back to Bridge and tried to open another file, and again the PC locked up at 100% processor use. I noticed that Bridge was still trying to generate a preview for the troublesome image I'd completed, and when it finally managed to finish this things went back to normal speed - I could for example open multiple raw files into ACR without any issues.
    I wonder if anyone else has experienced this kind of issue? Perhaps the adjustment brush can really push a PC if used heavily? Maybe I need to tweak some settings somewhere? I was using the 64-bit ACR launched from PS rather than from Bridge, and the only other application running was Bridge (as I would normally work). I'd have thought an i7 with a decent amount of memory could handle a single raw file, even with extensive modifications being applied.
    Be very interested to hear what others think.
    M

    Many thanks for your reply.
    I have previoulsy spent quite some time looking at the various recommendations Adobe give for performance and I think I've got my PC set up pretty well in respect of this. Having said that, I haven't adjusted any of the Windows virtual memory settings, so I might take a look at that later on. However, I'm not convinved this is the root cause of the problem: my memory use wasn't at 100% (just the processor), and as it was just one raw file on an 8GB system, I can't see how it could max out in the way it did... But then I'm not a computer expert either...
    (Oh, you linked to the Mac performance page! Threw me for a minute there! )
    M

  • Bluescreens and Lock-ups with 2.15.0

    I downloaded the latest driver version, 2.5.0006 today in an effort to try and fix an issue that was intermittently causing the card to stop working (either Vista would tell me no sound device was detected, or there inexplicably would not be any sound what-so-ever).
    Since 'upgrading' to the latest version, I have experienced 2 BSoDs and 2 complete system lock-u
    ps.
    Frustratingly, even the BSoDs themselves are locking up while allocating memory for the crash dump, so I can't get any useful information about what is causing it. Since the only software I've installed in the past month or so - aside from Vista updates - is this sound card driver update, and I haven't seen a BSoD since August of last year, just before nVidia managed to fix an issue with their video card drivers, I am highly suspicious that the crashes are caused by these Creative drivers.
    I have contacted customer support about the issue, but while I am waiting to hear back from them, are any of you running across this issue at all My current plan is to wipe out all the drivers and software and install Daniel_k's latest distribution to try and fix this problem. Does anyone have any other suggestions
    Edit - System specs:
    PC Power & Cooling Silencer 750W
    Intel Core 2 Duo E6700 2.67 GHz
    EVGA nForce4 680i mobo
    4 GB RAM
    BFG nVidia 8800 GTX (x2 in SLi)
    Sound Blaster X-Fi Elite Pro
    Windows Vista Ultimate 64-bit
    While I was updating the post with my system specs, the computer BSoD'd again.
    Edit #2
    And in case you were wondering, no, the driver update did not fix the original issue.
    Message Edited by Emura on 04-2-2008 2:00 AM

    Yeah, sounds like you're getting the same problem as me. I've been having random lockups upon reboot as well as lockups and bluescreens while using the device; listening to music, watching YouTube videos, and playing games.
    Interesting to note that we don't have the same chipset, amount of RAM, video card configuration, processor, or Vista installation.
    It's been about 24 hours since I e-mailed tech support about the issue. They say their average response time is 24 hours, so I'm hoping to see something tomorrow.
    As for overclocking, I haven't overclocked this PC so I don't think that's the issue. I appreciate all the feedback and suggestions that have been given so far!
    Update: I recieved an e-mail from tech support today, and it was exactly the canned auto-response I was expecting. I'll copy and paste parts of it here:
    CLI Support wrote:
    1. If there is an onboard audio on your PC's motherboard, it is
    recommended that you disable onboard audio to prevent any conflicts it
    may cause with the Sound Blaster device.
    CLI Support wrote:
    2. Please follow the steps to uninstall and reinstall the sound card on
    your system by following the instructions in the following knowledge
    base article.
    Title: Uninstalling Sound Blaster Drivers and Applications
    URL: http://us.creative.com/support/kb/ar...asp l=3&sid=72
    CLI Support wrote:
    The only method for obtaining a refund or exchange is through the vendor
    (original place of purchase). We can only accept a returned unit if the
    product is possibly defecti've, in which case an RMA (Return Merchandise
    Authorization) would be issued. The Creative Labs RMA department's
    responsibility is to test and repair/replace defecti've products once our
    technical support agents have determined the product to be defecti've via
    troubleshooting steps.
    CLI Support wrote:
    In the meantime please take the time to browse our latest offerings from
    Creative:
    Stunning design and superior audio reproduction. The Creative HQ-900
    Headphones embody all these and more while deli'vering clear and detailed
    playback for all genres of music. Coupled with its reversible earcups,
    the HQ-900 headphones is great for critical music monitoring and is the
    choice headphones for club DJs and home studio mixers.
    More info about the product in this link:
    http://us.creative.com/products/prod...8&product=7009
    At this point, I'm pretty tired of dealing with this card. The store I bought it from won't take it back for an exchange or refund, and I doubt CL will RMA it, since the 'product' seems to work fine (though IMHO, defecti've drivers = defecti've product). Even if I could get an RMA through CL, they'd only end up sending me another card, which wouldn't fix the driver issues at all.
    I'm going to look around and see if I can find someone interested in buying it, then put that money towards a new card from M-Audio. In the meantime, however, I'll play CLI Support's game and try uninstalling and reinstalling the drivers again. Let's see where that goes.
    Message Edited by Emura on 04-3-2008 0:24 PM

  • MBP locks, thus force shutdown w/ Power button, then catastrophic app probs

    I have had two unexpected system lock ups which may be releated to low battery power, but have then caused catastrophic application problems. I do not want answers to the individual application problems here, I will refer to other Apple Support pages and forums for those. I'm interested in other users experience of the same catastrophic failures, if at all.
    Event 1. (OSX 10.4.8)
    I was using the MPB on battery and I knew the power was running low, afraid I can't remember how low but I'm sure it was below 10%. Without warning iPhoto crashed with an exception popup which said that it was related to low power - I didn't note the exact wording. The machine remained on, but I couldn't do anything with it, so I had to shut it down by holding down the power button.
    When I next used it, it seemed much of the applications I had had running at the time had all got corrupted;
    - iPhoto: my library was gone next time I opened it. All the photo files are still there but some complain they are corrupted when trying to view them. I'd been using iPhoto at the time and rotating a lot of photos. Photos loaded and rotated in that session seemed to have survivied, ones unrotated complain of corruption when I try to view them. Other threads have suggested I need to do a complete rebuild.
    - Dashboard: my whole set up has gone and it has reverted to a vanilla original set up.
    - Trackpad: my settings had all disappeared and I had to set it up from scratch again.
    - Skype: It no longer remembered my login details. This I found interesting as it is not an Apple app.
    Event 2. (After 10.4.9 upgrade)
    The second time I had left the MBP plugged in and in sleep mode, so it should have been well charged. A friend unplugged it to use the socket. When I went to use it it was still asleep. It was asleep and unplugged no more than 24 hours but my experience is it can live like this for days, so it should not have drained all power.
    I could wake it but I have a password set and the system would not register the key presses I made for the pwd in the pwd box. ie. no *'s appeared each time I typed. The MBP was working because as I tried to wake it by doing various key presses I obviously did something which made it play a track from my iTunes library which had been running when I last put it to sleep.
    Eventually again I had to shut it down using the power button. This time when I started it up I had the following;
    - iTunes: It said my library was corrupted and it had to rename it and set it aside and create a new one, all my Music is there but it looks like I will have to rebuild.
    - Mail: When I started Mail this time it requested I set up a mail account as if it was the first time I had used it. It looks like most of my mail files still exist in my Library/Mail folder but I somehow need to recover the mail account.
    - Messenger: my icon I used doesn't work and it has defaulted to the icon associated with my MBP account I log in with. I understand this could be because the image I used for my icon came from my iPhoto library and it doesn't take a copy.
    I am half way through recalibrating my battery as suggested elsewhere in these forums. After this I will reset the PMU/SMC. However after days of trawling the forums I have yet to find anyone describes problems like these, so I have reluctantly decided to start a new thread to see if anyone has had similar experiences.
    My MBP is 5 months old, bought at the London Apple Store in Nov 2006.
    MacBook Pro 17" 2.33 GHz Intel Core 2 Duo   Mac OS X (10.4.9)   Memory 2 GB 667 Mhz DDR2 SDRAM
    Intel MacBook Pro 17"   Mac OS X (10.4.9)  

    I came to a similar conclusion after trying Disk Utility.  It said the disk needs to be reformatted.  Unfortunately, I've not been doing TimeMachine backups for 2-3 months due to problems I had with it.  one of those "I'll take care of that sometime soon" things where soon doesn't get here.
    Right now I'm getting ready to hook up the backup drive and see what I can rescue.
    Chuck

  • N96 V 30.0.33 Unstable,frequent restarts, lock ups...

    Hi all.
    Upgraded my firmware using FOTA the day the V30 firmware was released.
    Ever since though I have had major issues with my N96. The previous version 20 and version 12 were stable enough and I had minimal issues with them. I have not installed any new apps or software between version 20 and version 30.
    Constant random reboots, even when not actually doing anything with the phone. Its just sat on the desk in standby and ... boom restart. Happening at least 4 - 5 times per day. Maybe more.
    Phone locking up when navigating menus or attempting to switch between open apps. Resulting in battery off and back in to restart.
    SMS received, phone locked up. Battery off reboot. All sms in inbox deleted!
    Messaging app locking up on a regular basis, regardless of memory selected.
    Battery life appears to have deteriorated. Having to charge morning and night to ensure phone not dead overnight. Once a day on version 20 firmware.
    Would be interesting to know if anybody else is having any or similar issues or knows of a fix etc.
    Looking at reverting to previous version 20 firmware. If anybody knows how to do this using Vista, then please let me know. I understand its only possible using XP ... Hope this is not the case.

    Hi everybody,
    I have right the same problem. V30.033 - frequent unexpected reset.
    I got installed the version 30.033 from a Nokia care center, and since then the phone restarts randomly  and frequently: when I use the phone, the GPS, the Media Player, or even in stand-by.
    I tried everything was suggested in this forum: factory setting, hard reset, deletion of configurations.
    I have no external memory card installed.
    Nothing works; the phone keeps restarting randomly.
    I purchased this phone in October 08 from an operator, and it came with version 10.x. Very poor performance, but the N96 was very stable.
    I tried the software update and the update over the air, but no update was possible. I could therefore not experience the version 12 and 20.
    To get the phone updated I had to contact the Nokia care center.
    Now after firmware update, because any attempt to recover from frequent resets fails, I suspect the reason might be a conflict with some parameters stored somewhere in the phone, and belonging to the operator who sold the phone.
    My operator suggests sending him back the phone so that they can reprogram it.
    I am reluctant in doing this because they are still on 10.x firmware version.
    Maybe Nokia software people might want to check if the V30.033 has something new on it, which might conflict with programming specific to an operator.

  • CDAQ lock-up on Windows 7 when app idle.

    I scarse few details to help fix an issue I witnessed while on-site yesterday.
    A LV app running under Win 7 using a cDAQ chassis will lock-up LV if the app is left idle for a couple of hours.
    WHile Idle it just grabs samples from the AI chnnels and displays same.
    Attempts to open the FP of the sub-VI grabbing the samples locks-up so I was not able to check if there where hardware errors. memory was pegged out at the time.
    While monitoring the app for over an hour I saw no memory leaks and did not have time to wait for three hours or more so my facts are limitied.
    For the sake of this post I am only interested in finding out if others have seen cDAQ locking up when the app is idle.
    I did check the power save options and disabled the power saving feature for the USB but the isue did happena again after siting idle over-night.
    SO...
    Has anyone seen lock-ups of cDAQ ?
    Ben
    PS I added some logging to catch low-level errors when it happens again.
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

    tst wrote:
    Not locking up, but I have seen a cDAQ constantly throwing errors after plugging in (or, more likely, unplugging) a USB flash drive (Win XP in that case) and it only stopped after the cDAQ was turned off and back on. It seems to me that there are things happening in the USB stack/driver which the cDAQ doesn't always like.
    One thing you could try is looking the event log for Windows or search to see if there's a utility which would let you log USB events in the system. Assuming that's really the source of the issue (and it wouldn't shock me - your app might be stuck in the middle of a VISA call), then that might help to pinpoint it.
    Your sense that it is USB related was confirmed by the log file.
    I still have to follow-up with the customer to see if the issue is still re-occuring but the logged error indicated the buffer on the CDAQ backplne was over-flowing... NI Support found a KB article that explains that when doing highspeed I/O, and Windows going in to out of screen saver will stall the USB I/O long enough for the buffer to over-flow.
    Customer was going to work with NI Support to fiddle with Windows and shut-down all of the power-saving etc options that could get in the way.
    I THINK the error code was "-200361".
    Take care,
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • System Lock-up. Is 9600pro the cause?

    I have just purchase a bunch of new equipment including an MSI 865PE Neo2  (MS-6728) motherboard.  There are a few games causing my system to lock-up and I am pretty sure My ATi 9600pro (ATi Brand) is the culprit.  The most interesting is Command and Conquer Generals: Zero Hour.  Even at all of the lowest settings and my card set to highest performance mode the system freeze requiring a hard reset.  Homeworld 2 is also locking up whenever I try to have better than marginal graphics settings.
    I know that the card is the problem (or at least the root cause of it) because I borrowed a 9800pro from my roommate and both games ran like a dream (this also casts doubts on it being a problem with my PSU considering the 9800pro requires a lot more juice).  It appears that the only way I can run generals without crashing is by lowering my AGP to 4x.  I tried dropping the aperture to 64MB but to no avail.  
    I have updated my BIOS to the latest (1.5 I believe), I am running Catalyst 3.7 (the latest), latest windows updates, and have the latest drivers for my Intel chipset.  I am at a total loss of what to do and I would really appreciate some help here.
    System Setup
    MSI Neo2-FIS2R 865PE P4 Skt478(MS-6728) motherboard
    Intel Pentium 4 2.8GHz w/ 800MHz FSB and HT enabled
    ATi Radeon 9600pro 128MB (ATi brand)
    1 GB TwinX1024 Corsair XMS3200 Ultra Low Latency Dual Channel Memory
    2x Western Digital Caviar Special Edition WD800JB 80GB ATA/100 7200RPM w/8MB buffer (NOT IN RAID)
    On-board Audio
    300W PSU
    System Settings
    FSB: 202MHz
    Vcore: 1.5250 V
    Memory Voltage 2.50 V
    AGP Voltage 1.5V
    CPU Speed: 2828-2829 MHz

    If the freezes and hangs only comes when you are gaming, There are only 3 possibilities:
    1. IRQs Conflicts,
    2. PSU weak(Mostly),
    3. VGA Drivers.
    Try checking the above possibilities and see if you manage to get rid of the problem. To my observation of your config of the system, I would dare to say, PSU is the culprit.
    All the Best... :D!!!

Maybe you are looking for

  • Change location bar suggestions so it shows bookmarks first instead of most opened

    Hello, I would love to change the locations bar settings so it shows matched bookmarks first instead of history based hits. For example I want to quick access the web site "xxxx". I start typing in "xx" and the first suggestion is for the main site -

  • Display the full file path in title bar

    I apologize for my username. After getting a ton of "username already exists" I went to the keyboard crushing technique to find one that didn't. We currently use Adobe Acrobat 9.5.4 I am assisting a user who would like the full file path of the opene

  • AP Telnet & http problem

    i have cisco AP 1131AG-E-K9. i am getting a problem in it, that i cant telnet the device from my pc and when i try to open in http its also not responding. axcept that i can update the ios of device and can give the ip to interfaces and also configur

  • Finalizing imovie error

    I cannot finalize/share/export my imovie project.  It is basically a slideshow.  all stills and no video.  It is 6min long.  I have maybe 7 other finalized projects in imovie.  all are under 10 min.  I borrowed some photos from from family facebooks.

  • Multi window applications

    Hi, I am messing around with swing and designing an app that will consist of multiple panels. I am not sure how I should go about this. What I intend to do is have various panels in my app and as the user creates different events I want a panel that