Arrange Commands won't run

Please help! These commands are essential to the way I work in Illustrator - probably for you too. Keyboard shortcut to Arrange Object - Send to Back, Bring to Front, etc. None of these commands will run. What am I doing wrong?
I can drag the layers in the layers panel but the Arrange commands won't run no matter where I call them from - the Object menu on top, right-click the object itself...or the most useful way, the keyboard shortcuts: CTL+SHIFT+[     etc.
I'm not using compound paths, no Live Paint, no groups. I'm in Draw Normal mode.
For what it's worth the Select commands run perfectly fine. CTL+ALT+[  or  CTL+ALT+]  no problems with either of these.
I'm using the Default Keyboard Shortcuts.
Win 7 Pro 64-bit, Prod Prem CS5.5. No trouble in CS4...
THANK YOU.
[EDIT: Reset preferences (moved AIPrefs, restart) but it did not help.]

This is what I think and don't get angry at me because I think it is user error.
I think that you think you can select an object on one layer and send it to the back and it will some how be behind a layer which is below the layer the object resides on.
It does not work that way.
It will only send it to the back of objects on the current layer the same goes if you want it to come to the front it will only come to the front of the objects on the current layer.
I believ it is user error and that it is working fine and there is no need to reinstall.
Now of course I can be wong about this though you wrote something that indicates this is the case.
If you understood how it work and it is another problem then you have a conflicting software on your computer can be anything from a font, recent update, new application or utility or even some odd setting in anothe application.
But the reason no one responded is not one can figure out how to make it not work so they could not help. But I read your post a few times and realized what I think the problem.

Similar Messages

  • Powershell commands won't run in Task Scheduler

    On a Windows 2008 R2 member server (Win 2003 domain), I can run a batch file like this on command line:
    "powershell.exe -noexit -noprofile -executionpolicy Unrestricted -file C:\Bin\Scripts\BitsTransfer-Server05.ps1"
    However, the batch file fails as a scheduled task, with following error:
    "Start-BitsTransfer : The operation being requested was not performed because the user has not logged on to the network. The specified service does not exist."
    The job is scheduled under a service account which is a member of Domain Admin group. And, yes, I have checked "Run whether user is logged on or not" and "run with highest privileges". Logging on as that account to the server did not make a difference.
    I am able to run the scheduled jobs on other servers with the same account and same configuration without a problem. Thanks for any help.
    Jay Kulsh

    Jay
    Although you may have already found a resolution to your issue, I'm still going to post this note to benefit someone else. I ran into a similar issue.
    I basically used a different domain account to test and the task ran just fine. A couple of things to keep in mind and make sure of:
    1. The account being use to execute task must have "Logon as batch job"
    rights under the local security policy of the server. You must specified the account you need to run scripts/bat files.
    2. Make sure you are entering the correct password characters
    3. Tasks in 2008 R2 don't run interactively specially if you run them as "Run whether user is logged on or not". This will likely fail specially if on the script
    you are looking for any objects\resource specific to a user-profile when the task was created as the powershell session will need that info to start, otherwise it will start and immediately end.
    Example for $Path:
    mapped drive (\\server\share) x:\   vs.  Actual UNC path \\server\share
    4.
    Review your steps, script, arguments. Sometimes the smallest piece can make a big difference even if you have done this process many times. I have missed several times a character on the password or a semi-colon sometimes.
    Check the link provided and hopefully you or someone else can benefit from this info. Be safe.
    https://technet.microsoft.com/en-us/library/cc722152.aspx

  • TS3002 My macbook pro 4,1 runs os x 10.6 but won't run my apple usb superdrive. One forum said that this is due to os x, not hardware. The terminal commands given were for Lion, but don't work in snow leopard. Help!

    My macbook pro 4,1 runs os x 10.6 but won't run my apple usb superdrive. One forum said that this is due to os x, not hardware. The terminal commands given were for Lion, but don't work in snow leopard. Help!

    I was able to get it to work!

  • Class Not Found Exception - applet won't run anywhere outside of IDE

    I have an applet that runs perfectly in the netbeans IDE, but won't run from command prompt (I'm using windows) or from a browser. I've been banging my head against the wall for a few days on this one. Here's the HTML I'm using:
    <applet width="400" height="525" code="musicapplet.class" archive="crypticgraffiti.jar">
    <param name="bgcolor" value="ffffff"> <param name="fontcolor" value="000000">
    </param> </param> Your browser is not Java enabled. </applet>
    Here is the structure of the jar file's contents:
    META-INF/
    META-INF/MANIFEST.MF
    com/
    com/crypticgraffiti/
    com/crypticgraffiti/music/musicapplet
    com/crypticgraffiti/music/GetNotes.class
    com/crypticgraffiti/music/InstList.class
    com/crypticgraffiti/music/Mode.class
    com/crypticgraffiti/music/MusicCreator.class
    com/crypticgraffiti/music/OctaveTransformer.class
    com/crypticgraffiti/music/Phrase.class
    musicapplet/MusicApplet$playerThread.class
    musicapplet/MusicApplet.class
    (Musicapplet.class is the main class)
    When I attempt to run from command prompt, I get:
    "Error: Could not find or load main class crypticgraffiti.MusicApplet"
    When I attempt to load via html:
    "basic: load: class musicapplet.class not found.
    load: class musicapplet.class not found.
    java.lang.ClassNotFoundException: musicapplet.class
         at sun.plugin2.applet.Applet2ClassLoader.findClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass0(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.plugin2.applet.Plugin2ClassLoader.loadCode(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager.createApplet(Unknown Source)
         at sun.plugin2.applet.Plugin2Manager$AppletExecutionRunnable.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Exception: java.lang.ClassNotFoundException: musicapplet.class
    security: Accessing keys and certificate in Mozilla user profile: null"
    I have tried every possible variation for the 'code' element of the applet tag (package.mainclass.class, mainclass, mainclass.class, etc). I have also tried compiling with JDK 1.6 and this didn't change anything. I've tried clearing out the cache of temporary files using the java control panel settings, and have verified that my browser can run other applets using JRE 6 and 7.
    I've tried some different ways of distributing the applet, also: putting all the class files in the folder with the html file, putting the classes in a source folder in the same folder as the html file, and finally putting a jar in the same folder as the html file (which really seems the simplest).
    Any help at all would be most appreciated! This applet is a very cool and original music creating app that draws heavily on the JFugue API. It's a shame that I can't get it online for people to play with!

    Cryptic Graffiti wrote:
    Here is the structure of the jar file's contents:
    META-INF/
    META-INF/MANIFEST.MF
    com/
    com/crypticgraffiti/
    com/crypticgraffiti/music/musicapplet
    com/crypticgraffiti/music/GetNotes.class
    com/crypticgraffiti/music/InstList.class
    com/crypticgraffiti/music/Mode.class
    com/crypticgraffiti/music/MusicCreator.class
    com/crypticgraffiti/music/OctaveTransformer.class
    com/crypticgraffiti/music/Phrase.class
    musicapplet/MusicApplet$playerThread.class
    musicapplet/MusicApplet.class
    (Musicapplet.class is the main class)
    Please note that class names are case sensitive so "MusicApplet" is not same as "Musicapplet" or "musicapplet". Your applet tag should have fully qualified class name (without quotes) and should look like this:
    <applet width=400 height=525 code=musicapplet.MusicApplet archive="crypticgraffiti.jar">
    </applet>
    The JAR should be in the same directory as your HTML file. While launching from command line, you can also check if your JAR file is getting included in classpath.
    Thanks,
    Nitin

  • Add-on won't run on some clients

    As soon as an add-on users de DI SDK, it crashes at startup on some systems and I don't know why.
    I'm using the DI Basic Operations example that came with the SDK. I build it, and used the SAP B1 SDK setup .NET Wizard to create the installer and licence file. The istallation goes fine, but the addon itself crashes. with a useless "the program has performed an illegal operation and will be shut down" error message (see below)
    I also tried other ways to run the add-on (among others directly from visual studio or from the command line, with the developer licence number as argument) but allways with the same result. At one system all goes well, at the other a crash occurs even before the debugging can start.
    I have no idea what this error message is trying to tell me:
    System.Runtime.InteropServices.COMException (0x80040154): COM object with CLSID {A355004F-AAB4-41D3-BDE0-7EAED1ED5FFF} is either not valid or not registered.
       at Project1.BasicOperations.InitializeCompany()
       at Project1.BasicOperations.BasicOperations_Load(Object eventSender, EventArgs eventArgs)
       at System.Windows.Forms.Form.OnLoad(EventArgs e)
       at System.Windows.Forms.Form.OnCreateControl()
       at System.Windows.Forms.Control.CreateControl(Boolean fIgnoreVisible)
       at System.Windows.Forms.Control.CreateControl()
       at System.Windows.Forms.Control.WmShowWindow(Message& m)
       at System.Windows.Forms.Control.WndProc(Message& m)
       at System.Windows.Forms.ScrollableControl.WndProc(Message& m)
       at System.Windows.Forms.ContainerControl.WndProc(Message& m)
       at System.Windows.Forms.Form.WmShowWindow(Message& m)
       at System.Windows.Forms.Form.WndProc(Message& m)
       at System.Windows.Forms.ControlNativeWindow.OnMessage(Message& m)
       at System.Windows.Forms.ControlNativeWindow.WndProc(Message& m)
       at System.Windows.Forms.NativeWindow.Callback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
    Most of the time however, I get a much less helpfull error saying there was some unidentified illegal operation.
    Something that is possibly related is a problem with the references. On a PC where the add-on crashes I don't have the SAP DI as reference in the .NET and COM tabs, only the SAP UI. When I open an example the DI reference is reporting an error (not found) , but when I add the reference as a file, all is well. (The project now compiles with no errors or warnings, it still crashes when I start it.
    The problem already occured when only SBO was installed (which should be sufficient to run the add-on? You don't need to have the SDK installed I presume). I installed the SDK and later even Visual Studio, but this didn't help.
    I've reinstalled SBO several times (I even deleted the sbo program files directory before installing SBO again) but this didn't change anything.
    (I'm using 2004a)
    Does anyone know what could cause this problem?

    I know that, but that didn't help.
    Is there any way to find out which versions of the DI API a SBO client is currently using?
    We've re-installed the clients and DI API using the shared folder on the server, but that didn't help. (maybe some old dll was locked and couldn't be removed (without any notice of that happening) and is still being used?)
    One system indeed didn't have the DI API installed and the problem was solved a bit (my own plug-in now works fine, but the "DI basic operations" example of the SDK crashes when connecting to a company database.)
    We've now got 3 machines running my add-on without any problems (the server and 2 notebooks) and 1 notebook who won't run my add-on at all.
    The DI basic operations Example of the SDK won't run on any of the notebooks, only on the server.
    On one notebook it crashes when I click "choose company DB" (which should give me a list of available companies) on the other notebook it crashes when I try to connect to a (any) specific company database and on the third notebook it gives an empty list and won't connect to anything (but doesn't crahs)
    this is all 100% reproducable.
    All machines run the SBO client and UI add-ons perfectly, only the DI seems to cause problems.
    another weird problem that might be related, is that I need to compile my add-on as "debug". When I compile it as "release", it won't run on any of the notebooks, only on the server.

  • Audition CS6 won't run anymore

    My version of CS6 used to run perfectly until I used Malwarebytes, which removed amtlib.dll
    Now it won't run at all, even though I've put amtlib.dll back. I keep on getting the 0xc000007b error, and I can't uninstall the program at all. What do I do to fix this problem? It's extremely frustrating. Nothing I have done has fixed this, and I've tried many times to remove it, such as command prompt, the windows uninstaller (it doesn't show up), and multiple programs such as ccleaner.

    If Ryclark's suggestion still doesn't work I would strongly recommend finding and downloading the free version of Revo Uninstaller, from Download Revo Uninstaller Freeware - Free and Full Download - Uninstall software, remove programs, solve uninstall probl… The Pro version can be used for 30 days as a trial; speaking personally I think it's well worth the money!  The Portable version is especially useful to keep on a pen drive; you can then use it on any computer.
    I've needed to use it on more than one occasion when faced with similar problems (a program that is now "corrupted" but cannot be uninstalled by any standard method).  If Audition is not listed as installed when you run Revo, use the Forced Uninstall mode and simply point it to the folder where AA currently is.
    One word of caution: Revo Pro creates a full back of your registry etc., before beginning the uninstall routine.  I don't think the free version does, so do create a System restore point before running it.
    HTH
    Jeff

  • Mail won't run - can I rebuild without running Mail?

    I was installing the latest update to Mail Tags in Mail and it crashed in the process of the update. Now mail won't run - it just hangs. I reinstalled Mail and it's still doing the same thing so it must be the mail data file (right?). Can I rebuild the data file without running mail? What to do?

    Ok, I should have tried the easy solutions first. I deleted the preferences com.apple.mail.plist in my user's Library folder and that solved the problem. Of course your Library folder is hidden in Lion so you must reveal the folder first which can be done like this: hit command+shift+G from the finder and type ~/library/ You will ge temporary access to the Library folder.
    Problem solved for me.

  • Program won't run

    I am currently reading "Sam's teach yourself Java 2 in 21 days", and I followed the instructions for programming the "VolcanoApplication" (the files can be found here http://www.cadenhead.org/book/java-21-days/chapter.php/1 and are called VolcanoRobot and VolcanoApplication). I compiled the two programs, but VolcanoApplication won't run. I get an error message saying "Exception in thread "main" java.lang.NoClassDefFoundError: volcanoapplication/class"

    I copied the two files, compiled them and had no problem running VolcanoApplication. To try to narrow down your problem, do the following:
    1. Check the names of both files to make sure that they are called VolcanoApplication.java and VolcanoRobot.java. 
    Make sure there are no typos because the file name must exactly match the class name.  This includes case.
    2. Before trying to recompile, first erase the old .class files.  Go to the directory that contains the files
    and issue the command: "javac VolcanoApplication.java".  This should compile both files. 
    The javac command should complete with no errors.  Now check your directory, you should see
    VolcanoApplication.class and VolcanoRobot.class in your directory.
    3. From the same directory, issue the command "java VolcanoApplication".  Again, make sure there are no typos. 
    It should execute the program and print out some stuff.

  • My JAR won't run on computer running 1.1.8

    HI everybody. I want to put my jar file on another computer but this other one is running 1.1.8 and its not recognising my jar command :
    it says: -jar: illegal argument , and when i check the help it doesn't have jar as an option, and when i check the version its 1.1.8.
    The thing is i can't even download a newer versio of java on this machine. So can i change my program to an exe or is there anything i can do to make it work??
    Many thanks

    As far as I remember the -jar option was only introduced in Java 2. Before that you had to run it by giving the jar file on the classpath and using the main class as the argument to java.
    BUT... this is likely to be the least of your problems. If your program uses any features from after version 1.1, then your program won't run anyway.

  • I have downloaded game from big fish games but it won't run, i'm using mountain lion any help would be great thank's , aiden .

    I have downloaded a game from big fish games but it won't run any tip's please / THANKS .

    Launch the Console application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Console in the icon grid.
    Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Click the Clear Display icon in the toolbar. Then try the action that you're having trouble with again. Select any messages that appear in the Console window. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V).
    When posting a log extract, be selective. In most cases, a few dozen lines are more than enough.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some private information, such as your name, may appear in the log. Anonymize before posting.

  • Certain applications won't run

    Certain applications won't run. Mail, Safari (I'm sending this with Firefox), and now Installer. The disc now verifies although I had to repair the disc earlier. This started when trash-emptying wouldn't complete. Disc Utility from the Tiger install disc found what it called a minor error - a file that was a little too big (don't remember the file) and free space a little too small. Here's the crash log when I try to run the 10.4.10 PPC combo update - after a hint I got in another thread about a problem like this. I believe the same file is mentioned for any of the apps that won't run. If you have any ideas how I should proceed, please let me know. Thanks, Joe
    ===== Sunday, November 4, 2007 2:01:07 AM US/Pacific =====
    dyld: NSAddImage() error
    dyld: Library not loaded: /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    Referenced from: /System/Library/Frameworks/WebKit.framework/WebKit
    Reason: no suitable image found. Did find:
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore: unknown file type, first eight bytes: 0xCA 0xFE 0xBA 0xBE 0x00 0x00 0x00 0x02 /System/Library/Frameworks/WebKit.framework/WebKit
    Nov 4 02:01:39 joe-diederichs-powerbook-g4-15 crashdump[351]: Installer crashed
    Nov 4 02:01:39 joe-diederichs-powerbook-g4-15 crashdump[351]: crash report written to: /Users/joed/Library/Logs/CrashReporter/Installer.crash.log

    Joe Diederichs wrote:
    How bad is it to try to install the combo update from the Terminal? Thanks, Joe
    Well, it's this bad:
    First off, a disclaimer. I didn't think of this, and I've not tried it from the DVD, though I did check the commands on a booted system. But it looks like it should work to me.
    Okay, to use Terminal on the DVD, do this:
    First, open up the disk image for the updater and copy the ".pkg" or ".mpkg" file onto your desktop, since that's an easy place to find it. Eject the disk image and make sure the package file stays on the desktop. Make a note of the package's exact name, including capitalization. You'll need it later. Now, open the Terminal on your Mac and type the following:
    cd ~/Desktop; pwd
    Write this path down somewhere, and keep in mind that case counts. It'll be something like "/Users/username/Desktop".
    Now, take a look at the name of your hard drive. It's most likely something like "Macintosh HD". The main thing is to note any spaces in the name and note the name. I'm not sure whether auto-complete, and all the other good stuff, works in the Terminal on the DVD, so it's best to write these things down.
    Now, boot from the Tiger Installer DVD and open up the Terminal app from the "Utilities" menu. Now, you need to construct a command to open up the installer package for the update package. Here's how it should look (without customization):
    "/Volumes/Macintosh HD/usr/bin/open" -a /Applications/Utilities/Installer.app "/Volumes/Macintosh HD/Users/username/Desktop/MacOSXUpdCombo10.4.10PPC.pkg"
    A couple of things to note: first, the quotes around the first part are necessary because of the space in "Macintosh HD", same with the last part. Also, it's possible that the installer will open up the OS X installer package from the DVD as well. Just be really sure you're installing the update and not the full OS. Also, make sure you customize the username in the last part, just before "Desktop".
    Finally, if you've installed any updates after the 10.4.10 update (especially security updates), it's possible that the problem with the WebKit will not be fixed, since the 10.4.10 combo installer may not install the older version of the WebKit over the newer one. In that case, you might have to do the other updates that came after 10.4.10 to eventually get back to where you should be. And all this might be in vain if some other critical file is damaged, but hasn't been updated since 10.4.0.
    charlie
    P.S. -- Like I said before, I haven't tried this, and didn't even think of it. I found the general procedure at, of all places, the Washington Post web site in the comments to a blog entry. Look down toward the bottom.

  • Java runtime environement won't run

    I have a Lenovo T430 Thinkpad.  I have Java (7u67) installed.  The applet will run through the browser (firefox), but JRE won't run through the command line.  I have a program that uses Java, but that program won't run because JRE won't run.  I have uninstalled and reinstalled with no luck.  I'm running Windows 7 enterprise.  Any help would be appreciated.

    ic, thanks for the clarification.
    In my classpath, I didn't include the path to java's core classes/packages (java.awt, javax.swing, etc.), how would it know?
    The above questions arise when I get an error running the jar executable. In this jar files, I included all the classes (but not the nttp and the core java packages). It complains that nttp is not found. I guess it knows where the core java classes but beside those, I need to include any other packages/classes within the jar file itself?
    H:\Documents and Settings\Tommy\Desktop\classes\Spring03\pic20b\NewsgroupSearcher>more MakeJar.bat
    jar -cvmf manifest.txt NewsgroupSearcher.jar *.class
    H:\Documents and Settings\Tommy\Desktop\classes\Spring03\pic20b\NewsgroupSearcher>MakeJar.bat
    H:\Documents and Settings\Tommy\Desktop\classes\Spring03\pic20b\NewsgroupSearcher>jar -cvmf manifest.txt NewsgroupSearcher.jar *.class
    added manifest
    adding: NewsgroupSearcher.class(in = 9331) (out= 5115)(deflated 45%)
    H:\Documents and Settings\Tommy\Desktop\classes\Spring03\pic20b\NewsgroupSearcher>java -jar NewsgroupSearcher.jar
    Exception in thread "main" java.lang.NoClassDefFoundError: gnu/inet/nntp/StatusResponse
    thanks,
    TT

  • Latest sapehpi - startehpi won't run - misses parameters???

    Just started with EHP4 on ECC 6.0 and could only download patch-38 of sapehpi which is quite new.
    Problem turns up during first time STARTEHPI and this won't run while complaining about parameters not matching.
    Log for command doesn't really show a lot more but does also complain about an End-Of-File on INSTANCES in QTEMP.
    Couldn't find anything helpful in notes or guides so now hoping on you guys ...
    Statement used is:  STARTEHPI SID(DE1) TYPE(*ABAP) EPIPATH('/usr/sap/DE1/EHPI')
    Not sure if we still need to also use the OPTIONS('-srvarg=/RoleService/off')  but that doesn't make a difference for the problem.
    Any help appreciated, Louis.

    Hi Louis,
    I found the reason for the issue. It is based on the strange system library list the customer is running. There is a name conflict with program STARTUP called by command STARTEHPI. There exists also a foreign one in library SYSIB on the customer system. Please have a look at following analysis details:
    DSPCMD CMD(STARTEHPI):
    ======================
                               Opdrachtgegevens afbeelden                                                                               
    Opdracht . . . . . . . :   STARTEHPI     Bibliotheek  . . . . . :   DE1EHP                                                                               
    Programma dat opdracht verwerkt  . . . :   STARTUP                            
       Bibliotheek  . . . . . . . . . . . . :     *LIBL       <-- !!!                     
       Gebruikte status voor oproepen van                                          
         programma  . . . . . . . . . . . . :     *USER                            
    Bronbestand  . . . . . . . . . . . . . :   QCMDSRC                            
       Bibliotheek  . . . . . . . . . . . . :     GEN720UOPT                       
    Sectie van bronbestand . . . . . . . . :   STARTEHPI                          
    Programma voor geldigheidscontrole . . :   *NONE                              
    Geldige werkstand(en)  . . . . . . . . :   *PROD                              
                                                *DEBUG                             
                                                *SERVICE                           
    Waar verwerking is toegestaan  . . . . :   *IMOD      *BMOD      *IREXX       
                                                *BREXX     *BPGM      *IPGM        
                                                *EXEC      *INTERACT  *BATCH                                                                               
    MEER...     
    Druk op Enter om door te gaan.                                                                               
    F3=Afsluiten   F12=Annuleren                                                  
    (C) COPYRIGHT IBM CORP. 1980, 2007.                                           
    WRKOBJ OBJ(STARTUP) OBJTYPE(*PGM):
    ==================================
                                  Werken met objecten                                                                               
    Typ opties en druk op Enter.                                                  
       2=Machtiging bewerken   3=Kopiëren   4=Wissen      5=Machtiging afbeelden   
       7=Naam wijzigen         8=Beschrijving afbeelden   13=Beschrijving wijzigen                                                                               
    OPT  OBJECT      TYPE      BIBLIOTH.   KENMERK     BESCHRIJVING               
          STARTUP     *PGM      SYSIB       CLP    <-- !!!                         
          STARTUP     *PGM      DE1EHP      CLLE        10/31/10 19:10:00, ILE vers                                                                               
    EINDE       
    Parameters voor opties 5, 7 en 13 of opdracht                                 
    ===>                                                                          
    F3=Afsluiten   F4=Lijst   F5=Vernieuwen   F11=Namen en typen   F12=Annuleren  
    F16=Zoekopdracht herhalen   F17=Zoeken in lijst   F24=Meer toetsen            
    I explained in the customer ticket in details how do you have to setup the library list in front of the STARTEHPI command, basically there are some needed CHGSYSLIBL calls with OPTION(*REMOVE).
    BTW, your EHPI is currently running and waits for connects from SDT GUI.
    Regards, René

  • DBMS_JOB won't run - sits in job queue

    Hi all,
    I'm trying to run a job using a DBMS_JOB, but none of the jobs that I submit will start in the database.
    Here's the procedure that creates the job:
    CREATE OR REPLACE PROCEDURE DDS.SUBMIT_DBMS_JOB
    AUTHID CURRENT_USER
    IS
    V_JOB_NO NUMBER;
    V_SQL VARCHAR2(200);
    BEGIN
    V_SQL:='update DDS.DDS_TEST SET DDS_TEST_TEXT=''Z''; COMMIT;';
    DBMS_JOB.SUBMIT(V_JOB_NO,V_SQL);
    COMMIT;
    END;
    Very easy.
    iI run the procedure and the job is submitted. But it won't run.
    I've checked my job_queue_processes. It is set to '4'.
    The database was apparently not started in restricted mode (select logins from v$instance returns 'ALLOWED').
    I can get the job to run by issuing the following command: exec dbms_job.run(1496, true); Where 1496 is the job number.
    Any idea why these jobs won't start on their own? The perplexing thing is that I used to be able to submit (and run) jobs in this database, but it's not working today.
    All help would be appreciated.
    Thanks!
    Tom
    P.S. - Yes, I know about DBMS_SCHEDULER, but we can't use it at this point.

    when all else fails, Read The Fine Manual
    http://download.oracle.com/docs/cd/E11882_01/appdev.112/e16760/d_job.htm#i1000807
    "WHAT" parameter is supposed to be a PL/SQL procedure; not SQL statement(s)

  • I have repeatedly installed and uninstalled Microsoft Silverlight, I have followed every thing out there and uninstalled from various folders.  It still states the program is there and it won't run.  This is also happening with my coupon printer that word

    I have repeatedly installed and uninstalled Microsoft Silverlight, I have followed every thing out there and uninstalled from various folders.  It still states the program is there and it won't run.  This is also happening with my coupon printer that word

    Copied from a page that helped me:
    I followed someone else's advice and found all the silverlight files in "INVISIBLE FILES".
    In the Finder, choose File > Find or press Command (⌘)-F.
    From the far-left pop-up menu (labeled “Kind”), choose Other.
    In the list of search attributes, select the “File invisible” checkbox, and then click OK.
    In the related menu, choose Invisible Items.
    once loaded go to folder Private
    then to folder VAR
    then folder db
    then folder Receipts
    scroll to any com.microsoft.silverlight item and delete. there are a bunch of them.
    close, restart and install silverlight.

Maybe you are looking for