Net inventory on hand after some transports.

Hi!
Suppose I have a sales order such as S0001 that has an item - number 10 - for product MAT1 for 10 items. All of them are produced and placed in warehouse but some of them are delivered , say 3 of them in 2 batches ie. 1 in the first transport , 2 in the second transport.
Now the question : Is there a single function or a table record that show the quantity on hand in warehouse for the given  sales order that is net from the transports?
Sincerely.
Erk.

Hi
From SD Point of view
the different between the Order Qty and the Delivery Qty will give the net qty yet to be delivered i.e
( VBAP-KWMENG  -  LIPS-LFIMG  ) will give the qty yet to be delivered.
From MM point of view, have to check the qty's from MARD,MSEG tables
and you can see the Std reports of Stock like MB52, MB53,MMBE, MD04 and MB5B etc.
Reward points if useful
Regards
Anji

Similar Messages

  • After some advice, I am new to Apple and looking to purchase either the MacBook Air 13inch with 256GB and 8GB mem or the MacBook Pro 13inch with retina 256Gb and 8GB mem. I am an assistant principal in a primary school and also studying my masters

    After some advice, I am new to Apple and looking to purchase either the MacBook Air 13inch with 256GB and 8GB mem or the MacBook Pro 13inch with retina 256Gb and 8GB mem. I am an assistant principal in a primary school and also studying my masters at university. I don't play computer games and I don't watch movies. I do store photos and videos of my kids and music on iTunes. I also like browsing the net with numerous windows open, check email etc. I am really wanting long battery life as I do a lot of my work on the couch - not close to a PowerPoint. Would the air do the trick or will it soon be outdated as Apple move towards retina display? Both air and pro seem very thin  - almost the same? And not much difference in weight either so both very portable which is also a necessary requirement. Just can't help dreaming about that 12 hour claimed battery life. Any helpful advice/opinions, very much appreciated. Thanks

    It's not likely that you'll get 12 hours in reql life. Those benchmarks are set under very strict controlled conditions. Kind of like mileage per gallon claims on cars. If 16GB of ram is an option at all I'd highly recommend you get that. As far as storage 256GB isn't alot, consider storing some things on an external thunderbolt real

  • Cannot set status of Urgent Change after manual transport

    Hi all,
    We are usng CHARM in Solution Manager 7.1 for import to the SAP ECC (EHP6) systems.
    I cannot set the status of the Urgent Change document (ZMHF) to status "To be Tested" after the transports were manually released and manually imported to the ECC QA system.
    When I use action "Pass Urgent Change to Test", the system stopped with error "Not all task are yet released" and will not change the status .
    Based, on the Task List log, the system started the release process although no transports were released.
    Is there any way that I can update the status of the Urgent Change document to "To be Tested"?
    I tried program CRM_SOCM_SERVICE_REPORT but still did not change the status.
    Any suggestion?
    Thanks,
    Tess

    Hi Venu,
    have a look under System Administration - System Configuration -- Knowledge Management -- Configuration --Content Management -- User Interface -- Commands -- UI Command Groups -- StatemanagementGroup.
    See Java class: com.sapportals.wcm.rendering.uicommand.cm.UIStatemanagementGroupCommand. Take the class and decompile this and everything needed around to understand how this class works.
    Then you can choose to extend this CommandGroup to also have a command "Resubmit for Approval" or you can implement your own UI Command only for resubmitting (you will also have to activate your command (group) by settings within the configuration).
    On the other hand, if all this is completely new to you, I'm a bit sceptical if the task isn't a bit too big as a first task on KM implementation topics...?
    Hope it helps
    Detlev

  • RMI UnmarshalException Occurs after some time

    Hi,
    I have a client server application that talks via rmi. My client saves data to a server or gets data by passing in parameters that include string, boolean and a Hashtable. The data is saved and retrieved many times. However, after some time, the RMI can't even find the method. That is, the client calls a method and I get a unmarshalling exception from the client, basically stating that it can't find the method.
    Here is the method in my interface, the method in question is the override method, the getLast works fine all the time:
    public interface Admin extends Remote
         Hashtable getLast(Hashtable setLashtHash) throws RemoteException;
    //override method can query or set a new data in the form of a hashtable. It return a Hashtable or null
         Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException;
    Here's the implementation of override:
         synchronized public Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException
              try{
              if(setNew)
                   if(newOverride!=null)
                   System.out.println("Saving override hash, entries=" + newOverride.size());
                   overrideHash=newOverride;
              else if(getOverrideHash)
                   if(overrideHash!=null)
                   System.out.println("Getting override hash entries=" + overrideHash.size());
                   return overrideHash;
              else
                   if(getLast)
                        if(overrideHash==null)
                             System.out.println("override hash is null");
                             return null;
                        OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
                        if(os.last!=null)
                             System.out.println("Last price for ticker " + ticker + " is=" +os.last);
                             Float last=os.last;
                             return last;
                        return null;
                   else if(getPrevious)
                        if(overrideHash==null)
                             return null;
                        OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
                        if(os.previous!=null)
                             Float previous=os.previous;
                             return previous;
                        return null;
         }catch(Exception e)
              System.out.println("Unknown Exception caught in override function");
              e.printStackTrace();
              return null;
    Here is the exception, please help.
    java.rmi.ServerException: RemoteException occurred in server thread; nested exce
    ption is:
    java.rmi.UnmarshalException: invalid method hash
    java.rmi.UnmarshalException: invalid method hash
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknow
    n Source)
    at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
    at sun.rmi.server.UnicastRef.invoke(Unknown Source)
    at AdminImpl_Stub.override(Unknown Source)
    at StocksTable$12.run(stockstable.java:481)
    Please help,
    Thanks Steve

    By the way, this is how my server calls the client:
    Hashtable otable=(Hashtable)a1.override(false,new String(""),true,false,false,new Hashtable());

  • RMI: UnmarshalException, can't find method after some time.

    Hi,
    I have a client server application that talks via rmi. My client saves data to a server or gets data by passing in parameters that include string, boolean and a Hashtable. The data is saved and retrieved many times. However, after some time, the RMI can't even find the method. That is, the client calls a method and I get a unmarshalling exception from the client, basically stating that it can't find the method.
    Here is the method in my interface, the method in question is the override method, the getLast works fine all the time:
    public interface Admin extends Remote
    Hashtable getLast(Hashtable setLashtHash) throws RemoteException;
    //override method can query or set a new data in the form of a hashtable. It return a Hashtable or null
    Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException;
    Here's the implementation of override:
    synchronized public Object override(boolean setNew, String ticker, boolean getOverrideHash,boolean getLast, boolean getPrevious,Hashtable newOverride) throws RemoteException
    try{
    if(setNew)
    if(newOverride!=null)
    System.out.println("Saving override hash, entries=" + newOverride.size());
    overrideHash=newOverride;
    else if(getOverrideHash)
    if(overrideHash!=null)
    System.out.println("Getting override hash entries=" + overrideHash.size());
    return overrideHash;
    else
    if(getLast)
    if(overrideHash==null)
    System.out.println("override hash is null");
    return null;
    OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
    if(os.last!=null)
    System.out.println("Last price for ticker " + ticker + " is=" +os.last);
    Float last=os.last;
    return last;
    return null;
    else if(getPrevious)
    if(overrideHash==null)
    return null;
    OverrideStruct os=(OverrideStruct)overrideHash.get(ticker);
    if(os.previous!=null)
    Float previous=os.previous;
    return previous;
    return null;
    }catch(Exception e)
    System.out.println("Unknown Exception caught in override function");
    e.printStackTrace();
    return null;
    Here is the exception, please help. Does anyone know why the exception is "invalid method hash"? I don't understand why it's saying that, I am calling method override(....).
    java.rmi.ServerException: RemoteException occurred in server thread; nested exce
    ption is:
    java.rmi.UnmarshalException: invalid method hash
    java.rmi.UnmarshalException: invalid method hash
    at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(Unknow
    n Source)
    at sun.rmi.transport.StreamRemoteCall.executeCall(Unknown Source)
    at sun.rmi.server.UnicastRef.invoke(Unknown Source)
    at AdminImpl_Stub.override(Unknown Source)
    at StocksTable$12.run(stockstable.java:481)
    Please help,
    Thanks Steve

    By the way, this is how my server calls the client:
    Hashtable otable=(Hashtable)a1.override(false,new String(""),true,false,false,new Hashtable());

  • Display quite dark after some seconds and stays da...

    The display gets quite dark after some time (10 seconds?),
    eg. during internet surfing or email checking, even if the light sensor is in MAX position. Also removing the hand or the fingers away from the screen (light sensor coverage) the display stays too dark....until I close this app (with the function key), the display gets bright again, unfortunately the app (eg. internet) then is closed :-(

    But there I can't make any changes. If I do so, it changes the profile to "own settings" automatically. But I wannne keep the "normal" and "higher perfomance" settings.
    And by the way; I can't change the time, the display shades. Only if it does or not. "Lower monitor brightness automatically befor go to standby", and if I would disable it, I would change the profile as written above - and that's not what I want.
    MacBook Mac OS X (10.4.8)
    I just want to increase the time the display gets darker.

  • Printer loses wireless connection after some hours

    Hello to all!
    Printer is connected and I can see on the screen correct IP. Desktops with Win7 and Ubuntu are used. After switching on printer works properly, but several hours later its unreachable from both systems. Printer shows connection, I can see it in router web access tool, but it is unreachable. I have to switch off printer, reboot the router, then switch on printer - and it works. Not very comfort.
    Does anybody know how to fix this bug?
    This question was solved.
    View Solution.

    Hi @varspb,
    Welcome to the HP Forums!
    I noticed that your HP Deskjet Ink Advantage 6525 printer is losing wireless connection after some hours with Windows 7 and Ubuntu. I am happy to look into this connection issue for you!
    For Linux support, please take a look at this website, http://hplip.sourceforge.net/.
    Otherwise, please see the following guides:
    HP Single-Function and Multifunction Printers - 'Printer is offline' Message Displays on the Compute....
    HP Deskjet Ink Advantage 6520 e-All-in-One and HP Photosmart 6520 e-All-in-One Printer Series - Prin....
    Tips for preventing wireless connection issues
    The following tips can help prevent wireless connection issues:
    Move the printer and the computer or access point (router) closer together.
    Remove any metal objects between the printer and the computer or access point (router). Objects such as refrigerators or metal bookcases can interfere with wireless transmission.
    Move any device that emits radio signals farther away from the printer. Devices such as microwaves and cordless telephones can interfere with wireless transmission.
    Consult the router manufacturer for updates and configuration of your router.
    Make sure that your computer is not connected through a VPN. You cannot access your printer on your wireless network while connected to a VPN.
    Also, please take a look at this website, HP Wireless Printing Center - Troubleshooting Issues.
    Hope this helps, and have a good day!
    RnRMusicMan
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" to say “Thanks” for helping!

  • Replication DS6.2 - DS5.2 stops working after some time

    Hello!
    After weeks of unsuccessfully trying to solve a replication problem, I hope that someone of this forum can give me a hint.
    I have 2 masters DS5.2 and two masters DS6.2.
    Replication is working fine for some days. E.g. last time the replication was working until 29.11.
    But at some point the replication stops working and I get the following errors in the errors log:
    [28/Nov/2007:10:51:16 +0100] - WARNING<10288> - Repl. Transport - conn=-1 op=-1 msgId=-1 - Replay of an already seen operation csn 474d3d84000002bd0000, s
    equence number 1, ignoring it
    [28/Nov/2007:12:48:09 +0100] - WARNING<10288> - Repl. Transport - conn=-1 op=-1 msgId=-1 - Replay of an already seen operation csn 474d58e9000002bd0000, s
    equence number 1, ignoring it
    [28/Nov/2007:19:06:55 +0100] - INFO: 29398 entries in the directory database.
    [28/Nov/2007:19:06:55 +0100] - INFO: add:107, modify:0, modrdn:0, search:3651, delete:0, compare:0, bind:2763 since startup.
    [29/Nov/2007:13:18:38 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - csnplCommit: can't find csn 474eb18e00001a360000
    [29/Nov/2007:13:18:38 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - ruv_update_ruv: cannot commit csn 474eb18e00001a360000
    [29/Nov/2007:13:18:38 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - replica_update_ruv: unable to update RUV for replica dc=hvb,d
    c=de, csn = 474eb18e00001a360000
    [29/Nov/2007:13:18:38 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [dsmmucqsu05.sys.hypo
    vereinsbank.de:636]
    [29/Nov/2007:13:18:38 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [dsmmucqsu05.sys.hypo
    vereinsbank.de:636]
    [29/Nov/2007:13:34:05 +0100] - WARNING<20805> - Backend Database - conn=328186 op=1 msgId=2 - search is not indexed base='ou=people,dc=hvb,dc=de' filter='(
    objectClass=*)' scope='sub'
    [29/Nov/2007:13:58:10 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [dsmmucqsu05.sys.hypo
    vereinsbank.de:636]
    [29/Nov/2007:13:58:10 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [dsmmucqsu05.sys.hypo
    vereinsbank.de:636]
    [29/Nov/2007:15:45:46 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [dsmmucqsu05.sys.hypo
    vereinsbank.de:636]
    [29/Nov/2007:15:46:03 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - csnplCommit: can't find csn 474ed41b00001a9a0000
    [29/Nov/2007:15:46:03 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - ruv_update_ruv: cannot commit csn 474ed41b00001a9a0000
    [29/Nov/2007:15:46:03 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - replica_update_ruv: unable to update RUV for replica dc=hvb,d
    c=de, csn = 474ed41b00001a9a0000
    [29/Nov/2007:15:46:03 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [dsmmucqsu05.sys.hypo
    vereinsbank.de:636]
    Since the replication was not working I had to initialize the DS6 masters again:
    [29/Nov/2007:16:03:59 +0100] - import hvb: Index buffering enabled with bucket size 76
    [29/Nov/2007:16:03:59 +0100] - import hvb: Beginning import job...
    [29/Nov/2007:16:04:20 +0100] - import hvb: Processed 14166 entries -- average rate 674.3/sec, recent rate 674.2/sec, hit ratio 0%
    [29/Nov/2007:16:04:41 +0100] - import hvb: Processed 22598 entries -- average rate 525.5/sec, recent rate 525.5/sec, hit ratio 100%
    [29/Nov/2007:16:05:03 +0100] - import hvb: Processed 31591 entries -- average rate 493.6/sec, recent rate 405.4/sec, hit ratio 100%
    [29/Nov/2007:16:05:05 +0100] - import hvb: Workers finished; cleaning up...
    [29/Nov/2007:16:05:17 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - Replica (dc=hvb,dc=de) has been initialized by total protocol
    as full replica
    [29/Nov/2007:16:06:56 +0100] - WARNING<20805> - Backend Database - conn=334334 op=1 msgId=2 - search is not indexed base='ou=people,dc=hvb,dc=de' filter='(
    objectClass=*)' scope='sub'
    [29/Nov/2007:16:07:42 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - csnplCommit: can't find csn 474ed92e00001a360000
    [29/Nov/2007:16:07:42 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - ruv_update_ruv: cannot commit csn 474ed92e00001a360000
    [29/Nov/2007:16:07:42 +0100] - INFORMATION - NSMMReplicationPlugin - conn=-1 op=-1 msgId=-1 - replica_update_ruv: unable to update RUV for replica dc=hvb,d
    c=de, csn = 474ed92e00001a360000
    I tried to change a password. But the replication failed again and since than the replication is working again.
    [29/Nov/2007:16:07:42 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [dsmmucqsu05.sys.hypo
    vereinsbank.de:636]
    [29/Nov/2007:16:07:42 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [dsmmucqsu05.sys.hypo
    vereinsbank.de:636]
    But I'm sure that after some days there will be a problem again.
    Sometime there are also the errors:
    [29/Nov/2007:16:27:05 +0100] - ERROR<8264> - Replication - conn=-1 op=-1 msgId=-1 - Internal error Failed to position cursor in db at C
    SN 474ed8d5000002590000, DB error 5 - I/O error
    [29/Nov/2007:16:27:05 +0100] - WARNING<10258> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Changelog error A database error is encou
    ntered while servicing replication agreement "dsmmucqsu08.sys.hypovereinsbank.de:10636/dc=hvb,dc=de"
    [29/Nov/2007:16:27:05 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [d
    smmucqsu08.sys.hypovereinsbank.de:10636]
    [29/Nov/2007:16:27:05 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [d
    smmucqsu08.sys.hypovereinsbank.de:10636]
    [29/Nov/2007:16:27:06 +0100] - ERROR<8264> - Replication - conn=-1 op=-1 msgId=-1 - Internal error Failed to position cursor in db at C
    SN 474ed8d5000002590000, DB error 5 - I/O error
    [29/Nov/2007:16:27:06 +0100] - WARNING<10258> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Changelog error A database error is encou
    ntered while servicing replication agreement "dsmmucqsu08.sys.hypovereinsbank.de:10636/dc=hvb,dc=de"
    [29/Nov/2007:16:27:06 +0100] - ERROR<8221> - Incremental Protocol - conn=-1 op=-1 msgId=-1 - Failed and requires administrator action [d
    smmucqsu08.sys.hypovereinsbank.de:10636]
    I tried to reproduce the problem.
    At the moment everything works fine and I can do many changes.
    But I know that there is somewhere a problem and the replication will stop working again in the next days.
    Can you give any advise?
    Regards,
    Beate
    Edited by: 72716 on Nov 30, 2007 10:05 AM

    Here is an explanation of the failure:
    1. Prioritized replication was introduced with DS6.0;
    2. When a suffix at a DS6 instance is initialized from a DS5 instance, and then an operation is performed at the DS6 instance that uses prioritized replication, replication fails;
    3. By default, password policy uses prioritized replication to propagate auth-failure-lockout state updates (e.g., adding a pwdFailureTime attribute value on a failed bind attempt);
    A work-around:
    Disable DS6 supplying auth-failure lockout state using prioritized replication. In any password policy having auth-failure-lockout enabled, set
    pwdIsLockoutPrioritized:FALSE
    Note that DS6 enables prioritized lockout by default, in particular, it enables this feature when migrating a password policy received from a DS5 instance. Hence, for this workaround to be effective, the prioritized lockout feature must be disabled in any DS6 password policy that has auth-failure lockout enabled, which could include:
    1. The default password policy at any DS6 instance (cn=password policy,cn=config);
    2. Any password policy originating at a DS5 instance, including those in data imported into a DS6 instance, received via replication total update initialization, or added at the DS5 instance subsequent to the DS6 instance initialization;
    3. Any password policy added to a DS6 instance.
    Additionally, do not set any prioritized replication rules for other attributes.
    It is possible the bug can still be triggered in the case of a DS6-only topology that was initialized from DS5 data.
    Contact Sun support for the status of a fix for the bug. The CR is 6645742.

  • Server stalls after some redeployments

    Hi,
    I noticed that my development server (WL60sp2 on NT2k) stalls after some
    redeployments of my web application. Neither the console nor the web
    application work anymore, weblogic.Admin pings do not work too. Is there
    anything unusual about the thread dump??
    Thanks in advance!
    Daniel
    [java] "SSLListenThread" prio=5 tid=0xe5fec58 nid=0x500 runnable
    [0xf2cf000..0xf2cfdbc]
    [java] at java.net.PlainSocketImpl.socketAccept(Native Method)
    [java] at
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421)
    [java] at
    java.net.ServerSocket.implAccept(ServerSocket.java:243)
    [java] at java.net.ServerSocket.accept(ServerSocket.java:222)
    [java] at
    weblogic.security.SSL.SSLServerSocket.acceptNoHandshake(SSLServerSocket.
    java:126)
    [java] at
    weblogic.security.SSL.SSLServerSocket.accept(SSLServerSocket.java:117)
    [java] at
    weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    [java]
    [java] "ListenThread" prio=5 tid=0xe4f3ab0 nid=0x74 runnable
    [0xf28f000..0xf28fdbc]
    [java] at java.net.PlainSocketImpl.socketAccept(Native Method)
    [java] at
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421)
    [java] at
    java.net.ServerSocket.implAccept(ServerSocket.java:243)
    [java] at java.net.ServerSocket.accept(ServerSocket.java:222)
    [java] at
    weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    [java]
    [java] "Application Manager Thread" prio=5 tid=0xe550830 nid=0x7ec
    waiting on monitor [0xf24f000..0xf24fdbc]
    [java] at java.lang.Thread.sleep(Native Method)
    [java] at
    weblogic.management.mbeans.custom.ApplicationManager$ApplicationPoller.r
    un(ApplicationManager.java:644)
    [java]
    [java] "ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'"
    daemon prio=5 tid=0xe43be00 nid=0x66c waiting on monitor [0xf20f000..0
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '0' for queue: '__weblogic_admin_rmi_queue'"
    daemon prio=5 tid=0xe454ba8 nid=0x7b4 waiting on monitor [0xf1cf000..0
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "TimeEventGenerator" daemon prio=5 tid=0xe043698 nid=0x7e0
    waiting on monitor [0xecdf000..0xecdfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    [java] at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.
    java:138)
    [java] at java.lang.Thread.run(Thread.java:484)
    [java]
    [java] "TimeEventGenerator" daemon prio=5 tid=0xe043eb0 nid=0x4c4
    waiting on monitor [0xec9f000..0xec9fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    [java] at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEventGenerator.
    java:138)
    [java] at java.lang.Thread.run(Thread.java:484)
    [java]
    [java] "SpinnerRandomSource" daemon prio=5 tid=0xe041ee0 nid=0x678
    waiting on monitor [0xec5f000..0xec5fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.security.SpinnerThread.stopSpinning(SpinnerRandomBitsSource.jav
    a:92)
    [java] at
    weblogic.security.SpinnerThread.run(SpinnerRandomBitsSource.java:109)
    [java]
    [java] "ExecuteThread: '14' for queue: 'default'" daemon prio=5
    tid=0x813e00 nid=0x694 waiting on monitor [0xec1f000..0xec1fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '13' for queue: 'default'" daemon prio=5
    tid=0x80b228 nid=0x728 runnable [0xebdf000..0xebdfdbc]
    [java] at weblogic.socket.NTSocketMuxer.getNextSocket(Native
    Method)
    [java] at
    weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:501)
    [java] at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    [java] at
    weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    [java]
    [java] "ExecuteThread: '12' for queue: 'default'" daemon prio=5
    tid=0x80aad8 nid=0x81c runnable [0xeb9f000..0xeb9fdbc]
    [java] at weblogic.socket.NTSocketMuxer.getNextSocket(Native
    Method)
    [java] at
    weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:501)
    [java] at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderRequest.java:23)
    [java] at
    weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    [java]
    [java] "ExecuteThread: '11' for queue: 'default'" daemon prio=5
    tid=0x809f88 nid=0x684 waiting on monitor [0xeb5f000..0xeb5fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '10' for queue: 'default'" daemon prio=5
    tid=0x809438 nid=0x69c waiting on monitor [0xeb1f000..0xeb1fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '9' for queue: 'default'" daemon prio=5
    tid=0x808948 nid=0x5b0 waiting on monitor [0xeadf000..0xeadfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '8' for queue: 'default'" daemon prio=5
    tid=0x80ddc8 nid=0x5d0 waiting on monitor [0xea9f000..0xea9fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '7' for queue: 'default'" daemon prio=5
    tid=0x80d2d8 nid=0x720 waiting on monitor [0xea5f000..0xea5fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '6' for queue: 'default'" daemon prio=5
    tid=0xe042dd0 nid=0x27c waiting on monitor [0xea1f000..0xea1fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '5' for queue: 'default'" daemon prio=5
    tid=0x807e58 nid=0x65c waiting on monitor [0xe9df000..0xe9dfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '4' for queue: 'default'" daemon prio=5
    tid=0x807bf0 nid=0x6c8 waiting on monitor [0xe99f000..0xe99fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '3' for queue: 'default'" daemon prio=5
    tid=0xe418dc0 nid=0x7b8 waiting on monitor [0xe95f000..0xe95fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '2' for queue: 'default'" daemon prio=5
    tid=0x80bcd8 nid=0x55c waiting on monitor [0xe91f000..0xe91fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '1' for queue: 'default'" daemon prio=5
    tid=0x80bbb0 nid=0x6e0 waiting on monitor [0xe8df000..0xe8dfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '0' for queue: 'default'" daemon prio=5
    tid=0x80b688 nid=0x594 waiting on monitor [0xe89f000..0xe89fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "Thread-0" daemon prio=10 tid=0xe3e2ec0 nid=0x718 waiting on
    monitor [0xe85f000..0xe85fdbc]
    [java] at java.lang.Thread.sleep(Native Method)
    [java] at
    weblogic.transaction.internal.TransactionManagerImpl$1.run(TransactionMa
    nagerImpl.java:756)
    [java] at java.lang.Thread.run(Thread.java:484)
    [java]
    [java] "Signal Dispatcher" daemon prio=10 tid=0x23f9e8 nid=0x1c8
    waiting on monitor [0..0]
    [java]
    [java] "Finalizer" daemon prio=9 tid=0x23bc18 nid=0x654 waiting on
    monitor [0xe2bf000..0xe2bfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at
    java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:108)
    [java] at
    java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:123)
    [java] at
    java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:162)
    [java]
    [java] "Reference Handler" daemon prio=10 tid=0xe0006f0 nid=0x824
    waiting on monitor [0xe27f000..0xe27fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    java.lang.ref.Reference$ReferenceHandler.run(Reference.java:110)
    [java]
    [java] "main" prio=5 tid=0x235d48 nid=0x514 waiting on monitor
    [0x6f000..0x6fc34]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:501)
    [java] at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171)
    [java] at weblogic.Server.main(Server.java:35)
    [java]
    [java] "VM Thread" prio=5 tid=0x81a698 nid=0x798 runnable
    [java]
    [java] "VM Periodic Task Thread" prio=10 tid=0x23e748 nid=0x774
    waiting on monitor
    [java] "Suspend Checker Thread" prio=10 tid=0x23f060 nid=0x760
    runnable

    Raja,
    the funny thing is that I did not put it below the applications
    directory. Redeployment works fine most of the time, just had this
    stalls sometimes. I'll probably pass this to support.
    Thanks,
    Daniel
    -----Ursprüngliche Nachricht-----
    Von: Raja Mukherjee [mailto:[email protected]]
    Bereitgestellt: Mittwoch, 11. Juli 2001 22:13
    Bereitgestellt in: performance
    Unterhaltung: Server stalls after some redeployments
    Betreff: Re: Server stalls after some redeployments
    Daniel,
    It seems to be a bug with WL 6.0. Please open a case with support.
    Something I did notice...the undeploy / deploy feature of the
    Admin Console
    works well when the JAR/WAR/EAR is NOT in the application directory.
    For example, let's say that your application directory is if
    D:\bea\wlserver6.0\config\mydomain\applications and you put
    an application
    (JAR/WAR/EAR) in it funny things do happen when you use the
    console to try
    to deploy and undeploy it.
    However if you have the application in another directory
    (let's say d:\temp)
    and then use the console, everything works fine.
    Hope this helps...
    .raja
    "Daniel Hoppe" <[email protected]> wrote in message
    news:[email protected]...
    Hi,
    I noticed that my development server (WL60sp2 on NT2k) stalls after some
    redeployments of my web application. Neither the console nor the web
    application work anymore, weblogic.Admin pings do not work too. Is there
    anything unusual about the thread dump??
    Thanks in advance!
    Daniel
    [java] "SSLListenThread" prio=5 tid=0xe5fec58 nid=0x500 runnable
    [0xf2cf000..0xf2cfdbc]
    [java] at java.net.PlainSocketImpl.socketAccept(Native Method)
    [java] at
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421)
    [java] at
    java.net.ServerSocket.implAccept(ServerSocket.java:243)
    [java] at java.net.ServerSocket.accept(ServerSocket.java:222)
    [java] at
    weblogic.security.SSL.SSLServerSocket.acceptNoHandshake(SSLSer
    verSocket.
    java:126)
    [java] at
    weblogic.security.SSL.SSLServerSocket.accept(SSLServerSocket.java:117)
    [java] at
    weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    [java]
    [java] "ListenThread" prio=5 tid=0xe4f3ab0 nid=0x74 runnable
    [0xf28f000..0xf28fdbc]
    [java] at java.net.PlainSocketImpl.socketAccept(Native Method)
    [java] at
    java.net.PlainSocketImpl.accept(PlainSocketImpl.java:421)
    [java] at
    java.net.ServerSocket.implAccept(ServerSocket.java:243)
    [java] at java.net.ServerSocket.accept(ServerSocket.java:222)
    [java] at
    weblogic.t3.srvr.ListenThread.run(ListenThread.java:247)
    [java]
    [java] "Application Manager Thread" prio=5 tid=0xe550830 nid=0x7ec
    waiting on monitor [0xf24f000..0xf24fdbc]
    [java] at java.lang.Thread.sleep(Native Method)
    [java] at
    weblogic.management.mbeans.custom.ApplicationManager$Applicati
    onPoller.r
    un(ApplicationManager.java:644)
    [java]
    [java] "ExecuteThread: '1' for queue: '__weblogic_admin_rmi_queue'"
    daemon prio=5 tid=0xe43be00 nid=0x66c waiting on monitor [0xf20f000..0
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '0' for queue: '__weblogic_admin_rmi_queue'"
    daemon prio=5 tid=0xe454ba8 nid=0x7b4 waiting on monitor [0xf1cf000..0
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "TimeEventGenerator" daemon prio=5 tid=0xe043698 nid=0x7e0
    waiting on monitor [0xecdf000..0xecdfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    [java] at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEvent
    Generator.
    java:138)
    [java] at java.lang.Thread.run(Thread.java:484)
    [java]
    [java] "TimeEventGenerator" daemon prio=5 tid=0xe043eb0 nid=0x4c4
    waiting on monitor [0xec9f000..0xec9fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at
    weblogic.time.common.internal.TimeTable.snooze(TimeTable.java:279)
    [java] at
    weblogic.time.common.internal.TimeEventGenerator.run(TimeEvent
    Generator.
    java:138)
    [java] at java.lang.Thread.run(Thread.java:484)
    [java]
    [java] "SpinnerRandomSource" daemon prio=5 tid=0xe041ee0 nid=0x678
    waiting on monitor [0xec5f000..0xec5fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.security.SpinnerThread.stopSpinning(SpinnerRandomBits
    Source.jav
    a:92)
    [java] at
    weblogic.security.SpinnerThread.run(SpinnerRandomBitsSource.java:109)
    [java]
    [java] "ExecuteThread: '14' for queue: 'default'" daemon prio=5
    tid=0x813e00 nid=0x694 waiting on monitor [0xec1f000..0xec1fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '13' for queue: 'default'" daemon prio=5
    tid=0x80b228 nid=0x728 runnable [0xebdf000..0xebdfdbc]
    [java] at weblogic.socket.NTSocketMuxer.getNextSocket(Native
    Method)
    [java] at
    weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:501)
    [java] at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderReques
    t.java:23)
    [java] at
    weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    [java]
    [java] "ExecuteThread: '12' for queue: 'default'" daemon prio=5
    tid=0x80aad8 nid=0x81c runnable [0xeb9f000..0xeb9fdbc]
    [java] at weblogic.socket.NTSocketMuxer.getNextSocket(Native
    Method)
    [java] at
    weblogic.socket.NTSocketMuxer.processSockets(NTSocketMuxer.java:501)
    [java] at
    weblogic.socket.SocketReaderRequest.execute(SocketReaderReques
    t.java:23)
    [java] at
    weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    [java]
    [java] "ExecuteThread: '11' for queue: 'default'" daemon prio=5
    tid=0x809f88 nid=0x684 waiting on monitor [0xeb5f000..0xeb5fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '10' for queue: 'default'" daemon prio=5
    tid=0x809438 nid=0x69c waiting on monitor [0xeb1f000..0xeb1fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '9' for queue: 'default'" daemon prio=5
    tid=0x808948 nid=0x5b0 waiting on monitor [0xeadf000..0xeadfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '8' for queue: 'default'" daemon prio=5
    tid=0x80ddc8 nid=0x5d0 waiting on monitor [0xea9f000..0xea9fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '7' for queue: 'default'" daemon prio=5
    tid=0x80d2d8 nid=0x720 waiting on monitor [0xea5f000..0xea5fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '6' for queue: 'default'" daemon prio=5
    tid=0xe042dd0 nid=0x27c waiting on monitor [0xea1f000..0xea1fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '5' for queue: 'default'" daemon prio=5
    tid=0x807e58 nid=0x65c waiting on monitor [0xe9df000..0xe9dfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '4' for queue: 'default'" daemon prio=5
    tid=0x807bf0 nid=0x6c8 waiting on monitor [0xe99f000..0xe99fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '3' for queue: 'default'" daemon prio=5
    tid=0xe418dc0 nid=0x7b8 waiting on monitor [0xe95f000..0xe95fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '2' for queue: 'default'" daemon prio=5
    tid=0x80bcd8 nid=0x55c waiting on monitor [0xe91f000..0xe91fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '1' for queue: 'default'" daemon prio=5
    tid=0x80bbb0 nid=0x6e0 waiting on monitor [0xe8df000..0xe8dfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "ExecuteThread: '0' for queue: 'default'" daemon prio=5
    tid=0x80b688 nid=0x594 waiting on monitor [0xe89f000..0xe89fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    weblogic.kernel.ExecuteThread.waitForRequest(ExecuteThread.java:94)
    [java] at
    weblogic.kernel.ExecuteThread.run(ExecuteThread.java:118)
    [java]
    [java] "Thread-0" daemon prio=10 tid=0xe3e2ec0 nid=0x718 waiting on
    monitor [0xe85f000..0xe85fdbc]
    [java] at java.lang.Thread.sleep(Native Method)
    [java] at
    weblogic.transaction.internal.TransactionManagerImpl$1.run(Tra
    nsactionMa
    nagerImpl.java:756)
    [java] at java.lang.Thread.run(Thread.java:484)
    [java]
    [java] "Signal Dispatcher" daemon prio=10 tid=0x23f9e8 nid=0x1c8
    waiting on monitor [0..0]
    [java]
    [java] "Finalizer" daemon prio=9 tid=0x23bc18 nid=0x654 waiting on
    monitor [0xe2bf000..0xe2bfdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at
    java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:108)
    [java] at
    java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:123)
    [java] at
    java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:162)
    [java]
    [java] "Reference Handler" daemon prio=10 tid=0xe0006f0 nid=0x824
    waiting on monitor [0xe27f000..0xe27fdbc]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at
    java.lang.ref.Reference$ReferenceHandler.run(Reference.java:110)
    [java]
    [java] "main" prio=5 tid=0x235d48 nid=0x514 waiting on monitor
    [0x6f000..0x6fc34]
    [java] at java.lang.Object.wait(Native Method)
    [java] at java.lang.Object.wait(Object.java:420)
    [java] at weblogic.t3.srvr.T3Srvr.waitForDeath(T3Srvr.java:501)
    [java] at weblogic.t3.srvr.T3Srvr.run(T3Srvr.java:171)
    [java] at weblogic.Server.main(Server.java:35)
    [java]
    [java] "VM Thread" prio=5 tid=0x81a698 nid=0x798 runnable
    [java]
    [java] "VM Periodic Task Thread" prio=10 tid=0x23e748 nid=0x774
    waiting on monitor
    [java] "Suspend Checker Thread" prio=10 tid=0x23f060 nid=0x760
    runnable

  • Inventory on Hand Report - Using Union ALL - need two fields to be part of the group

    Hi all,
    I have created an Inventory "on Hand" Report that takes the Current Inventory from the Item Entry table and the Sales from Unposted Sales Line table and Transfers in and out from the Unposted Transfer Line table.  I have joined the tables
    using the UNION ALL function. 
    My problem is that the Transfer table has two locations whereas the other tables only have one.  I am grouping on Location code from the Item Entry table which is equivalent to BOTH Transfer from location and the Transfer to.    
    As an example, there are 15lbs of inventory for Product A in Location #1 with a transfer out of 15 lbs.  The Transfer out is going to Location #2
    I don't know how to write the query or set up the group so that it recognizes both the Transfer to and the Transfer From fields
    I want the report to look similar to the one below but I can only get it to show one of the locations.  Is there some way to use the Union function and have one field in the first table be or equivalent to two fields in another?
    Location   Code
    Item No.
    Lbs
    Sales Orders
    Transfer Out
    Transfer In
    Available   Inventory
    Location #1
    Product A
    15
    -15
    Location #1
    15
    -15
    Location #2
    Product A
    15
    15
    Location #2
    15
    15

    Hi Igor,
    You can get a custom sort order added to your IP column without the need for a second column.
    Consider that the sorting is done strictly left-to-right across a string in the column. The string can be any valid HTML content. So, you could wrap your string within, say, a SPAN tag and add an attribute to that tag that contains the sort order you need before the text that is displayed to the user. As long as the attribute is correctly structured (that is, all instances are of the same length, for example), then sorting will work correctly. For example:
    SELECT
    '<span title="' || PAD_IP_ADDRESS(IP) || '">' || IP || '</span>' Y
    FROM ...Now you need to ensure that the PAD_IP_ADDRESS() function returns the correct values. In IP addresses, you have anything from "0.0.0.0" to "255.255.255.255". To get them to sort "numerically", you need to pad one or two digit numbers to get three digit numbers for each value - so, "0.0.0.0" becomes "000.000.000.000". You could create a function to do this - something like:
    CREATE OR REPLACE FUNCTION PAD_IP_ADDRESS
      pIP IN VARCHAR2
    RETURN VARCHAR2
    IS
      vIP VARCHAR2(15);
      vTEMP APEX_APPLICATION_GLOBAL.VC_ARR2;
      vSEP VARCHAR2(1);
    BEGIN
      vSEP := '';
      vIP := '';
      vTEMP := APEX_UTIL.STRING_TO_TABLE(pIP,'.');
      FOR x IN 1..vTEMP.COUNT
      LOOP
        vIP := vIP || vSEP || TRIM(TO_CHAR(TO_NUMBER(vTEMP(x)),'000'));
        vSEP := '.';
      END LOOP;
      RETURN vIP;
    END;The output from this would look something like:
    &lt;span title="001.001.001.001"&gt;1.1.1.1&lt;/span&gt;
    &lt;span title="002.255.255.255"&gt;2.255.255.255&lt;/span&gt;
    &lt;span title="010.001.199.098"&gt;10.1.199.098&lt;/span&gt;Andy

  • EEWB enhancement screen null after CR transport.

    Hi guys,
    We did some EEWB enhancement to Opportunity and a new screen "Customer Fields" was generated and shown in GUI. But NOW, after we transported all CRs to QAS, the "Customer Fields" tab is null. No fields there. The fields exists in the structure and the screen is there too.
    Do you have an idea for this?
    Thanks a lot.

    This issue is fixed by activate the screen manually.

  • Io exception: Connection reset - after some time interval

    Hi,
    We are facing a problem in connection while implementing connection pooling using OracleDataSource .
    Application is running with out any issue if it is called continuously.
    If we call the application after some time interval, connection is being reset. We are able to get the connection instance but connection reset exception is thrown while calling callableStatement.execute().
    If application called after application restart it is working fine.This issue is happening only for the first few calls made after some time interval.(after 1 hr)
    After that call is proceeding without any issue.
    Environment Details
    Application is accessing 4 oracle databases and the versions are viz., 9.2.0.8,10.2.0.3,10.2.0.4 and 9.2.0.1.
    Driver : ojdbc14.jar
    App Server : tomcat
    jdk version: 1.5
    OracleDataSource is being used for connection pooling.
    propCache.setProperty("ConnectionWaitTimeout",10); // caching parms
    ods.setConnectionCachingEnabled(true);
    ods.setLoginTimeout(intLoginTimeout);
    propCache.setProperty("MinLimit","5");
    propCache.setProperty("MaxLimit", "20");
    propCache.setProperty("InitialLimit","5");
    propCache.setProperty("ValidateConnection", "true");
    propCache.setProperty("AbandonedConnectionTimeout", "10");
    The exception details are as follows
    java.sql.SQLException: Io exception: Connection reset
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:112)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:146)
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:255)
    at oracle.jdbc.driver.T4CCallableStatement.executeForRows(T4CCallableStatement.java:987)
    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1170)
    at oracle.jdbc.driver.OracleStatement.doScrollExecuteCommon(OracleStatement.java:4043)
    at oracle.jdbc.driver.OraclePreparedStatement.doScrollPstmtExecuteUpdate(OraclePreparedStatement.java:10826)
    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3337)
    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3445)
    at oracle.jdbc.driver.OracleCallableStatement.execute(OracleCallableStatement.java:4394)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:710)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:803)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:269)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:188)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:210)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:174)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:117)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:108)
    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:151)
    at org.apache.coyote.http11.Http11AprProcessor.process(Http11AprProcessor.java:834)
    at org.apache.coyote.http11.Http11AprProtocol$Http11ConnectionHandler.process(Http11AprProtocol.java:640)
    at org.apache.tomcat.util.net.AprEndpoint$Worker.run(AprEndpoint.java:1286)
    at java.lang.Thread.run(Unknown Source)
    Any suggestion to resolve this issue is greatly appreciated.
    Thanks.

    Hi,
    try to utilize OracleDataSource#setConnectionCacheProperties() with property InactivityTimeout equals to 1800 (30 minutes in seconds).

  • MVC 5 - After some idle time, users are prompted to enter windows credentials on [allowanonymous] controller

    I have set up a web application using windows authentication and have two views for allowanonymous access. In the two views I also have partial views and have function which gets a list of items by calling the enumerable function in the model class.
    Everything all seems fine when accessing the allowanonymous view pages but after some idle time I get prompted to enter username and password. It is consist across different environment DEV, UAT so I am very worried it will happen in Production environment.
    And it seems to go to the home page (http://localhost/home} after failing the credentials.
    See the following configuration I have. Please help.
    in web.config
      <location path="SomeControllerName">
        <system.web>
          <authorization>
            <allow users="*" />
          </authorization>
        </system.web>
      </location>
    In controller
    namespace namespace.Controllers
        [AllowAnonymous]
        public class SomeControllerNameController : Controller
    In IIS
    Anonymous Authentication setting
    Status : Enabled
    Anonymous User identity: IUSR
    Windows Authentication setting
    status:Enabled
    Extended Protection:Accept
    Enable Kernel mode authentication: ticked
    Provider:NTLM
    ASP.Impersnation :disable
    basic authentication :disabled
    Form authentication:disabled

    You put allowanonymous so everyone has the right. It will not be authenticated.
    Anyway you should post this in http://forums.asp.net.
    chanmm 
    chanmm

  • SystemD Values Get Reset to Default after some Time

    Hi,
    I'm using two machine as gateways and Keepalive HA load balancers, so I've enabled some kernel options, but after some time (the next day or so), these options have been reset to their default (disabled) values.
    Why does that happen, and how to stop that from happening?
    I have to reset the parameters each time. I could set up a script to run on a schedule, but I would like to prevent it from happening in the first place.
    These are the values which get reset to 0 (this time):
        net.ipv4.conf.all.accept_redirects
        net.ipv4.vs.conntrack
        net.ipv4.vs.expire_nodest_conn
        net.ipv4.vs.expire_quiescent_template
    Thank you.

    I didn't find anything in the journal, but I am curious about what I did find: every 1-3 seconds, there is an entry which is repeated: "sshd[<Number>]: Set /proc/self/oom_score_adj to 0". What does it mean? I've been scrolling for the last few days-worth of this message, and there is still more... I also have many attempts to log in via ssh from China, from multiple IP addresses, with various user names and many unsuccessful authentication attempts for root; maybe the entry is related to these attempts...
    Going back to the original discussion, I think I've seen someone mention a systemd service or something like that which resets kernel settings, or some other things, to their default values, in a post (here), but I didn't find it again. Is there such a service that does something like that?
    It is strange that since I started this thread, and since I reset the settings to 1, they have remained at 1. I notice that it happens irregularly.

  • How the files are decreasing from RBS storage after some time i delete docs from document library, where shld I check the settings for this?

    HI
    I created a web application and configured  rbs storage ,
    I uploaded documents (for ex: 18 number)
     after uploaded  documents ,  and observed the RBS storage folder, number of files are increasing (39 number) , its working fine
    and also  I run the querys to check the rows increasing or not , (when I upload new doc rows are increased its fine also)
    select count(*) from alldocs
    Select count(*) from AllDocstreams
    but when I delete some docs from document library ,
    1)the doc itself deleted from document library
    2)when I check the rbs storage  there is no number of files are decreased(its still 39 files ), its same as  before doc deleted from doc library
    after some time I found the number of files are decreasing from RBS storage folder in sql server,
    here I want to know the how the files are decreasing from RBS storage  after some time, where  shld I check the settings for this? and how I control on it
    here how I know the settings for cleaning up orphan BLBOS how  these deleted BLOB
    adil

    1. WHen you delete the file from Sharepoint, it is still present in Recycle bin. This is a default setting in sharepoint for 30 days. Once files are deleted fro Recycle bin, it can also be delete from RBS
    2. There is a RBS cleanup job which deletes files from RBS. for more info check 
    http://mehuljamod.blogspot.in/2012/09/remote-blob-storage-maintainer-rbs.html

Maybe you are looking for

  • FIOS Skipping recordings

    I recently upgraded to the new FIOS QUANTUM and everything was fine until the new fall TV season started. It's missing and/or skipping some of the new recording. The new DVR is 6 recording at a time the max I am using is 3 maybe 4 on some days. But j

  • Problems waking up and connecting to internet after MAC Software updates.

    My Intel Macbook laptop use to connected to the internet automatically when I turned it on the laptop or woke it up. Now after the last MAC software upgrade this week (which included iTune, iPhoto, MAC 10.4.9 and an Airport upgrade) my PC is having p

  • Media query issues in fluid grid layout (take a look at this code)

    how to make adjustments in specific device views without screwing everything up in other views. I know in the css designer when I click global it makes changes to all views which is great. But when I click one of the little icons at the button of the

  • How to detect that we are on the current page while we r reading epub3?

    Hi Everyone, Im newer of using epub3. I'm trying to product an audio epub3 and i set display option "open-to-spread = true", when i slide first page, an audio will be played auto but for ibooks, when we slide first page, the second page already load

  • J2EE - Engine Session

    Hi in one of our systems the J2ee-engine appends the JSessionId to every URL. In the other systems the session-handling is running properly cookie-based. Does anyone know where to configure this? TIA cb