Lock objet failure in enhacement

Hi
We have a problem with the concurrence in the legal number invoices. We realize that the lock object used works fine for the Quality environment test: different sessions; and different sessions and users.
The lock is not working on Productive environment; we could not reproduce the error, but believe that the problem is because the restrictions for the lock object.
CODE:
            CALL FUNCTION 'ENQUEUE_EZTV_SD_EXP'
              EXPORTING
                mode_ztv_sd_exp = 'E'
                mandt           = sy-mandt
                tipo_doc        = 'F'
                planta           = v_werks
                x_tipo_doc    = space
                x_planta       = space
                _scope        = 2
                _wait           = 3
              EXCEPTIONS
                foreign_lock    = 1
                system_failure  = 2
                OTHERS          = 3.
            IF sy-subrc <> 0.
  MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
            SELECT SINGLE
              FOR UPDATE
FROM ztv_sd_exp
              INTO st_ztv_sd_exp
              WHERE tipo_doc EQ 'F'
              AND   planta   EQ v_werks.
            CASE sy-subrc.
              WHEN 0.
                st_ztv_sd_exp-status = st_ztv_sd_exp-status + 1.
        UNPACK st_ztv_sd_exp-status TO st_ztv_sd_exp-status.
                MOVE: st_ztv_sd_exp-status TO st_vbrk-xblnr.
                MOVE:  st_ztv_sd_exp-status TO xvbrk-xblnr.
                MODIFY xvbrk INDEX 1 FROM st_vbrk.
                CASE sy-subrc.
                  WHEN 0.
                    MODIFY ztv_sd_exp FROM st_ztv_sd_exp.
                    CASE sy-subrc.
                      WHEN 0.
                      WHEN OTHERS.
          MESSAGE e398(00) WITH 'Imposible Actualizar Tabla'.
                    ENDCASE.
                    CALL FUNCTION 'DEQUEUE_EZTV_SD_EXP'
                      EXPORTING
                        mode_ztv_sd_exp = 'S'
                        mandt           = sy-mandt
                        tipo_doc        = 'F'
                        planta          = v_werks.
                  WHEN OTHERS.
      MESSAGE e398(00) WITH 'Imposible Actualizar Memoria'.
                ENDCASE.
              WHEN OTHERS.
           MESSAGE e398(00) WITH 'Imposible Bloquear Tabla'.
            ENDCASE.
          ENDIF.
Any help would be helpful
thanks

Actually I was refering to what was the error that you were seeing in production, but I'm assuming that what you're seeing is a combination of contention and the numbers getting out of sequence, so I'll give it a shot in answering.
A couple of general comments:
- You don't need to use both an enqueue object and a Select For Update.  A Select For Update does an actual explicit DB lock as opposed to an enqueue logic uses a logic lock via the application server and is a better approach.  I usually recommend the use of an enqueu object.
- Your check after the Enqueue object done checks sy-Subrc but unless a system message is raised that has a type that will cause the transaction to abort then it will continue on and attempt the update
- If you are just trying to keep an ongoing counter, I suggest using a Number Range Object.  The object can be created in transaction SNRO and then you use the function "Number_Get_Next" to get the next number in the series.  It is important though to ensure that you set up the Number Range Object according to it's purpose, for example if it is set with buffering turned on and a number higher then zero for the number of numbers to keep in memory then there is the possibility that you may end up with gaps in the assigned numbers.  If you do not set buffering turned on then there will be no gaps in the numbers assigned but only one concurent program can access at a time (the number range object is help until the transaction is commited).
With regards to what you are attempting to do, if you can not use a number range object then I would suggest staying with the enqueue object but removing the Select For Update.  The problem though that you will encounter and is most likely causing some issues is that you shouldn't be doing an explicit Dequeue prior to the transaction being commited becuase this will mean that another transaction can get the enqueue object prior to the first transaction being commited.  You need to hold onto the lock until the transaction is complete.
In the end, I would say that there are these issues with the logic in your program but my primary recomendation is that you implimnet number ranges instead of trying to reinvent the wheel on this one.
~Ian

Similar Messages

  • Locking assertion failure on libxcb-xlib

    Hi everyone.
    As i'm trying to setup my Ubuntu, i'm encountering some issues with sql developer.
    When i'm trying to launch the application, i'm having a grey ad empty screen with hinting me towards a java problem.
    I've installed Eclipse and have no problem runing it.
    Here is the logtrace i'm having after starting sql developer :
    Locking assertion failure. Backtrace:
    #0 /usr/lib/libxcb-xlib.so.0 [0xb078c7c7]
    #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_unlock+0x31) [0xb078c891]
    #2 /usr/lib/libX11.so.6(_XReply+0x254) [0xb07d1494]
    #3 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/xawt/libmawt.so [0xb08cbd3e]
    #4 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/xawt/libmawt.so [0xb08b5d47]
    #5 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/xawt/libmawt.so [0xb08b5ec3]
    #6 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/xawt/libmawt.so(Java_sun_awt_X11GraphicsEnvironment_initDisplay+0x26) [0xb08b6106]
    #7 [0xb2496c4b]
    #8 [0xb2490b3b]
    #9 [0xb2490b3b]
    #10 [0xb248e217]
    #11 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/client/libjvm.so [0xb78fad8c]
    #12 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/client/libjvm.so [0xb7a0efd8]
    #13 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/client/libjvm.so [0xb78fabbf]
    #14 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/client/libjvm.so(JVM_DoPrivileged+0x32d) [0xb795834d]
    #15 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/libjava.so(Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2+0x3d) [0xb74292cd]
    #16 [0xb24964eb]
    #17 [0xb2490a64]
    #18 [0xb248e217]
    #19 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/client/libjvm.so [0xb78fad8c]
    Locking assertion failure. Backtrace:
    #0 /usr/lib/libxcb-xlib.so.0 [0xb078c7c7]
    #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_lock+0x2e) [0xb078c96e]
    #2 /usr/lib/libX11.so.6 [0xb07d0619]
    #3 /usr/lib/libX11.so.6(XGetVisualInfo+0x26) [0xb07c6666]
    #4 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/xawt/libmawt.so [0xb08b5089]
    #5 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/xawt/libmawt.so [0xb08b52d3]
    #6 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/xawt/libmawt.so [0xb08b5f71]
    #7 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/xawt/libmawt.so(Java_sun_awt_X11GraphicsEnvironment_initDisplay+0x26) [0xb08b6106]
    #8 [0xb2496c4b]
    #9 [0xb2490b3b]
    #10 [0xb2490b3b]
    #11 [0xb248e217]
    #12 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/client/libjvm.so [0xb78fad8c]
    #13 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/client/libjvm.so [0xb7a0efd8]
    #14 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/client/libjvm.so [0xb78fabbf]
    #15 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/client/libjvm.so(JVM_DoPrivileged+0x32d) [0xb795834d]
    #16 /home/clmas/Apps/java/jdk1.5.0_11/jre/lib/i386/libjava.so(Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2+0x3d) [0xb74292cd]
    #17 [0xb24964eb]
    #18 [0xb2490a64]
    #19 [0xb248e217]
    THANKS FOR THE HELP !

    Believe it or not, but I'm actually unable to start Opera 9.25 at all. Latest version should in many cases work with Java though. See here: http://my.opera.com/Jada0007/blog/2008/ … t#comments
    I guess it might be some problem with KDEmod?
    EDIT: I got it working. Posted in Opera forums.
    Last edited by Ub1476 (2008-02-19 12:05:29)

  • Locking assertion failure

    I'm on Fedora 9.
    $ java -version
    java version "1.6.0"
    Java(TM) SE Runtime Environment (build 1.6.0-b105)
    Java HotSpot(TM) Client VM (build 1.6.0-b105, mixed mode)
    Every java project that I run that has Swing components in it always starts with some kind of "Locking assertion failure", but seems to run fine anyways. Is there some way to make that go away?
    $ java mySwing
    Locking assertion failure.  Backtrace:
    #0 /usr/lib/libxcb-xlib.so.0 [0xc33767]
    #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_unlock+0x31) [0xc33831]
    #2 /usr/lib/libX11.so.6(_XReply+0x244) [0xb54f64]
    #3 /usr/lib/jdk1.6.0/jre/lib/i386/xawt/libmawt.so [0xad61522e]
    #4 /usr/lib/jdk1.6.0/jre/lib/i386/xawt/libmawt.so [0xad5f3ed7]
    #5 /usr/lib/jdk1.6.0/jre/lib/i386/xawt/libmawt.so [0xad5f4188]
    #6 /usr/lib/jdk1.6.0/jre/lib/i386/xawt/libmawt.so(Java_sun_awt_X11GraphicsEnvironment_initDisplay+0x2f) [0xad5f448f]
    #7 [0xb5ff467e]
    #8 [0xb5fece9d]
    #9 [0xb5fece9d]
    #10 [0xb5fea207]
    #11 /usr/lib/jdk1.6.0/jre/lib/i386/client/libjvm.so [0x620967d]
    #12 /usr/lib/jdk1.6.0/jre/lib/i386/client/libjvm.so [0x63057d8]
    #13 /usr/lib/jdk1.6.0/jre/lib/i386/client/libjvm.so [0x6209510]
    #14 /usr/lib/jdk1.6.0/jre/lib/i386/client/libjvm.so(JVM_DoPrivileged+0x34b) [0x625f38b]
    #15 /usr/lib/jdk1.6.0/jre/lib/i386/libjava.so(Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2+0x3d) [0xb800596d]
    #16 [0xb5ff467e]
    #17 [0xb5fecd37]
    #18 [0xb5fea207]
    #19 /usr/lib/jdk1.6.0/jre/lib/i386/client/libjvm.so [0x620967d]
    Locking assertion failure.  Backtrace:
    #0 /usr/lib/libxcb-xlib.so.0 [0xc33767]
    #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_lock+0x2e) [0xc3390e]
    #2 /usr/lib/libX11.so.6 [0xb54109]
    #3 /usr/lib/libX11.so.6(XGetVisualInfo+0x26) [0xb4a1f6]
    #4 /usr/lib/jdk1.6.0/jre/lib/i386/xawt/libmawt.so [0xad5f3189]
    #5 /usr/lib/jdk1.6.0/jre/lib/i386/xawt/libmawt.so [0xad5f33d5]
    #6 /usr/lib/jdk1.6.0/jre/lib/i386/xawt/libmawt.so [0xad5f4239]
    #7 /usr/lib/jdk1.6.0/jre/lib/i386/xawt/libmawt.so(Java_sun_awt_X11GraphicsEnvironment_initDisplay+0x2f) [0xad5f448f]
    #8 [0xb5ff467e]
    #9 [0xb5fece9d]
    #10 [0xb5fece9d]
    #11 [0xb5fea207]
    #12 /usr/lib/jdk1.6.0/jre/lib/i386/client/libjvm.so [0x620967d]
    #13 /usr/lib/jdk1.6.0/jre/lib/i386/client/libjvm.so [0x63057d8]
    #14 /usr/lib/jdk1.6.0/jre/lib/i386/client/libjvm.so [0x6209510]
    #15 /usr/lib/jdk1.6.0/jre/lib/i386/client/libjvm.so(JVM_DoPrivileged+0x34b) [0x625f38b]
    #16 /usr/lib/jdk1.6.0/jre/lib/i386/libjava.so(Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2+0x3d) [0xb800596d]
    #17 [0xb5ff467e]
    #18 [0xb5fecd37]
    #19 [0xb5fea207]

    Actually yes, I had done a search before, but none of the ones that came up had a solution that worked for me.
    The proposed 'hack' solution is:
    sed -i 's/XINERAMA/FAKEEXTN/g' /opt/java/jre/lib/<something>/libmawt.so
    which doesn't help me because I don't have a /opt/java directory.
    $ which java
    /usr/bin/java
    but that's not a directory, and there's no jre directory in /usr/bin
    $ find / -name "libmawt.so"
    /home/cb2317/java/src/jdk1.6.0_10/jre/lib/i386/xawt/libmawt.so
    /home/cb2317/java/src/jdk1.6.0_10/jre/lib/i386/headless/libmawt.so
    /home/cb2317/java/src/jdk1.6.0_10/jre/lib/i386/motif21/libmawt.so
    $ sed -i 's/XINERAMA/FAKEEXTN/g' /home/cb2317/java/src/jdk1.6.0_10/jre/lib/i386/xawt/libmawt.so
    $ java -jar lateralgm.jar
    Locking assertion failure. Backtrace:
    #0 /usr/lib/libxcb-xlib.so.0 [0xc33767]
    #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_unlock+0x31) [0xc33831]
    #2 /usr/lib/libX11.so.6(_XReply+0x244) [0xb54f64]
    So the problem persists.
    Edited by: IsmAvatar on Aug 4, 2008 10:24 AM

  • Locked Write Failure

    I have a database application that locks various records (control file, indices, physical record, etc.), using NWLogPhysicalRecord with the Type parameter set to Shared or Exclusive, prior to updating records in the database. Normally, this works OK, but when performing a long series of adds or deletes, I occasionally get a write deadlock failure on a record which has been previously locked exclusively. Is this a known NetWare problem?

    Charlie,
    Can you tell us if you are using either DeskTop Mailer or Business Edition?  Or is this Professional Presort? 
    If this is DeskTop Mailer or Business Edition have you tried storing your files locally?  The heart and power of the Postalsoft solution is the Mailing Description File (.mdf). This file stores all the settings for the job being processed and has to access the software program continuously. It is strongly recommended to store the .mdf files on the local PC with the software.
    The .dbf and USPS directory files can be stored on a network/server, but it is not recommended to store the .mdf on the network/server and definitely not the software program itself.
    In conclusion, while it is possible to set up the .mdf (mailing description file), .dbf (database file), and .cdx (index file) on a network drive and successfully access them from multiple systems (with a multi-user license), this is not recommended or tested.
    Please let us know.
    Thanks,
    Melissa

  • 1 flash of scroll/caps lock - cpu failure? options? pavillion dv5

    I read that one blink of the scroll lock / caps lock indicates CPU failure. True? Options?
    I had taken out battery, unplugged and held down power key and it came back on, but after I shut the lid and tried to get back on later - just the blinks - now nothing will get it back on.

    Hi,
    This book shows you CPU's supported from day 1:
      h10032.www1.hp.com/ctg/Manual/c01597750.pdf
    Regards.
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • Material valuation data lock causing failure in PGI

    Greetings experts,
    I am running into an issue where a material valuation lock is causing deliveries to fail goods issue when PGI is triggered from the shipment. These shipments contain many deliveries and are sometimes processed in mass (VT12). This is causing issues since the operator is not immediately aware an error occurred as the shipment completes normally and all attached deliveries not containing the affected material are posted. The lock appears to be originating from MIRO during AP invoice creation.  Late exclusive block (OMJI) has been activated and set to 30 seconds however this has not eliminated the issue. This supports the MIRO theory since any other posting conflict (other PGIs) should have completed and released the lock within the 30 seconds.
    Has anyone ever run into this issue before or found a work around? Custom logic to create a lock record for every material on the delivery seems excessive but may be the only way to notify the users of VT02 and MIRO that the corresponding material valuation data is already locked.
    Thanks,
    Dom

    Hi Paresh,
    Are you the person - who worked with for in Heineken? How do you do? No update from you..
    We can not change the values in the material master because of that issue..
    I have checked for the OSS notes.. but the issue had reassigned to FI team - they had raised it to SAP.
    If we create new material, there won't be a problem at all..
    Paresh - really we are all missing you..
    waiting for your reply Paresh..
    Thanks,
    Venkatesh.S.P
    Edited by: venkatesh paulraj on Mar 17, 2009 1:00 PM
    Edited by: venkatesh paulraj on Mar 17, 2009 1:01 PM

  • Order locked

    Hi everyone,
    We have a problem when we work with two orders with the same WBS element. The scenario is the following:
    - We want to create a new order (repair process), so we call TX IW31. In "Addit Data" tab we complete the fields: "WBS element" and "Project Definition".
    - While we are editing that order, another user wants to modify any of the orders that are below that Project-WBS element, but it is imposible. The reason is that all of the orders that are pending bellow that Projetct-WBS element in the hierarchy (displayed in TX CJ20N) are locked, so they cannot be edited. Even its imposible to create another new order refearing the same Projet/WBS element.
    We'd like that two diferent users could be able to create two diferent orders refearing the same Projetct-WBS element at the same time.
    Thanks in advance for your help.

    I go to transaction Iw31 and start to create an order, refering to 6023187 network.
    At the same time, I go to transaction CJ20N and open the projet refered in the order. The networks displayed in the tree are shown in light gray instead of black. And I get the information message: "Not all objects were locked (see lock log)". So, I go to menu "Extras/Logs/Locked objets". It says:
    - Sales order 44474 for network 6023159 is being processed by ...<my user>
    - Sales order 44474 for network 6023182 is being processed by ... <my user>
    - Network 6023187 is already being processed by ... <my user>
    - Reservation 0001932582 is already being processed by ... <my user>
    - Sales order 44474 for network 6023187 is being processed by ... <my user>

  • What is the " BB lock conditions " ??

    I really want know " BB Lock condition ".
    This site configuration is bellow ...
    Mode : MP ( 6 Domain , each domain has 12 machine )
    Version : tuxedo 6.4 (patchlevel : 333 )
    OS : SUN Solaris 2.6
    DB : Oracle 8.1.6.3
    Before last patch, we met various type's lock ( BB lock, USEM lock ) .And now , after
    last patch ..>> Operation is diffcult very hard. Why ? I send command >> tmshutdown
    -w 5 -s APP_SERVERNAME ..then I saw ULOG.file below
    151341.csuo002!BBL.12967: LIBTUX_CAT:220: WARN: BB lock appears stuck: held by pid=16009
    151429.csuo002!WSH.17639: LIBTUX_CAT:586: ERROR: Unable to unregister process 17639
    - errno 22 tperrno 7
    151429.csuo002!WSH.17639: LIBTUX_CAT:271: ERROR: System lock semop failure, key =
    827818 (errno = 22)
    151429.csuo002!CBHB005.16664: LIBTUX_CAT:522: INFO: Default tpsvrdone() function
    used
    151429.csuo002!CJGC002.15654: LIBTUX_CAT:752: ERROR: semop system call failure for
    semaphore 196613, errno 36
    151429.csuo002!CZZB002.15450: LIBTUX_CAT:752: ERROR: semop system call failure for
    semaphore 196613, errno 36
    This site user is about 10,000 person.
    So, Online re-start is very critical on this site.
    Please give a help,,, I think patch set ( patchlevel :333) has
    some problem on operation. I don't know what happens in The Black Box Team.... thanks~

    http://store.apple.com/ca/product/TR413LL/A?fnode=MTY1NDA2OA&mco=ODAyODQwNg

  • Error message with Vista and 7.2: Windows-No Disk Exception Processing Mess

    I just got a new Dell computer with Windows Vista and I am trying to put iTunes on it. I can install it fine from the original CD, and then I am prompted to update it to 7.2. After updating, this is the message that I get: Windows-No Disk, Exception Processing Message 0xc0000013 Parameters 0x7620023C 0c847CDB4C 0x7620023C (Cancel Try Again Continue). If I click on any button countless times, iTunes does open up but then I get the blue screen dump message. I have installed and uninstalled it many different times and have tried any of the additional updates/patches with no effect. I did not see this message anywhere else in the forum, anyone able to help?

    Unexplained Crashes, lock-ups, Failure to boot and boot-looping in Vista and XP and MAC OS-X.
    Have a USB2 external hard drive hooked up to your system? A number of these devices are starting to show up as the cause of the problems listed above. The cause has been linked to drives that were manufactured a year or more ago. Note I said manufactured not purchased. The cause is poor USB 2.0 specifications that the drive case manufactures followed which has deteriorated with age causing the above failures. If this happens to you try disconnecting your external drive and see if your problem goes away. A couple of multifunction printers have also been the cause of similar problems but most of these have higher visibility on internet search engines than the external hard drives. 
    Sorry, no KB article link. The above is from my reseller, who deals in imaging workstations exclusively.
    Hunt

  • At the beginning of install EBS R12 on Ubuntu 8.04 amd64 (Linux Debian)

    Bonjour,
    Need help, please.
    At the beginning of install EBS R12 on Ubuntu 8.04 amd64 (Linux Debian)
    ATI graphic driver: "ati-driver-installer-8-4-x86.x86_64.run"
    All prerequisites are installed.
    appmgr@ubu:~$ /d01/Stage12/startCD/Disk1/rapidwiz/rapidwiz
    Terminal output:
    Rapid Install Wizard is validating your file system......
    4 dvd labels found
    Rapid Install Wizard will now launch the Java Interface.....
    appmgr@ubu:~$ Locking assertion failure. Backtrace:
    #0 /usr/lib32/libxcb-xlib.so.0 [0xf73cd767]
    #1 /usr/lib32/libxcb-xlib.so.0(xcb_xlib_unlock+0x31) [0xf73cd8b1]
    #2 /usr/lib32/libX11.so.6(_XReply+0xfd) [0xcddf31bd]
    #3 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/xawt/libmawt.so [0xce162a76]
    #4 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/xawt/libmawt.so [0xce14880a]
    #5 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/xawt/libmawt.so [0xce148a51]
    #6 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/xawt/libmawt.so(Java_sun_awt_X11GraphicsEnvironment_initDisplay+0x24) [0xce148c5c]
    #7 [0xf2437fa8]
    #8 [0xf2431aeb]
    #9 [0xf2431aeb]
    #10 [0xf242f1b4]
    #11 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/server/libjvm.so [0xf765734c]
    #12 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/server/libjvm.so [0xf77f7c08]
    #13 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/server/libjvm.so [0xf765717f]
    #14 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/server/libjvm.so(JVM_DoPrivileged+0x2dd) [0xf76a636d]
    #15 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/libjava.so(Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2+0x3d) [0xf73762cd]
    #16 [0xf2437838]
    #17 [0xf2431a14]
    #18 [0xf242f1b4]
    #19 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/server/libjvm.so [0xf765734c]
    Locking assertion failure. Backtrace:
    #0 /usr/lib32/libxcb-xlib.so.0 [0xf73cd767]
    #1 /usr/lib32/libxcb-xlib.so.0(xcb_xlib_lock+0x2e) [0xf73cd81e]
    #2 /usr/lib32/libX11.so.6 [0xcddf2518]
    #3 /usr/lib32/libX11.so.6(XGetVisualInfo+0x26) [0xcdde90a6]
    #4 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/xawt/libmawt.so [0xce1476df]
    #5 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/xawt/libmawt.so [0xce147970]
    #6 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/xawt/libmawt.so [0xce148b98]
    #7 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/xawt/libmawt.so(Java_sun_awt_X11GraphicsEnvironment_initDisplay+0x24) [0xce148c5c]
    #8 [0xf2437fa8]
    #9 [0xf2431aeb]
    #10 [0xf2431aeb]
    #11 [0xf242f1b4]
    #12 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/server/libjvm.so [0xf765734c]
    #13 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/server/libjvm.so [0xf77f7c08]
    #14 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/server/libjvm.so [0xf765717f]
    #15 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/server/libjvm.so(JVM_DoPrivileged+0x2dd) [0xf76a636d]
    #16 /d01/Stage12/startCD/Disk1/rapidwiz/jre/Linux_x64/1.5.0/lib/i386/libjava.so(Java_java_security_AccessController_doPrivileged__Ljava_security_PrivilegedAction_2+0x3d) [0xf73762cd]
    #17 [0xf2437838]
    #18 [0xf2431a14]
    #19 [0xf242f1b4]
    The window titled « Install Oracle Applications - Welcome » is displayed but empty;
    I Click [ X ] at the top right corner;
    The windows titled «  Oracle Applications Rapid Install Wizard Alert » is displayed, asking « Are you sure you want to exit ? » I say [ Yes ];
    On the Terminal, I press Ctrl C.
    I choose Ubuntu that is easy to use. I tried and abandoned Oracle EL5 and Solaris.

    Need help N°2, please.
    Install started well. I am facing another lot of errors, quoted as below: -----
    In the windows "System Check Details" - File Space check:
    -- database node space checks --
    RW-20013: Error: - Not enough free disk space on system:
    Database Transaction File Directory = /d01/oracle/VIS/db/apps_st/data
    required = 65064
    actual = 38180
    RW-20013: Error: - Not enough free disk space on system:
    Database Archive File Directory = /d01/oracle/VIS/db/apps_st/data
    required = 44798
    actual = 38180
    (all other Disk spaces were accepted.)
    Where I can correct the disk space allocation ? There are 67 GB free disk space on my pc, avalaible space before VIS install was 270 GB approximatively.
    ---------------------

  • Qiv not work after system update

    error message:
    zhiwen ~/ qiv /doc/img/1.jpg
    Gdk-ERROR **: BadMatch (invalid parameter attributes)
      serial 115 error_code 8 request_code 2 minor_code 0
    Locking assertion failure.  Backtrace:
    #0 /usr/lib/libxcb-xlib.so.0 [0xb7b02767]
    #1 /usr/lib/libxcb-xlib.so.0(xcb_xlib_lock+0x2e) [0xb7b0281e]
    #2 /usr/lib/libX11.so.6 [0xb7c9de08]
    #3 /usr/lib/libX11.so.6(XSync+0x25) [0xb7c92ce5]
    #4 /usr/lib/libgdk-1.2.so.0(gdk_flush+0x28) [0xb7da0fb8]
    #5 /usr/lib/libgdk-1.2.so.0(gdk_image_destroy+0x65) [0xb7da84c5]
    #6 /usr/lib/libgdk-1.2.so.0(gdk_image_exit+0x2a) [0xb7da85da]
    #7 /usr/lib/libgdk-1.2.so.0 [0xb7d942a5]
    #8 /lib/libc.so.6(exit+0xd5) [0xb7b344cd]
    #9 /usr/lib/libgdk-1.2.so.0 [0xb7d94386]
    #10 /usr/lib/libX11.so.6(_XError+0xd3) [0xb7c97053]
    #11 /usr/lib/libX11.so.6 [0xb7c9e72c]
    #12 /usr/lib/libX11.so.6(_XReply+0x15a) [0xb7c9eaea]
    #13 /usr/lib/libX11.so.6(XSync+0x6a) [0xb7c92d2a]
    #14 /usr/lib/libgdk-1.2.so.0(gdk_flush+0x28) [0xb7da0fb8]
    #15 qiv(update_image+0x384) [0x804c744]
    qiv: xcb_xlib.c:73: xcb_xlib_lock: Assertion `!c->xlib.lock' failed.
    Aborted
    please help.

    Hello,
    I have the same error since about two weeks. Today I tried to solve that problem and i found this link:
    https://bugs.launchpad.net/ubuntu/+sour … +bug/41056
    So to fix the problem you have to do:
    export XLIB_SKIP_ARGB_VISUALS=1
    It seems to be a problem with imlib1 and the X composite extension..... I don't really know what that means .
    For those people all were fine with the versions:
    ii gdk-imlib11 1.9.14-32ubuntu1 imaging library for use with gtk
    ii qiv 2.0-7 A quick image viewer for X
    and personally I have
    local/imlib 1.9.15-3
    General image handling library for X11 and Gtk
    local/imlib2 1.4.0-1
    Imlib2 is the successor to Imlib. It is NOT a newer version -- Imlib 2 can
    be installed alongside Imlib 1.x
    local/qiv 2.0-1
    Quick Image Viewer (qiv) is a very small and fast GDK/Imlib image viewer
    Perhaps the qiv version is too old. Could anyone help ?

  • Windows No Disk - Exception Processing Message

    I just got this error when trying to open my Adobe Premier 7.0 out of the blue... Windows - No Disk. Exception Processing Message... anyone know how to fix this?

    Unexplained Crashes, lock-ups, Failure to boot and boot-looping in Vista and XP and MAC OS-X.
    Have a USB2 external hard drive hooked up to your system? A number of these devices are starting to show up as the cause of the problems listed above. The cause has been linked to drives that were manufactured a year or more ago. Note I said manufactured not purchased. The cause is poor USB 2.0 specifications that the drive case manufactures followed which has deteriorated with age causing the above failures. If this happens to you try disconnecting your external drive and see if your problem goes away. A couple of multifunction printers have also been the cause of similar problems but most of these have higher visibility on internet search engines than the external hard drives. 
    Sorry, no KB article link. The above is from my reseller, who deals in imaging workstations exclusively.
    Hunt

  • Windows - No Disk Exception Processing Message on iTunes start-up

    Every time I start up iTunes I get this annoying Windows Error Message.
    Windows – No Disk
    Exception Processing Message c000001e Parameters 75b6bf9c 4 75b6bf9c 75b6bf9c
    Cancel Try Again Continue
    If I click any combination of the three buttons many times it eventually goes away.
    Then, it also happens when doing any operation with a song file such as conveting format or it rate. In this case it may lock up iTunes and require a C-A-D to get out of the application.
    HELP!!
    I've tried updating the iTunes software
    Medion   Windows XP  
    Medion   Windows XP  

    Unexplained Crashes, lock-ups, Failure to boot and boot-looping in Vista and XP and MAC OS-X.
    Have a USB2 external hard drive hooked up to your system? A number of these devices are starting to show up as the cause of the problems listed above. The cause has been linked to drives that were manufactured a year or more ago. Note I said manufactured not purchased. The cause is poor USB 2.0 specifications that the drive case manufactures followed which has deteriorated with age causing the above failures. If this happens to you try disconnecting your external drive and see if your problem goes away. A couple of multifunction printers have also been the cause of similar problems but most of these have higher visibility on internet search engines than the external hard drives. 
    Sorry, no KB article link. The above is from my reseller, who deals in imaging workstations exclusively.
    Hunt

  • App Server and Process Scheduler stuck while booting

    Hi All,
    We are facing a big issue in our production instance.The application server showed down while accessing the PIA.When we tried to reboot the same it didnt start and was getting stuck after some steps..few snipets are below after the last PSSRENSRV process does not proceed further.
    exec PSSAMSRV  --A  --  -C  psappsrv.cfg  -D FNPROD  -S PSSAMSRV:
            CMDTUX_CAT:819: INFO:Process id=5584 Assume started <pipe>.
    exec PSSAMSRV  --A  --  -C  psappsrv.cfg  -D FNPROD  -S PSSAMSRV:
            CMDTUX_CAT:819: INFO:Process id=5600 Assume started <pipe>.
    exec PSSAMSRV  --A  --  -C  psappsrv.cfg  -D FNPROD  -S PSSAMSRV:
            CMDTUX_CAT:819: INFO:Process id=5616 Assume started <pipe>.
    exec PSSAMSRV  --A  --  -C  psappsrv.cfg  -D FNPROD  -S PSSAMSRV:
            CMDTUX_CAT:819: INFO:Process id=5632 Assume started <pipe>.
    exec PSSAMSRV  --A  --  -C  psappsrv.cfg  -D FNPROD  -S PSSAMSRV:
            CMDTUX_CAT:819: INFO:Process id=5648 Assume started <pipe>.
    exec PSSAMSRV  --A  --  -C  psappsrv.cfg  -D FNPROD  -S PSSAMSRV:
            CMDTUX_CAT:819: INFO:Process id=5664 Assume started <pipe>.
    exec PSRENSRV  --A  --   -C  psappsrv.cfg  -D FNPROD  -S PSRENSRV:The tuxedo,appserv and renserv logs shows,
    renserv log
    ----- Begin booting PSRENSRV -------------------------
    0.5608 [14/Jul/2011 07:51:54](ERROR) CRenTuxSvcMgr::ReqBootParameters - Tux service call failed.
    ----- Begin booting PSRENSRV -------------------------
    0.5056 [14/Jul/2011 07:58:47](ERROR) CRenTuxSvcMgr::ReqBootParameters - Tux service call failed.
    ----- Begin booting PSRENSRV -------------------------
    0.780 [14/Jul/2011 08:21:04](ERROR) CRenTuxSvcMgr::ReqBootParameters - Tux service call failed.------------------------------------------------------------------------------------------
    tuxedo log
    receiving messages, tperrno = TPEOS, Uunixerr = UMSGRCV
    082104.UKLO2K3S55!JSH.5060.5084.-2: JOLT_CAT:1107: "ERROR: Error receiving messages, tperrno = TPEOS, Uunixerr = UMSGRCV"
    082104.UKLO2K3S55!WSH.4364.1752.0: WSNAT_CAT:1107: ERROR: Error receiving messages, tperrno = TPEOS, Uunixerr = UMSGRCV
    082104.UKLO2K3S55!WSH.4472.4416.0: WSNAT_CAT:1107: ERROR: Error receiving messages, tperrno = TPEOS, Uunixerr = UMSGRCV
    082104.UKLO2K3S55!WSH.1684.4128.0: WSNAT_CAT:1107: ERROR: Error receiving messages, tperrno = TPEOS, Uunixerr = UMSGRCV
    082104.UKLO2K3S55!WSH.4256.4172.0: WSNAT_CAT:1107: ERROR: Error receiving messages, tperrno = TPEOS, Uunixerr = UMSGRCV
    082104.UKLO2K3S55!JSH.4876.496.-2: JOLT_CAT:1107: "ERROR: Error receiving messages, tperrno = TPEOS, Uunixerr = UMSGRCV"
    082104.UKLO2K3S55!WSH.4896.4284.0: WSNAT_CAT:1107: ERROR: Error receiving messages, tperrno = TPEOS, Uunixerr = UMSGRCV
    082104.UKLO2K3S55!JSH.4800.1036.-2: JOLT_CAT:1107: "ERROR: Error receiving messages, tperrno = TPEOS, Uunixerr = UMSGRCV"
    082104.UKLO2K3S55!WSL.3904.4032.0: LIBTUX_CAT:703: ERROR: Cannot get statistics on message queue 43
    082104.UKLO2K3S55!JSL.4316.4024.0: JOLT_CAT:1196: "INFO: Terminating handlers in preparation for shutdown"
    082104.UKLO2K3S55!WSL.3904.4032.0: WSNAT_CAT:1197: INFO: Exiting system
    082104.UKLO2K3S55!JREPSVR.5768.5800.0: LIBTUX_CAT:271: ERROR: System lock semop failure, key = 61480 (errno = 22)
    082104.UKLO2K3S55!WSL.3904.4032.0: LIBTUX_CAT:268: ERROR: Failed to stop serving
    082104.UKLO2K3S55!JSL.4316.4024.0: JOLT_CAT:1197: "INFO: Exiting system"
    082104.UKLO2K3S55!JREPSVR.5768.5800.0: LIBTUX_CAT:268: ERROR: Failed to stop serving
    082104.UKLO2K3S55!JSL.4316.4024.0: LIBTUX_CAT:268: ERROR: Failed to stop serving
    082105.UKLO2K3S55!PSWATCHSRV.6124.568.-2: ERROR: msgrcv err(LIBTUX_CAT:669: ERROR: Message operation failed because of the invalid message queue identifier): errno=22,qid=2,buf=9580216,bytes=4572,type=-1073741824,flag=2048
    082105.UKLO2K3S55!PSWATCHSRV.6124.568.-2: LIBTUX_CAT:268: ERROR: Failed to stop serving------------------------------------------------------------------------------------------
    app serv log
    PSADMIN.4944 (0) [07/14/11 07:48:28](0) Begin boot attempt on domain FNPROD
    PSWATCHSRV.4720 (0) [07/14/11 07:48:33] Starting
    PSADMIN.4944 (0) [07/14/11 07:52:29](0) End boot attempt on domain FNPROD
    PSADMIN.4944 (0) [07/14/11 07:55:46](0) Begin boot attempt on domain FNPROD
    PSWATCHSRV.1412 (0) [07/14/11 07:55:50] Starting
    PSADMIN.4892 (0) [07/14/11 08:08:07](0) Begin boot attempt on domain FNPROD
    PSWATCHSRV.5032 (0) [07/14/11 08:08:13] Starting
    PSADMIN.4892 (0) [07/14/11 08:08:27](0) End boot attempt on domain FNPROD
    PSADMIN.6104 (0) [07/14/11 08:20:28](0) Begin boot attempt on domain FNPROD
    PSWATCHSRV.6124 (0) [07/14/11 08:20:32] Starting-----------------------------------------------------------------------------------------
    tuxedo log
    213815.UKLO2K3S55!PSSAMSRV.6072.6040.0: LIBTUX_CAT:262: INFO: Standard main starting
    213815.UKLO2K3S55!PSRENSRV.2440.2444.-2: 07-13-2011: Tuxedo Version 8.1 32-bit Windows.
    213815.UKLO2K3S55!PSRENSRV.2440.2444.-2: LIBTUX_CAT:262: INFO: Standard main starting
    214434.UKLO2K3S55!BBL.5964.4464.0: ERROR: msgrcv err(LIBTUX_CAT:666: ERROR: Message operation failed because the queue was removed): errno=100,qid=257,buf=10285048,bytes=4572,type=-1073741824,flag=0
    214434.UKLO2K3S55!PSRENSRV.2440.2444.-2: ERROR: msgrcv err(LIBTUX_CAT:666: ERROR: Message operation failed because the queue was removed): errno=100,qid=277,buf=11551960,bytes=8668,type=805306369,flag=0
    214434.UKLO2K3S55!BBL.5964.4464.0: ERROR: msgrcv err(LIBTUX_CAT:669: ERROR: Message operation failed because of the invalid message queue identifier): errno=22,qid=257,buf=10285048,bytes=4572,type=0,flag=0
    214434.UKLO2K3S55!BBL.5964.4464.0: LIBTUX_CAT:271: ERROR: System lock semop failure, key = 33242 (errno = 22)
    214434.UKLO2K3S55!BBL.5964.4464.0: LIBTUX_CAT:268: ERROR: Failed to stop serving
    214434.UKLO2K3S55!BBL.5964.4464.0: CMDTUX_CAT:26: INFO: The BBL is exiting system
    214434.UKLO2K3S55!PSWATCHSRV.5208.4528.-2: ERROR: msgrcv err(LIBTUX_CAT:669: ERROR: Message operation failed because of the invalid message queue identifier): errno=22,qid=258,buf=9654368,bytes=27996,type=-1073741824,flag=2048
    214434.UKLO2K3S55!PSWATCHSRV.5208.4528.-2: LIBTUX_CAT:268: ERROR: Failed to stop serving
    214507.UKLO2K3S55!tmboot.4616.5152.-2: 07-13-2011: Tuxedo Version 8.1 32-bit Windows.
    214507.UKLO2K3S55!tmboot.4616.5152.-2: TUXNT_CAT:4: ERROR: Cannot access ipc server (The system cannot find the file specified.
    214507.UKLO2K3S55!tmboot.4616.5152.-2: tmboot: CMDTUX_CAT:827: ERROR: Fatal error encountered; initiating user error handler
    214508.UKLO2K3S55!PSADMIN.868: End boot attempt on domain FNPRODAlso the process scheduler was not getting booted the logs are shown below,
    scheduler log
    085646.UKLO2K3S55!restartsrv.2484.4116.-2: server BASE/101: CMDTUX_CAT:587: INFO: Cannot restart server, scheduling for cleanup
    085653.UKLO2K3S55!BBL.4044.5996.0: LIBTUX_CAT:550: WARN: Cleaning up restartable server BASE/101
    085653.UKLO2K3S55!BBL.4044.5996.0: LIBTUX_CAT:216: WARN: Process 4300 died; removing from BB
    085653.UKLO2K3S55!BBL.4044.5996.0: LIBTUX_CAT:216: WARN: Process 5372 died; removing from BB
    085653.UKLO2K3S55!BBL.4044.5996.0: LIBTUX_CAT:216: WARN: Process 5640 died; removing from BB
    085653.UKLO2K3S55!BBL.4044.5996.0: LIBTUX_CAT:216: WARN: Process 5768 died; removing from BB
    085653.UKLO2K3S55!cleanupsrv.4148.4364.-2: 07-14-2011: Tuxedo Version 8.1 32-bit Windows.
    085653.UKLO2K3S55!cleanupsrv.4148.4364.-2: GP_CAT:1077: ERROR: Unable to open environment file E:\Psoft\PRDAPP\appserv\prcs\FNPROD\psprcsrv.env for reading
    085653.UKLO2K3S55!cleanupsrv.4148.4364.-2: LIBTUX_CAT:353: ERROR: Error putting ENVFILE E:\Psoft\PRDAPP\appserv\prcs\FNPROD\psprcsrv.env into environment
    085653.UKLO2K3S55!cleanupsrv.4148.4364.-2: server BASE/101: CMDTUX_CAT:551: INFO: server removed
    085743.UKLO2K3S55!BBL.4044.5996.0: ERROR: msgrcv err(LIBTUX_CAT:666: ERROR: Message operation failed because the queue was removed): errno=100,qid=80,buf=10304328,bytes=4572,type=-1073741824,flag=0
    085743.UKLO2K3S55!BBL.4044.5996.0: ERROR: msgrcv err(LIBTUX_CAT:669: ERROR: Message operation failed because of the invalid message queue identifier): errno=22,qid=80,buf=10304328,bytes=4572,type=-1073741824,flag=0
    085743.UKLO2K3S55!BBL.4044.5996.0: LIBTUX_CAT:271: ERROR: System lock semop failure, key = 64479 (errno = 22)
    085743.UKLO2K3S55!BBL.4044.5996.0: LIBTUX_CAT:268: ERROR: Failed to stop serving
    085743.UKLO2K3S55!BBL.4044.5996.0: CMDTUX_CAT:26: INFO: The BBL is exiting systemIs this a problem with Tuxedo if so what has to be done...Pls help its a bit urgent...
    Thanks in advance...

    First of all; if a problem is urgent then you should always contact Oracle support instead.
    It looks like the domain is corrupt within Tuxedo. You could try to reconfigure the domain so that it will get recreated in Tuxedo. Make sure you have a backup before you do this. To reconfigure the domain simply open a CMD box and type the following command (from the appserver directory):
    psadmin -c configure -d "DOMAIN_NAME"
    You can only use this command for the application server.

  • 32bit games in fullscreen?

    hey!
    i am programming my own games in blitzmax, which is 32bit and therefore i installed a 32bit chroot. everything runs fine and i can compile and run my games. BUT only in windowed mode. if i try to run them in fullscreen mode i will get a black screen and the game stops running.
    i think this is not a blitzmax issue so i post it here. do i need a special lib to run 32bit opengl games in fullscreen mode?

    ok here is the debug message i receive if i start a 32bit game in fullscreen mode (windowed mode runs fine!):
    bash-3.2$ ./test.debug
    X Error of failed request: GLXUnsupportedPrivateRequest
    Major opcode of failed request: 144 (GLX)
    Minor opcode of failed request: 16 (X_GLXVendorPrivate)
    Serial number of failed request: 52
    Current serial number in output stream: 781
    Locking assertion failure. Backtrace:
    #0 /opt/lib32/usr/lib/libxcb-xlib.so.0 [0xf7b4a767]
    #1 /opt/lib32/usr/lib/libxcb-xlib.so.0(xcb_xlib_lock+0x2e) [0xf7b4a81e]
    #2 /opt/lib32/usr/lib/libX11.so.6 [0xf7ee9ba9]
    #3 /opt/lib32/usr/lib/libX11.so.6(XFlush+0x29) [0xf7ec2d99]
    #4 ./test.debug [0x8071ad1]
    #5 ./test.debug [0x80f9cef]
    #6 ./test.debug [0x80f92bc]
    #7 ./test.debug [0x80f7d10]
    #8 ./test.debug [0x80f78d6]
    #9 ./test.debug [0x80f6e7b]
    #10 /opt/lib32/lib/libc.so.6(exit+0x89) [0xf7b7d6c9]
    #11 /opt/lib32/usr/lib/libX11.so.6 [0xf7ee254e]
    #12 /opt/lib32/usr/lib/libX11.so.6(_XError+0xd9) [0xf7ee2629]
    #13 /opt/lib32/usr/lib/libX11.so.6 [0xf7eea548]
    #14 /opt/lib32/usr/lib/libX11.so.6(_XEventsQueued+0x55) [0xf7eeaeb5]
    #15 /opt/lib32/usr/lib/libX11.so.6(_XFlush+0x42) [0xf7eeaf42]
    #16 /opt/lib32/usr/lib/libX11.so.6(XFlush+0x31) [0xf7ec2da1]
    #17 /opt/lib32/usr/lib/libGL.so.1(glXSwapBuffers+0xea) [0xf7e5d10a]
    #18 ./test.debug [0x805a797]
    #19 ./test.debug [0x80dc5e5]
    test.debug: xcb_xlib.c:73: xcb_xlib_lock: Assertion `!c->xlib.lock' failed.
    Abgebrochen
    bash-3.2$
    it sais sth. about xlib.lock...?!? i have typed "xhost +local:" in the terminal

Maybe you are looking for

  • Decimal places adjustment based on company code or currency

    Hi experts,     my requirement is i have to adjust the decimal places in amount fields of internal table based on company code or currency given by user. suppose for example in my internal tables having 5 amount fields like 1.50 1.234 1.45 1.34, 1.67

  • Blackberry APN settings on non-BB

    i am subscribed to BES global data and was able to use it on Android device with blackberry.net APN. from few days now, data has stoped working on Android with this APN but is working well on Blackberry. i believe my carrior has changed the (APN) set

  • Report info about a specific machine

    Hi, Does somebody have a report that gives all information in SCCM about a specific machine between a timespan (like between November 1st and November 21st)? We would like as much as possible info about a specific workstation that's available in the

  • Creating a combo box to change graph type

    Hello Gurus, I need to create a combo box in a web page to change the graph type used. How would I go about to achieve this? Thanks.

  • How much does an iPhone 4 8gb hold

    I was wondering how much will my iPhone 4 8gb hold. It only give 6gb available. So how many songs apps photos and videos Can I store with in my available 6gb all together Someone please help this is urgent!!!