BO XI 3.1 Re-schedule failed scheduling job

Hi...
I am not sure if I am just unable to find matching resources, but maybe someone can just point in the right direction.
In a custom application, we have a scheduling overview, where we imitate some of the CMC behaviour.
Now I need to add a feature to restart failed scheduling jobs.
Some lines of pseudocode or a hint where I can find samples, documentation or anything will help.
Any help is appreciated.
Regards
Jan

Hi Ryan,
Thanks for your reply. I have followed the same sequence but somehow the code is not functioning as expected.
<%@ page import = "com.crystaldecisions.sdk.occa.infostore.*" %> 
<%@ page import = "com.crystaldecisions.sdk.framework.CrystalEnterprise" %> 
<%@ page import = "com.crystaldecisions.sdk.exception.SDKException" %> 
<%@ page import = "com.crystaldecisions.sdk.framework.IEnterpriseSession" %> 
<% 
    // logon information 
    String boCmsName  = "***" ; 
    String boUsername = "***" ; 
    String boPassword = "***" ; 
    String boAuthType = "secEnterprise" ; 
          // report 
    String reportName = "SDK_TEST" ; 
          // logon 
    IEnterpriseSession ceSession = CrystalEnterprise.getSessionMgr().logon( boUsername, boPassword, boCmsName, boAuthType ) ; 
    IInfoStore         oInfoStore = (IInfoStore)ceSession.getService( "", "InfoStore" ) ; 
    IInfoObjects oInfoObjects = oInfoStore.query("select top 1 * from ci_infoobjects where SI_NAME='" + reportName + "' " );
    IInfoObject oI = (IInfoObject) oInfoObjects.get(0);
          IInfoObject oSched = (IInfoObject) oInfoObjects.get(0);
           oSched.getSchedulingInfo().setRightNow(true);
           oSched.getSchedulingInfo().setType(CeScheduleType.ONCE);                    oInfoStore.schedule(oInfoObjects);
     %>
What is happening here is, report is getting scheduled but it is not sending mail/attachment unlike the original schedule instance.
Below are the details of the rescheduled instance
Quote:
Title: SDK_TEST
Document Type: Web Intelligence Report
Status Success
Destination: Default
Owner: ****
Creation Time: 5/15/2014 1:53 AM
Start Time: 5/15/2014 1:53 AM
End Time: 5/15/2014 1:53 AM
Duration: 3 sec
Server Used: mdwnew.AdaptiveJobServer
PID: 27131966
Parent Object Path: **********
Remote Instance in Federated Cluster: No
Expiry: 5/15/2024 1:53 AM
Formats: Web Intelligence
Now my doubt is can we reschedule the report directly or we need to get all the scheduling info like from/to/events etc and then apply them for the new schedule? I think it will be a tedious job as it could be SMTP or FTP or inbox or anything.

Similar Messages

  • DBACockpit Scheduling Failed but Job Finished

    Folks,
    I'm having some unusual activity on the DBA Cockpit. Each hour I have 4 jobs running (15 minutely trans log backups), and on the whole they work fine. However, randomly, I get scheduling failures.
    A successful run looks like...
    Whereas a failure looks like this...
    with the next job being....
    The backup gets done, but I get the Scheduling failure and the subsequent success tab. In some ways it's not an issue as the backup is running, but I'm confused as to why it's happening.
    Any ideas?
    Thanks
    Mike

    Hi Mike,
    Did you happen to apply all the latest corrections for dba_cockpit available for your SAP system release.
    Regards,
    Deepak Kori

  • Report failed schedule instances

    Hi,
    Is there a way to generate a report to show the failed schedules in a given time scale (e.g. in last day or week)? My reason for wanting on is that I do not wish to log in to the BOXI CMC every week or day, goto the instances page, enter the criteria and then view the list. I would prefer that the list was sent to me so that I only need logon if there is a problem.
    I'm using BOXI 3.1 SP2 FP2.5 if this makes any difference.
    Thanks,
    Mike

    Hi Mike,
    I have a similar report scheduled to me every morning. Something similar might work for you.
    I use the following result Objects (for a Webi report):
    Action Name from Actions
    Server Kind from Server Information
    Object Name from Actions/ Action Details/
    Action Time from Actions/Action Time
    Action Duration from Actions
    Action Type from Actions
    Action Type Details from Actions/Action Type
    User Name from Actions
    Action ID from Actions
    The Query filters are:
    Action Name ID In List : 327681;327682
    You would also need to restrict Action Time. I use objects in the universe to run the report for data within 24 hrs of 6AM each weekday.
    I use the following report filters:
    Action Type In List : Object Folder Path
    This gives the folder in with the report resides.
    Other things to note:
    Object Name is equivalent to the report name.
    User Name is the user that ran the report.
    Action Name is the scheduling status (Scheduling Failed/ Scheduling Succeeded)
    Action Duration is number of seconds the report took to run.
    Let me know if you need any more information.
    Best,
    Srinivas

  • Sending an email to the user if the WEBi scheduling failed in CMC

    Hello Everyone,
    Current scenario :
    I am scheduling WEBi report through CMC and the report is going to end user email as an excel attachment.
    Desired Functionality :
    What happens is if the scheduling fails due to some reason. The email does not go to the end user on a particular date and then he complaints.
    What i need here an email sending option that if the WEBi scheduling has been failed in CMC an email should go to the user saying : " The WEBi scheduling has failed. The team is working on it " . (This is just a sample message)
    So the idea is to send an email to the user when the WEBi scheduling fails in the CMC. How to achieve this ?
    Regards,
    Ashutosh Singh

    Hi Ashutosh,
    You can send an alert email to a group when the schedule fails to run by choosing the "A job has failed to run" option under notification.
    You can see this option only if you schedule the report through CMC.
    Regards
    Sunil

  • Error message if job scheduling fails.

    Hi,
    I want to catch the message if scheduling fails and send to an email id.
    can this be done?
    how can we do this?
    thanks in advance
    Vikash.

    Hi Vishal,
    I can elaborate on that. I dont have a sample code with me.
    Steps:
    1) Consider the job which is scheduled with the help of SM36 as Job_A
    2) Now, develop one program which needs to be incorporated as Job_B. This Job_B moniors and send whether the first job has triggered successfully, running or not.
        a) Now, to develop the program I would request you to take a look at the table TBTCO first.
        b) This table will have details of all the jobs that were scheduled in the system.
        c) Create a work area of the type TBTCO structure and try to fetch the details of the job which you 
            have triggered already.
        d) Now, check the value of the status of the job in the work area.
        e) if it is active/ready/released, then dont take any action.
         f) if it is cancelled or failed, then try to implement the logic of sending an e-mail with the contents
            saying the job has failed to run.
    3) Note: Remember to run this monitoring job Job_B after sometime the Job_A has started.
    Hope this much information would pull your mind to incorporate it easily
    Thanks,
    Babu Kilari

  • Job scheduling failed because the user has no permission to access this rep

    Hi. I've OBIP 10.1.3.4.1.
    When I launch a print with the scheduler I see this error:
    oracle.apps.xdo.servlet.scheduler.ProcessingException: Job scheduling failed because the user has no permission to access this report. [REPORT_URL]=[folderreport/report/report.xdo], [USERNAME]=[administrator]
         at oracle.apps.xdo.servlet.ui.scheduler.SchedulerServlet.scheduleJob(SchedulerServlet.java:1140)
         at oracle.apps.xdo.servlet.ui.scheduler.SchedulerServlet.doPost(SchedulerServlet.java:295)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:763)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.evermind.server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java:64)
         at oracle.apps.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:100)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:621)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:368)
         at com.evermind.server.http.HttpRequestHandler.doProcessRequest(HttpRequestHandler.java:866)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:448)
         at com.evermind.server.http.HttpRequestHandler.serveOneRequest(HttpRequestHandler.java:216)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:117)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:110)
         at oracle.oc4j.network.ServerSocketReadHandler$SafeRunnable.run(ServerSocketReadHandler.java:260)
         at oracle.oc4j.network.ServerSocketAcceptHandler.procClientSocket(ServerSocketAcceptHandler.java:239)
         at oracle.oc4j.network.ServerSocketAcceptHandler.access$700(ServerSocketAcceptHandler.java:34)
         at oracle.oc4j.network.ServerSocketAcceptHandler$AcceptHandlerHorse.run(ServerSocketAcceptHandler.java:880)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:303)
         at java.lang.Thread.run(Thread.java:595)
    In this env. I've a LDAP Security Model and all the report and all the users work.

    Please check whether you have assigned below responsibility to the user trying to schedule report.
    XMLP_SCHEDULER

  • Webi Report Schedule failing in BI Launchpad

    Hi,
    I am wondering if anyone has come across this error message when trying to schedule a webi report in BI Launchpad.
    Firstly, the webi report refreshes successfully in BI Launchpad. The source for the Webi report is an OLAP universe that was migrated from a 3.1 environment into BI 4.0.
    The error message occurring when scheduling is:
    'while trying to invoke the method org.eclipse.emf.ecore.EObject.eClass() of an object loaded from local variable 'eObject' '
    I haven't been able to find any documentation on this error message on a failed scheduled.
    If anyone has an idea what might be causing this I would appreciate the help.
    Many thanks,
    Ainsley

    Hi,
    - Does your souce BEx have SAP Variables coming through to the OLAP universe as Filters?
    - Does your WebI document's dataprovider have filters defined as Prompts in the query panel ?
    - or, I wonder if 'local variable' may refer to a report-level variable ? i doubt it. i imaging it's the SAP VAR.
    I know that these 2 types of prompts have been troublesome on occasions with scheduling.
    Please check Note 1602665 - SAP BusinessObjects 4.0 SP02 Patch 2.6 Release Notes
    and refer to the fixed issues .pdf attached
    there are a number 3 / 4 corrections for scheduling webi with prompts ontop of bw
    Regards,
    H

  • Schedule failed launching in Ultra Search

    I am trying to launch a crawler immediately from the Schedule screen after created Ultra Search instance and file data source. The status is showing "Launching". After a while, I click Refresh status, the status is showing "Failed". Anyone knows why schedule failed launching? Is there any error log file that I can check to find out why it failed?
    Thanks in advance.

    Liya
    The log file for the crawler schedule should be explicitly listed in the information for the schedule. Please check the information for that schedule.
    This log file will be located in the log directory that you've specified in the "crawler" tab.
    Please locate the log file and let us know what you see in that.
    thanks
    edward

  • SSIS package works in development environment but fails when job scheduler executes, file path invalid

    SIS package works in development environment but fails when job scheduler executes, file path invalid
    Relatively simple package to get OLE-DB connection to MS FoxPro 9.0 DB
    The failure in the job log states that the path is invalid its a network path (\\192.168.1.xxx\foldername) this has been run several ways with the remote computer being mapped as a network drive and through the \\ notation described above.
    Thinking it was a security issue between the SQL agent account and my account I tested by subsitution myself as a proxy account for the agent when running this job, again same result failed on network path.
    One issue I see is that the remote computer is running Server 2000 (legacy software incompatable with newer versions) 
    Is it possible that this is a security issue, since if i understand correctly the current MS domain security model didn't exist until Server 2003.

    Hi REIData,
    Have you got the issue resolved? Based on your description, please make sure the target folder is shared properly. If the computer on which the SQL Server Agent job runs doesn’t join the domain as the server that hosts the shared folder, you have to share
    the folder with everyone by adding “Everyone” to the people list on the File Sharing page of the folder and assign "Read/Write" permission to it.
    Regards,
    Mike Yin
    TechNet Community Support

  • BO XI 3.1 - scheduling fails for locked PDF files

    Hi,
    I have scheduled reports in BO XI 3.1 and instances are stored as PDF files on the BO server.
    Issue I am facing : During the schedule time (daily morning), if the PDF file has been kept open by some user, the schedule fails saying the file is locked by someone else.
    I am thinking of writing some scripts (.bat file) to kill the session (file open by the user) and on success of this script the BO scheduler runs.
    But am wondering if there is anything in CMC/ Infoview where in we can restrict the access levels to just read and not write to the users ?
    Please advice.
    Thanks,
    Ash

    adding place holders to give different name to the PDF file is ruled out , as the users want the same name and only one copy of the file should be present at a particular time.
    As suggested by Tim -
    If we use a bat file to copy the file to another location (viewing location), the file can be overwritten in the original location but the bat file can not overwrite the PDF in viewing location (if the PDF is opened, during the file copy from original folder to viewing folder)
    PDF files are stored in the BOBJ repository
    Any other options ?
    Thanks,
    Ash

  • Scheduling failed with SXPG_COMMAND_EXECUTION

    Dear Experts,
    From last 2 days onwards my Backup is getting Scheduling Failed error, i have checked in Job log its showing the below message.
    SXPG_COMMAND_EXECUTE failed for BRARCHIVE - Reason: x_error
    Job cancelled after system exception ERROR_MESSAGE
    also i have checked at os level in sapackup directory log it showing that
    "Execution of BRARCHIVE finished with return code 3"
    So What could be the reason i am getting this message and help me needfully
    Regards
    Chandra B.

    Hi,
    If your CI & DB are on different host then first check SAPXPG destination is working fine or not using tcode SM59.(TCP/IP-->SAPXPG_DBDEST_<DBHOSTNAME>.). If it is failing the update the rfc destination with correct inputs & check.
    If you have scheduled your Archival backup using DB13 then this issue occurs(mosty after 30-40 days later after scheduling) If you schedule this form OS level this issue wont come. I have came across same issue & I tried by deleting old job & scheduled it again with DB13 & cds option.
    Please try the same & let us know.
    Thanks
    Sushil

  • Online Backup Failed (Status Its shows Scheduling failed)

    Dear all ,
    OS AIX , DB Oracle , SAP ECC6.0 , Tivoli Storage Manager
    Scheduled  Online Backups are  failed  (Backups are fired through DB13)
    JOB Status : Scheduling failed
    Job Log:
    02.12.2009     17:00:01     Job started
    02.12.2009     17:00:01     Step 001 started (program RSDBAJOB, variant &0000000000657, user ID BASIS)
    02.12.2009     17:00:01     No application server found on database host - rsh/gateway will be used
    02.12.2009     17:00:01     Execute logical command BRBACKUP On host PRODORADB
    02.12.2009     17:00:01     Parameters:-u / -jid ALLOG20091201170000 -c force -t online -m all -p initIRPoffsite.sap -a -c force -p initIRP
    02.12.2009     17:00:01     offsite.sap -cds
    02.12.2009     17:01:01     SXPG_STEP_XPG_START: is_local_host: rc = 403
    02.12.2009     17:01:01     SXPG_STEP_XPG_START: host = PRODORADB
    02.12.2009     17:01:01     SXPG_STEP_XPG_START: is_local_r3_host: rc = 802
    02.12.2009     17:01:01     SXPG_STEP_XPG_START: RFC_TCPIP_CONNECTION_OPEN: rc = 1003
    02.12.2009     17:01:01     SXPG_STEP_COMMAND_START: SXPG_STEP_XPG_START returned: 1.003
    02.12.2009     17:01:01     SXPG_COMMAND_EXECUTE(LONG)
    02.12.2009     17:01:01     <timestamp> = 20091202170101
    02.12.2009     17:01:01     COMMANDNAME = BRBACKUP
    02.12.2009     17:01:01     ADDITIONAL_PARAMETERS =
    02.12.2009     17:01:01     -u / -jid ALLOG20091201170000 -c force -t online -
    02.12.2009     17:01:01     m all -p initIRPoffsite.sap -a -c force -p initIRP
    02.12.2009     17:01:01     offsite.sap -cds
    02.12.2009     17:01:01     LONG_PARAMS
    02.12.2009     17:01:01     OPERATINGSYSTEM = ANYOS
    02.12.2009     17:01:01     TARGETSYSTEM = PRODORADB
    02.12.2009     17:01:01     DESTINATION
    02.12.2009     17:01:01     SY-SUBRC = 1003
    02.12.2009     17:01:01     SXPG_COMMAND_EXECUTE failed for BRBACKUP - Reason: program_start_error: For More Information, See SYS
    02.12.2009     17:01:01     Job cancelled after system exception ERROR_MESSAGE
    Note :
    when i execute immediately or through Command line  backup  is going fine
    but when i scheduling  backup it was Cancelled  (Status shows Schudling Failed)
    pls give me suggestion
    sathessh

    Dear Yoganand.V
    thanks for your immediate response
    and still i am facing this issue
    the Backups are triggered from DB13 and Scheduled from Central Instance not Application Server and Auto Script is running at OS level and pls look FINISHED BACKUP LOG for your Reference
    08.12.2009     17:50:18     Job started
    08.12.2009     17:50:18     Step 001 started (program RSDBAJOB, variant &0000000000717, user ID S2K_BASIS)
    08.12.2009     17:50:18     No application server found on database host - rsh/gateway will be used
    08.12.2009     17:50:18     Execute logical command BRBACKUP On host PRODORADB
    08.12.2009     17:50:18     Parameters:-u / -jid ALLOG20091208175017 -c force -t online -m all -p initIRPdaily.sap -a -c force -p initIRPda
    08.12.2009     17:50:18     ily.sap -cds
    08.12.2009     18:29:23     BR0051I BRBACKUP 7.00 (34)
    08.12.2009     18:29:23     BR0055I Start of database backup: becbwhwk.anf 2009-12-08 17.50.18
    08.12.2009     18:29:23     BR0484I BRBACKUP log file: /oracle/IRP/sapbackup/becbwhwk.anf
    08.12.2009     18:29:23     BR0477I Oracle pfile /oracle/IRP/102_64/dbs/initIRP.ora created from spfile /oracle/IRP/102_64/dbs/spfileIRP.ora
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     BR0280I BRBACKUP time stamp: 2009-12-08 17.50.19
    08.12.2009     18:29:23     BR0319I Control file copy created: /oracle/IRP/sapbackup/cntrlIRP.dbf 15122432
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     BR0280I BRBACKUP time stamp: 2009-12-08 17.50.20
    08.12.2009     18:29:23     BR0057I Backup of database: IRP
    08.12.2009     18:29:23     BR0058I BRBACKUP action ID: becbwhwk
    08.12.2009     18:29:23     BR0059I BRBACKUP function ID: anf
    08.12.2009     18:29:23     BR0110I Backup mode: ALL
    08.12.2009     18:29:23     BR0077I Database file for backup: /oracle/IRP/sapbackup/cntrlIRP.dbf
    08.12.2009     18:29:23     BR0061I 42 files found for backup, total size 141794.742 MB
    08.12.2009     18:29:23     BR0143I Backup type: online
    08.12.2009     18:29:23     BR0130I Backup device type: util_file_online
    08.12.2009     18:29:23     BR0109I Files will be saved by backup utility
    08.12.2009     18:29:23     BR0142I Files will be switched to backup status during the backup
    08.12.2009     18:29:23     BR0289I BRARCHIVE will be started at the end of processing
    08.12.2009     18:29:23     BR0134I Unattended mode with 'force' active - no operator confirmation allowed
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     BR0280I BRBACKUP time stamp: 2009-12-08 17.50.20
    08.12.2009     18:29:23     BR0229I Calling backup utility with function 'backup'...
    08.12.2009     18:29:23     BR0278I Command output of '/usr/sap/IRP/SYS/exe/run/backint -u IRP -f backup -i /oracle/IRP/sapbackup/.becbwhwk.lst -t file_onli
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     Data Protection for SAP(R)
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     Interface between BR*Tools and Tivoli Storage Manager
    08.12.2009     18:29:23     - Version 5, Release 5, Modification0.0  for AIX LF 64-bit -
    08.12.2009     18:29:23     Build: 316B  compiled on Oct 23 2007
    08.12.2009     18:29:23     (c) Copyright IBM Corporation, 1996, 2007, All Rights Reserved.
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     BKI2027I: Using TSM-API version 5.5.1.0 (compiledwith 5.3.0.0).
    08.12.2009     18:29:23     BKI2000I: Successfully connected to ProLE on porttdpr3ora64.
    08.12.2009     18:29:23     BKI0005I: Start of program at: Tue Dec  8 17:50:20 IST 2009 .
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     -- Parameters --
    08.12.2009     18:29:23     Input File            : /oracle/IRP/sapbackup/.becbwhwk.lst
    08.12.2009     18:29:23     Profile               : /oracle/IRP/102_64/dbs/initIRPdaily.utl
    08.12.2009     18:29:23     Configfile            : /oracle/IRP/102_64/dbs/initIRP.bki
    08.12.2009     18:29:23     Manual sorting file   : disabled
    08.12.2009     18:29:23     Tracefile             : disabled
    08.12.2009     18:29:23     Traceflags            : disabled
    08.12.2009     18:29:23     Parallel sessions     : 1
    08.12.2009     18:29:23     Multiplexed files     : 1
    08.12.2009     18:29:23     RL compression        : 0
    08.12.2009     18:29:23     Exit on error         : disabled
    08.12.2009     18:29:23     BATCH                 : enabled
    08.12.2009     18:29:23     Buffer size           : 131072
    08.12.2009     18:29:23     Buffer Copy Mode      : SIMPLE
    08.12.2009     18:29:23     Redologcopies         : disabled
    08.12.2009     18:29:23     Versioning            : enabled
    08.12.2009     18:29:23     Current Version      : 581
    08.12.2009     18:29:23     Versions to keep     : 6
    08.12.2009     18:29:23     Delete Versions      : <= 575
    08.12.2009     18:29:23     Backup Type           : file_online
    08.12.2009     18:29:23     TSM log server        : disabled
    08.12.2009     18:29:23     TSM server            : [email protected] with 2 sessions configured, using 1 session
    08.12.2009     18:29:23     TSM client node      : PRODORADB_TDP
    08.12.2009     18:29:23     Days for backup      : Sun Mon Tue Wed Thu Fri Sat
    08.12.2009     18:29:23     Backup mgmt class    : DAILYMGMTCLASS
    08.12.2009     18:29:23     Archiv mgmt class    : DAILYMGMTCLASS
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     BR0280I BRBACKUP time stamp: 2009-12-08 18.24.44
    08.12.2009     18:29:23     BR0232I 8 of 8 files saved by backup utility
    08.12.2009     18:29:23     BR0230I Backup utility called successfully
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     BR0056I End of database backup: becbwhwk.anf 2009-12-08 18.24.44
    08.12.2009     18:29:23     BR0280I BRBACKUP time stamp: 2009-12-08 18.24.44
    08.12.2009     18:29:23     BR0052I BRBACKUP completed successfully
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     BR0280I BRBACKUP time stamp: 2009-12-08 18.24.44
    08.12.2009     18:29:23     BR0291I BRARCHIVE will be started with options '-U -jid ALLOG20091208175017 -d util_file -c force -p initIRPdaily.sap -cds'
    08.12.2009     18:29:23     
    08.12.2009     18:29:23     BR0280I BRBACKUP time stamp: 2009-12-08 18.29.23
    08.12.2009     18:29:23     BR0292I Execution of BRARCHIVE finished with return code 0
    08.12.2009     18:29:23     Job finished
    regards

  • Scheduling Failed

    HI,
    We have encountered a problem. Our Database is Oracle and Online+redolog backup has been scheduled daily. Jobs starts at 00.05 AM from Indian time and completed at 09.00AM. But two days ago the job has not started and we are getting red in DB13, when i click to see the log, i am getting only a message Scheduling Failed, and there is not any log to find why Scheduling failed. Its already scheduled from a long time and it was running properly, and today again the same message we are getting. What i feel that there must be some resource un avaliablity that's why the scheduling is failed. But how to find out the cause.
    I have verified all the dev_w* files there is no information, Can anyone help me to find out the cause of this problem. We are on ECC 6.0 and Oracle 10.2.0.2.0
    Regards,
    Subhash

    Dear Subhash,
    I had faced the same problem with SAP on DB6.[SAP Note 1242278 - DB6: Status 'Scheduling failed' in planning calendar|https://websmp130.sap-ag.de/sap(bD1lbiZjPTAwMQ==)/bc/bsp/spn/sapnotes/index2.htm?numm=1242278] ? After Implementing this SAP Note, in my case, the same problem was resolved.
    Regards,
    Bhavik G. Shroff
    Edited by: Bhavik G. Shroff on Nov 4, 2009 7:32 PM
    Edited by: Bhavik G. Shroff on Nov 4, 2009 7:34 PM

  • Whole database offline + redo log backup  Scheduling failed

    Hi Experts,
             In DB13 I have the following Issue,  Whole database offline + redo log backup  Scheduling failed.
    How to solve this.

    Hi,
            Below is the Log details,
    BR0120I Control files
    File                                                Size   Id.      Device  Link    Type
    /oracle/PRD/origlogA/cntrl/cntlrPRD.dbf         13975552    0      5578783  NOLINK  FILE
    /oracle/PRD/origlogB/cntrl/cntrlPRD.dbf         13975552    0      5578784  NOLINK  FILE
    /oracle/PRD/sapdata1/cntrl/cntrlPRD.dbf         13975552    0      5578772  NOLINK  FILE
    BR0616I Tablespaces in table TSORA for SAP owner SAPSR3:
    PSAPSR3, PSAPSR3700, PSAPSR3USR
    BR0227E Not enough disk space in /test123/PRDBK for backup, missing at least 149478.274 MB
    BR0056I End of database backup: behzgxph.afd 2012-02-28 03.05.40
    BR0280I BRBACKUP time stamp: 2012-02-28 03.05.40
    BR0054I BRBACKUP terminated with errors
    BR0280I BRBACKUP time stamp: 2012-02-28 03.05.40
    BR0291I BRARCHIVE will be started with options '-U -jid ALGOF20110129030500 -d disk -c force -p initPRD.sap -sd'
    BR0280I BRBACKUP time stamp: 2012-02-28 03.06.09
    BR0292I Execution of BRARCHIVE finished with return code 0

  • "Quartz Scheduler failed to initialize" error in application log

    We are BIPublisher 10.1.3.4 as J2EE app and I am getting this error in the application log. I have created myDS datasource to get rid of the following error. But no success..
    Please Help..
    Thanks!
    Srini
    09/01/09 15:13:43.298 [ecid: 10.39.38.45:96428:1231514019135:0,0] 10.1.3.3.0 Started
    09/01/09 15:13:46.492 [ecid: 10.39.38.45:96428:1231514019135:0,0] xmlpserver: QuartzInitializer: Quartz Initializer Servlet loaded, initializing Scheduler...
    09/01/09 15:16:55.835 [ecid: 10.39.38.45:96428:1231514019135:0,0] xmlpserver: QuartzInitializer: Quartz Scheduler failed to initialize: org.quartz.SchedulerConfigException: Failure occured during job recovery. [See nested exception: org.quartz.JobPersistenceException: Failed to obtain DB connection from data source 'myDS': org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory, cause: Io exception: The Network Adapter could not establish the connection [See nested exception: org.apache.commons.dbcp.SQLNestedException: Cannot create PoolableConnectionFactory, cause: Io exception: The Network Adapter could not establish the connection]]
    09/01/09 15:16:55.837 [ecid: 10.39.38.45:96428:1231514019135:0,0] xmlpserver: Error preloading servlet
    javax.servlet.ServletException: Failure occured during job recovery.
    at org.quartz.ee.servlet.QuartzInitializerServlet.init(QuartzInitializerServlet.java:170)
    at oracle.apps.xdo.servlet.scheduler.quartz.ExtendedQuartzInitializerServlet.init(ExtendedQuartzInitializerServlet.java:124)
    at com.evermind.server.http.HttpApplication.loadServlet(HttpApplication.java:2371)
    at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4824)
    at com.evermind.server.http.HttpApplication.findServlet(HttpApplication.java:4748)
    at com.evermind.server.http.HttpApplication.initPreloadServlets(HttpApplication.java:4936)
    at com.evermind.server.http.HttpApplication.initDynamic(HttpApplication.java:1145)
    at com.evermind.server.http.HttpApplication.<init>(HttpApplication.java:741)
    at com.evermind.server.ApplicationStateRunning.getHttpApplication(ApplicationStateRunning.java:414)
    at com.evermind.server.Application.getHttpApplication(Application.java:570)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.createHttpApplicationFromReference(HttpSite.java:1987)
    at com.evermind.server.http.HttpSite$HttpApplicationRunTimeReference.<init>(HttpSite.java:1906)
    at com.evermind.server.http.HttpSite.initApplications(HttpSite.java:643)
    at com.evermind.server.http.HttpSite.setConfig(HttpSite.java:290)
    at com.evermind.server.http.HttpServer.setSites(HttpServer.java:270)
    at com.evermind.server.http.HttpServer.setConfig(HttpServer.java:177)
    at com.evermind.server.ApplicationServer.initializeHttp(ApplicationServer.java:2493)
    at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1042)
    at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131)
    at java.lang.Thread.run(Thread.java:619)

    Pl see if ML Doc 738967.1 helps
    HTH
    Srini

Maybe you are looking for