Error message "Error when scheduling the query(JOB_CLOSE)".

Hi all,
While using query extractor (rscrm_bapi) I am getting error message "Error when scheduling the query(JOB_CLOSE)".
Could you please find what this error is?
Thanks,
Uday.

Hi Uday,
This problem can occur if you changed the query definition.
In this case the query definition would be inconsistent with the existing extract structure.
Certain Meta information is maintained with each extract defined using the RSCRM_BAPI. If the definition of the query is changed and you need to use the same extract table then you need to delete the extract using the report RSCRMBW_DEL_ALL_EXTRACTS selecting the extract you want
to delete.
After this you could use the same table name for any further extract that you need to create.
One caution is that the extract table should not be deleted through any other transaction before you run the report.
Rgds,
Colum

Similar Messages

  • I am getting error message A12E5 when installing the free 30 day trial for InDesign why?

    I am getting error message A12E5 when installing the free 30 day trial for inDesign...don't know why?

    don't know why?
    Neitehr do we. You are not offering any relevant technical info like what computer you are actually on or the exact error message.
    Mylenium

  • Error message FBE60013 when scheduling publication

    In BOXI 3.1 I've a publication including 62 e-mail recipients. When I run this publication as the user who created the publication, the schedules runs successfully and all 62 recipients receive an instance. However, when I run this publication as another user (who is member of the group Administrators), the schedule fails with the following error:
    2009-08-27 09:11:01,173 ERROR [PublishingService:HandlerPool-47] BusinessObjects_PublicationAdminErrorLog_Instance_72800 - [Publication ID # 72800] - Distribution to destination CrystalEnterprise.Smtp (To: xxx) failed. Recipient: bosklo01, Document Scope: 05. Ontbrekende weekstaten : 72844 (Excel) : (AND (IN_LIST Teamnummer "070205" )). (FBE60013)
    As a result, only 30 of the 62 recipients receive their instance.
    Any ideas?
    Many thanks in advance.
    Regards
    Marc

    Hi Marc,
    Any update on this? Were you able to resolve?
    I am having similar issue...trying scheduling the publication to burst to 2 users and it works ok for 1 user but not the other.
    I am getting "Object failed to run due to an error while processing on the Job Server. (FBE60013)" error.
    Thanks.
    Sathish.

  • Why are there CORBA error messages -- COMM_FAILURE when using the orb obj?

    Hi Guys,
    I followed the tutorial http://download.oracle.com/javase/6/docs/technotes/guides/idl/GShome.html
    compiled and run the code. Everything works fine however whenever I use the ORB orb object I get the following message
    both in my Naming Service and the HelloServer output:
    2010-12-10 12:35:46.505 FINE Transport to 127.0.1.1:44100: stream closed on read < 0
    2010-12-10 12:35:46.506 FINE ServerGIOPConnection to 127.0.1.1:44100 (ec4a87): getMessage() -- COMM_FAILURE
    2010-12-10 12:35:46.507 FINE ServerGIOPConnection to 127.0.1.1:44100 (ec4a87): streamClosed()
    2010-12-10 12:35:46.508 FINE ServerGIOPConnection to 127.0.1.1:44100 (ec4a87): close()
    Why is this happening?
    I have also installed jacorb and added it to my class path and run the examples with:
    jaco -Djacorb.config.dir=. -DORBid=HelloClient HelloServer
    ns -Djacorb.naming.ior_filename=/home/zorg/Project/Java/CORBA/NameService/NS_Ref
    jaco -Djacorb.config.dir=. -DORBid=HelloClient HelloClient
    I have included the code from the tutorial for convinience:
    // HelloServer.java
    // Copyright and License
    import HelloApp.*;
    import org.omg.CosNaming.*;
    import org.omg.CosNaming.NamingContextPackage.*;
    import org.omg.CORBA.*;
    import org.omg.PortableServer.*;
    import org.omg.PortableServer.POA;
    import java.util.Properties;
    class HelloImpl extends HelloPOA {
      private ORB orb;
      public void setORB(ORB orb_val) {
        orb = orb_val;
      // implement sayHello() method
      public String sayHello() {
        return "\nHello world !!\n";
      // implement shutdown() method
      public void shutdown() {
        orb.shutdown(false);
    public class HelloServer {
      public static void main(String args[]) {
        try{
          // create and initialize the ORB
          ORB orb = ORB.init(args, null);
          // get reference to rootpoa & activate the POAManager
          POA rootpoa = POAHelper.narrow(orb.resolve_initial_references("RootPOA"));
          rootpoa.the_POAManager().activate();
          // create servant and register it with the ORB
          HelloImpl helloImpl = new HelloImpl();
          helloImpl.setORB(orb);
          // get object reference from the servant
          org.omg.CORBA.Object ref = rootpoa.servant_to_reference(helloImpl);
          Hello href = HelloHelper.narrow(ref);
          // get the root naming context
          org.omg.CORBA.Object objRef =
              orb.resolve_initial_references("NameService");
          // Use NamingContextExt which is part of the Interoperable
          // Naming Service (INS) specification.
          NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
          // bind the Object Reference in Naming
          String name = "Hello";
          NameComponent path[] = ncRef.to_name( name );
          ncRef.rebind(path, href);
          System.out.println("HelloServer ready and waiting ...");
          // wait for invocations from clients
          orb.run();
          catch (Exception e) {
            System.err.println("ERROR: " + e);
            e.printStackTrace(System.out);
          System.out.println("HelloServer Exiting ...");
    // Copyright and License
    import HelloApp.*;
    import org.omg.CosNaming.*;
    import org.omg.CosNaming.NamingContextPackage.*;
    import org.omg.CORBA.*;
    public class HelloClient
      static Hello helloImpl;
      public static void main(String args[])
          try{
            // create and initialize the ORB
            ORB orb = ORB.init(args, null);
            // get the root naming context
            org.omg.CORBA.Object objRef =
                orb.resolve_initial_references("NameService");
            // Use NamingContextExt instead of NamingContext. This is
            // part of the Interoperable naming Service. 
            NamingContextExt ncRef = NamingContextExtHelper.narrow(objRef);
            // resolve the Object Reference in Naming
            String name = "Hello";
            helloImpl = HelloHelper.narrow(ncRef.resolve_str(name));
            System.out.println("Obtained a handle on server object: " + helloImpl);
            System.out.println(helloImpl.sayHello());
            helloImpl.shutdown();
            } catch (Exception e) {
              System.out.println("ERROR : " + e) ;
              e.printStackTrace(System.out);
    }Edited by: 819887 on 10-Dec-2010 04:51
    Edited by: 819887 on 10-Dec-2010 04:58

    Figure out the actual problem is when the naming service is resolving the name on line:
    helloImpl = HelloHelper.narrow(ncRef.resolve_str(name));

  • Some of the songs I have downloaded onto i tunes won't play when I select it to do so.  The error message I get is "The song could not be used because the original file could not be found.  Would you like to locate it?"  How can I get my songs to play?

    Some of the songs I have downloaded into i tunes won't play when I select it to do so.  The error message I get is "The song can not be used because the original file can not be found.  Would you like to locate it?"  When I select yes I'm sent to a screen that has my i tunes library listed.  When I select the song in question I'm asked if I would like to open the song.  When I select this option I get nothing.  The songs I have downloaded must be somewhere because they are listed in my i tunes library and on the screen I've been sent to.  I can't the songs to play however.  This is not true of all of my songs but it is true of quite a few of them.  Actually, one song is too many.    How do I get my music to play that seems to be locked up somewhere in the computer?

    Presuming they're on your computer, right click on them and then follow the prompts to locate hte file on your computer.

  • I downloaded Firefox 4 onto my PowerPC G4 1.67GHz running Mac OSX 10.5.6. When I try to open it I get error message You cannot open the application "Firefox" because it is not supported on this architecture. I can't find my Firefox 3.6.16 I'm on Safari.

    I just want to download Firefox 3.6 again
    I downloaded Firefox 4 onto my PowerPC G4, 1.67GHz running Mac OSX 10.5.6. When I try to open it I get error message You cannot open the application “Firefox” because it is not supported on this architecture.

    Use Tony's suggestion. I am running it right now and it is awesome. I love Mozilla but they basically screwed all of those older Macs over. Come on Mozilla. These Macs still work, and there are plenty of people with them out there.

  • I am trying to install MasterCollection_CS6_LS16. When I click the install file I get this error message: We've encountered the following issues. Installation on case-sensitive volumes is not supported. Please choose a different volume for installation.

    I am trying to install MasterCollection_CS6_LS16. When I double click the install file I get this error message: We've encountered the following issues. Installation on case-sensitive volumes is not supported. Please choose a different volume for installation. What does that mean? How should I proceed?

    Hey iraravitz,
    Could you please let me know what version of OS are working on.
    You might receive this error when you attempt to install on a drive with the HFS+ Case Sensitive file system, which is not supported for installation of Adobe Creative Suite 6.
    So, please try installing on a drive that has been formatted with a supported file system.
    You might refer the KB doc link mentioned below for the same:
    Error "Case-sensitive drives not supported" or similar install error | Mac OS
    Let me know if this helps.
    Regards,
    Anubha

  • My iPod touch 4th gen. Keeps giving me the error message "cannot connect to the app store when I sign in. I can open the app store and browse it but I can't download anything. I have full signal strength with my wi-fi and safari is working perfect.

    My iPod touch 4th gen. Keeps giving me the error message "cannot connect to the app store when I sign in. I can open the app store and browse it but I can't download anything. I have full signal strength with my wi-fi and safari is working perfect. I turned it off and restarted it 3 times now. I have an iPad 2 and the app store works flawlessly with it. What is going on?

    Same here on my lpad2. Can access the web just fine from browsers but cannot install new apps or updates in appl store.  Seeing a few others reporting same issue tonight so likely an apple server issue and staff will notice it in network monitors and fix it...sometime this weekend.
    Rob

  • Firefox 4.0.1 closes with no error message. When I restore the session I get: Well, this is embarrassing. Firefox is having trouble recovering your windows and tabs. This is usually caused by a recently opened web page. What can I do?

    After opening certain websites, pogo, firefox 4.0.1 closes with no error message. When I restore the session I get: Well, this is embarrassing. Firefox is having trouble recovering your windows and tabs. This is usually caused by a recently opened web page.
    I have had this problem before and had to reinstall an earlier version of firefox.
    The error console has a long list of errors, many of them end with: does not implement nsIObserver. Is there a way to send the information on the error console to firefox support?
    Redownloading Firefox 4.0 will fix my problem until I either close firefox or turn off my computer. The problem recurs when I open firefox again.

    See:
    * http://kb.mozillazine.org/Firefox_crashes
    * https://support.mozilla.com/kb/Firefox+crashes
    It is also possible that there is a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/sessionstore.js
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.<br />
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore

  • When I try to update I get an U44M1I210 error message, "Unable to extract the downloaded files" - help please, applies to latest Indesign, Illustrator and Photoshop CC

    When I try to do a CC update I get an U44M1I210 error message, "Update failed - Unable to extract the downloaded files. Press retry to download again. (U44M1I210)" - help please - re-downloading makes no difference, applies to latest Indesign, Illustrator and Photoshop CC, others seemed to update without problems. I can see the disk image files in AAMUpdater folder but they will not open and come up with "couldn't be opened - resource busy" message.

    Yes Jeff, I did all those several times to no avail.
    I've included a small error snippet from two installs here. In Creative Cloud when updating the Apps, all 3 get to 50%, then the failure occurs. Retrying starts at 50% and fails the same way each time.
    This first one is a segment from the Indesign updater - I have always had the all hard drive folders with read and write privileges allowed and I checked again, this is still the case so I do not know why this particular error message is arising. The second snippet if from the Illustrator update.
    08/21/14 09:27:20:522 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Installer Operation: PayloadUninstaller
    08/21/14 09:27:20:522 | [INFO] |  | OOBE | DE |  |  |  | 25152 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*=*
    08/21/14 09:27:20:522 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Session {CB2632B8-D44B-11E3-88A6-77388C8F654B} modify request for AdobeCode: CommonUninstall
    08/21/14 09:27:20:527 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Effective AdobeCode for: CommonUninstall is CommonUninstall
    08/21/14 09:27:20:528 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Payload  8.0.0.15 CommonUninstall: Calling ARKEngine from path /Applications/Utilities/Adobe Application Manager/DECore/DE6/resources
    08/21/14 09:27:20:531 | [INFO] |  | OOBE | DE |  |  |  | 25152 | INSTALLDIR property not found in database
    08/21/14 09:27:20:531 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    08/21/14 09:27:20:531 | [INFO] |  | OOBE | DE |  |  |  | 25152 | UninstallSeq property not found in database
    08/21/14 09:27:20:531 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 1)
    08/21/14 09:27:20:531 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 1)
    08/21/14 09:27:20:531 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 2)
    08/21/14 09:27:20:531 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB/Extensions". Check and correct folder & parent directory permissions and then try again.(Seq 3)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 3)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 4)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 4)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0". Check and correct folder & parent directory permissions and then try again.(Seq 5)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 5)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 6)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 6)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 7)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 7)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 8)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 8)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP/extensions". Check and correct folder & parent directory permissions and then try again.(Seq 9)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 9)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP". Check and correct folder & parent directory permissions and then try again.(Seq 10)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 10)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 11)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 11)
    08/21/14 09:27:20:532 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 12)
    08/21/14 09:27:20:532 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 12)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 13)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 13)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014/Plug-Ins". Check and correct folder & parent directory permissions and then try again.(Seq 14)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 14)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 15)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 15)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized/Extensions.localized". Check and correct folder & parent directory permissions and then try again.(Seq 16)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 16)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized". Check and correct folder & parent directory permissions and then try again.(Seq 17)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 17)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 18)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 18)
    08/21/14 09:27:20:533 | [ERROR] |  | OOBE | DE |  |  |  | 25152 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 19)
    08/21/14 09:27:20:533 | [WARN] |  | OOBE | DE |  |  |  | 25152 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 19)
    08/21/14 09:27:20:533 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    08/21/14 09:27:20:533 | [INFO] |  | OOBE | DE |  |  |  | 25152 | Physical payload uninstall result:0
    08/21/14 09:27:20:623 | [INFO] |  | OOBE | DE |  |  |  | 24018 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0 =*=*=*=*=*=*=*=*=*=*=*=*=*
    08/21/14 09:27:20:623 | [INFO] |  | OOBE | DE |  |  |  | 24018 | :: END TIMER :: [Payload Operation :CommonUninstall] took 101 milliseconds (0.101 seconds) DTR = 79.2079 KBPS (0.0773515 MBPS)
    08/21/14 09:27:20:624 | [INFO] |  | OOBE | DE |  |  |  | 24018 | User specified overrideFile:
    08/21/14 09:27:20:625 | [INFO] |  | OOBE | DE |  |  |  | 24018 | The csu inventory was not updated for payload  8.0.0.15 CommonUninstall, value of local var is -1
    08/21/14 09:27:20:625 | [INFO] |  | OOBE | DE |  |  |  | 24018 | Calling the ROLLBACK custom action code for pre-remove for payload  8.0.0.15 CommonUninstall
    08/21/14 09:27:20:698 | [INFO] |  | OOBE | DE |  |  |  | 24018 | No operation.  We're done:
    0/22/14 11:18:46:937 | [INFO] |  | OOBE | DE |  |  |  | 77654 | Beginning un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    10/22/14 11:18:46:938 | [INFO] |  | OOBE | DE |  |  |  | 77654 | UninstallSeq property not found in database
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Users/MikeTessersComputer/Library/Preferences/Adobe/dynamiclinkmediaserver". Check and correct folder & parent directory permissions and then try again.(Seq 1)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 1)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Users/MikeTessersComputer/Library/Preferences/Adobe InDesign". Check and correct folder & parent directory permissions and then try again.(Seq 2)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 2)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 3)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 3)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Startup Scripts CC/Adobe Photoshop". Check and correct folder & parent directory permissions and then try again.(Seq 4)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 4)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 9.0/en_US/Extensions". Check and correct folder & parent directory permissions and then try again.(Seq 5)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 5)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 9.0/en_US". Check and correct folder & parent directory permissions and then try again.(Seq 6)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 6)
    10/22/14 11:18:46:938 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 9.0". Check and correct folder & parent directory permissions and then try again.(Seq 7)
    10/22/14 11:18:46:938 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 7)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB/Extensions". Check and correct folder & parent directory permissions and then try again.(Seq 8)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 8)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 9)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 9)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign/Version 10.0". Check and correct folder & parent directory permissions and then try again.(Seq 10)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 10)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/InDesign". Check and correct folder & parent directory permissions and then try again.(Seq 11)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 11)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/ro_RO". Check and correct folder & parent directory permissions and then try again.(Seq 12)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 12)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/en_GB". Check and correct folder & parent directory permissions and then try again.(Seq 13)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 13)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/HelpCfg/el_GR". Check and correct folder & parent directory permissions and then try again.(Seq 14)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 14)
    10/22/14 11:18:46:939 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 15)
    10/22/14 11:18:46:939 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 15)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEPServiceManager4/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 16)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 16)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP/extensions". Check and correct folder & parent directory permissions and then try again.(Seq 17)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 17)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/CEP". Check and correct folder & parent directory permissions and then try again.(Seq 18)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 18)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe/AdobePatchFiles". Check and correct folder & parent directory permissions and then try again.(Seq 19)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 19)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Library/Application Support/Adobe/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 20)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 20)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Photoshop CC 2014/Plug-ins". Check and correct folder & parent directory permissions and then try again.(Seq 21)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 21)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Photoshop CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 22)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 22)
    10/22/14 11:18:46:940 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014/Plug-Ins". Check and correct folder & parent directory permissions and then try again.(Seq 23)
    10/22/14 11:18:46:940 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 23)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014/Plug-Ins". Check and correct folder & parent directory permissions and then try again.(Seq 24)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 24)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 25)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 25)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe InDesign CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 26)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 26)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized/Extensions.localized". Check and correct folder & parent directory permissions and then try again.(Seq 27)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 27)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized/Extensions.localized". Check and correct folder & parent directory permissions and then try again.(Seq 28)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 28)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized". Check and correct folder & parent directory permissions and then try again.(Seq 29)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 29)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014/Plug-ins.localized". Check and correct folder & parent directory permissions and then try again.(Seq 30)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 30)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 31)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 31)
    10/22/14 11:18:46:941 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe Illustrator CC 2014". Check and correct folder & parent directory permissions and then try again.(Seq 32)
    10/22/14 11:18:46:941 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 32)
    10/22/14 11:18:46:942 | [ERROR] |  | OOBE | DE |  |  |  | 77654 | DF037: Unable to delete directory "/Applications/Adobe". Check and correct folder & parent directory permissions and then try again.(Seq 33)
    10/22/14 11:18:46:942 | [WARN] |  | OOBE | DE |  |  |  | 77654 | DW063: Command ARKDeleteDirectoryCommand failed.(Seq 33)
    10/22/14 11:18:46:942 | [INFO] |  | OOBE | DE |  |  |  | 77654 | Completing un-installation for payload at /Library/Application Support/Adobe/Uninstall/CommonUninstall.db
    10/22/14 11:18:46:942 | [INFO] |  | OOBE | DE |  |  |  | 77654 | Physical payload uninstall result:0
    10/22/14 11:18:47:030 | [INFO] |  | OOBE | DE |  |  |  | 77365 | *=*=*=*=*=*=*=*=*=*=*=*=*=*=*=* Operation complete. Setting status: 0

  • I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview

    I tried to rename a file, it gave me an error message (can't remember the number - 43??) and then the file disappeared from the original folder. When I do a search, the file comes up under the new name, but it does not show a path, and even though preview shows the contents, I can't open the document (Powerpoint) and I can't move the document. I tried "Copy" and paste but it doesn't work. I tried "Share" with Airdrop and iChat, but the file is inaccessible. When i try to rename the file, it says the filename is too long.
    When I try to open it, it says the alias is not good, and asks if I want to fix the alias. I'm afraid to do that and lose all access to this document.
    Right now, it feels like a ghost document - it is on the computer intact, but it is in an undisclosed location and inaccessible.
    Please help!!

    I was able to resolve this by repairing permissions, even though no permissions error was listed specifically for that file.
    I could also have recovered it through Time Machine, but I'm interested in knowing how not to have this happen again!
    I was afraid of rebooting and possibly losing track even of the ghost.
    I did not try EasyFind - I'll keep that in mind next time.
    Thanks for all the comments.

  • I need help! when I am importing my NEF files from my D3300 camera into lightroom 5 and try to use the "copy as DNG" button I always get an error message saying that "saying the file is not recognized by the raw format support"

    I need help! when I am importing my NEF Raw files from my D3300 camera into lightroom 5 and try to use the "copy as DNG" button I always get an error message saying that "saying the file is not recognized by the raw format support". The whole purpose of that button is so that the file can be recognized... How can I make the "copy as DNG" button work as it is supposed too?? Thank you

    Thank you for responding. So I essentially will never be able to use that button in lightroom 5? do I need to get LR 6? Will there ever be an update for LR 5 that will enable me to use it?
    Does DNG Converter work within LR or do I have to upload pictures to my computer and then make a second copy in DNG format. and then go into LR and use them?
    Thank you @dj_paige

  • I updated my Itunes to the latest version(11.1.4) and it isn't running on my laptop. The current OS is a W7 ultimate 64bits, when i try to run it, opens a message box with the following error message: error 7 (windows error 1114) . What should I do?

    I updated my Itunes to the latest version(11.1.4) and it isn't running on my laptop. The current OS is a W7 ultimate 64bits, when i try to run it, opens a message box with the following error message: error 7 (windows error 1114) . What should I do?

    Try the following user tip:
    Troubleshooting issues with iTunes for Windows updates

  • After having upgraded my MacBook to Snow Leopard, the following error message pops when I try to access iTunes: "The file iTunes Library.itl cannot be read because it was created by a new version of iTunes".  I cannot now access iTunes.  How can I resolve

    After having upgraded my MacBook to Snow Leopard, the following error message pops when I try to access iTunes: "The file iTunes Library.itl cannot be read because it was created by a new version of iTunes".  So, now after the upgrade, I cannot access iTunes.  How do I resolve this??
    Thanks

    zepel has it, but perhaps some more detail will help.
    Empty/corrupt library after upgrade/crash
    Hopefully it's not been too long since you last upgraded iTunes, in fact if you get an empty/incomplete library immediately after upgrading then with the following steps you shouldn't lose a thing or need to do any further housekeeping. In the Previous iTunes Libraries folder should be a number of dated iTunes Library files. Take the most recent of these and copy it into the iTunes folder. Rename iTunes Library.itl as iTunes Library (Corrupt).itl and then rename the restored file as iTunes Library.itl. Start iTunes. Should all be good, bar any recent additions to or deletions from your library.
    See iTunes Folder Watch for a tool to catch up with any changes since the backup file was created.
    When you get it all working make a backup!
    tt2

  • When I try to reformat there is an error message about configurations with the pointing device

    When I try to reformat there is an error message about configurations with the pointing device
    I am not sure I am on the correct section in the support area for Lenovo.
    I had a mouse issue. It was unable to read the mouse. Now the mouse is working and it is initialized.
    I have no idea why.
    There is an error message saying that I should press F 1or F2. I pressed down F 1 and I tried to work with it and I enabled the mouse or I tried. The mouse is working fine but the computer will not recover completely the way it used to.
    It is very confusing. When I shut down and restart there is an message that was not there before about the pointing device. Also the recovering operation never asked me for disks. Now it is doing that. I have disks but this is all confusing. I just want the computer to be the way it was. It is working fine except for booting up and the messages.

    Hi marissa, welcome to the forums,
    you may or may not be in the right place, but it would certainly help members to help you if you could post exactly which Lenovo system; notebook / computer, you have and which operating system is installed on it.
    Thanks in advance
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

Maybe you are looking for

  • To get the values from func. module

    c i have used a func. module to calculate the values of date , i wrote a subroutine i want the values of this to be dispalyed on the list... now how do i get them to the list output, i mean how do i assign to the fieldcatalog????? thanks, CAPC

  • "Licensing for this product has stopped working" message appears each time I open Acrobat Pro.

    "Licensing for this product has stopped working" message appears each time I open Acrobat Pro.  I am at a loss as to how to fix the problem.  Can anyone provide some insights?

  • APPLE TV video set to incorrect value

    I chose the HD setting on my apple TV and now I can not see anything. How do I get this back to normal? I know that I should not have selected this setting, but it happened. I hope someone can help. Steve

  • Migration of Dreamweaver and licensing

    An easy question (I hope), A few years ago I bought Dreamweaver CS4 student licensing and installed it on 2 computers. I just bought a new iMac and migrated everything. When trying to open CS$ the error message 150:30 came up indicating, I presume, t

  • Where used

    i have 500 queries in production. i have characterstics like BUSS ORG and PNL in some of these queries. i want to know all those queries from this list of 500 queries which use BUSS ORG and PNL in their definition. is there a quick way of doing it. t