Add or remove job dynamically in Quartz Scheduler using c#

Hi,
is it possible to add ,update, remove jobs and trigger to quartz scheduler dynamically.just like reading from database and add jobs and trigger to scheduler .Or using a GUI to add ,edit and remove the jobs and triggers to scheduler while scheduler is running.
please share your ideas and sample.

Hi, As it appears to be a Java library, I suggest you re-ask this question on Quartz Scheduler community forums (http://www.quartz-scheduler.org/community) Regards, Nick.

Similar Messages

  • How to make an opion to add and remove portlets dynamically from GUI?

    Hi,
    I have a requirment to provide option for the users to remove some section (basically portlets) from the page and add it later based on preferences .I think currenlty we have this option in iGoogle website. please give me some pointers towards the solution.?
    Thanks Jazz

    Hello Jazz,
    If the "preferences" you are referring to are the users' preferences (and not "portlet preferences"), I think the Dynamic Visitor Tools are what you want. There is a demonstration of the dynamic visitor tools at:
    http://wlp.oracle.com/dvt/appmanager/demo/dvt
    Kevin

  • How do I do to add and remove Shape3D objects dynamically from TransfGroup?

    Hi, everyone,
    How do I do to add and remove Shape3D objects dynamically from TransformGroup?
    I have added two Shape3D objects in the TransformGroup and I wanted to remove one of it to add another. But, the following exception occurs when I try to use �removeChild� :
    �Exception in thread "AWT-EventQueue-0" javax.media.j3d.RestrictedAccessException: Group: only a BranchGroup node may be removed at javax.media.j3d.Group.removeChild(Group.java:345)�.
    Why can I add Shape3D objects and I can�t remove them? Do I need to add Shape3D object in the BranchGroup and work only with the BranchGroup? If I do, I think this isn�t a good solution for the scene graph, because for each Shape3D object I will always have to use an associated BranchGroup.
    Below, following the code:
    // The constructor �
    Shape3D shapeA = new Shape3D(geometry, appearance);
    shapeA.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
    shapeA.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
    shapeA.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
    shapeA.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
    Shape3D shapeB = new Shape3D(geometry, appearance);
    shapeB.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
    shapeB.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
    shapeB.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
    shapeB.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
    BranchGroup bg = new BranchGroup();
    bg.setCapability(ALLOW_CHILDREN_READ);
    bg.setCapability(ALLOW_CHILDREN_WRITE);
    bg.setCapability(ALLOW_CHILDREN_EXTEND);
    TransformGroup tg = new TransformGroup();
    tg.setCapability(TransformGroup.ALLOW_TRANSFORM_WRITE);
    tg.setCapability(TransformGroup.ALLOW_TRANSFORM_READ);
    tg.setCapability(TransformGroup.ALLOW_CHILDREN_READ);
    tg.setCapability(TransformGroup.ALLOW_CHILDREN_WRITE);
    bg.addChild(tg);
    tg.addChild(shapeA);
    tg.addChild(shapeB);
    // The method that removes the shapeB and adds a new shapeC �
    Shape3D shapeC = new Shape3D(geometry, appearance);
    shapeC.setCapability(Shape3D.ALLOW_GEOMETRY_READ);
    shapeC.setCapability(Shape3D.ALLOW_GEOMETRY_WRITE);
    shapeC.setCapability(Shape3D.ALLOW_APPEARANCE_READ);
    shapeC.setCapability(Shape3D.ALLOW_APPEARANCE_WRITE);
    tg.removeChild(shapeB);
    tg.addChild(shapeC);Thanks a lot.
    aads

    �Exception in thread "AWT-EventQueue-0"
    javax.media.j3d.RestrictedAccessException: Group:
    only a BranchGroup node may be removed I would think that this would give you your answer -
    Put a branch group between the transform and the shape. Then it can be removed.
    Another thing you could try: This doesn't actually remove the shape, but at least causes it to hide. If you set the capabilities, I think you can write the appearance of the shapes. So, when you want to remove one of them, write an invisible appearance to it.

  • Create Timer Jobs dynamically using code (on the fly)

    What I am trying to accomplish here is different from the usual "Create and deploy a new custom timer job". So please co operate.
    Scenario : I have around 200 lists in my site. Each list gets its data from a third part web service (cutom code / not BCS). The data retrieval happens via Timer Jobs. The Timer Jobs call the web service, gets the fresh data and updates the
    list items. This is currently working fine with multiple lists and 1 timer job to refresh the data.
    Problem : Now the issue I am facing is, each of the lists have its own Refresh Frequency. Say List 1 to 30 needs to be refreshed every 5 mins. List 31 to 60 every 10 mins, etc. I am currently handling this by having a RefreshLastRun timestamp.
    This works fine in most of the scenarios - unless the Web service returns large data, in which case it takes more than 5 to 10 mins for the Update to complete on 4 to 5 lists. At the same time, the other lists - they were supposed to be updated 5 mins ago,
    but are still waiting to get updated because the timer job is busy updating another list, and the refresh is in Que. This is a completely unaccepatable solution to my client because the list with lower frequency duration (5 mins) is of a higher priority than
    the lists getting refreshed every 10 mins.
    My Question is : How do I create a new Timer Job for each list? Whenever I add a new list (through code), I want to create a Timer Job at the same time, which will take care of refreshing the data in this and this list only. This way, I will
    have a independent Timer Job for each list and dont have to depend on 1 timer job to take all the load. With this approach I will have 200 timer jobs running. Which is OK with my client. So I create one class inhereting from SPJobDefinition class, and
    use it repeatedly to create unlimted timer jobs?
    I hope I am able to convey the message. My Timer Jobs are working fine. I dont need suggestions on how to get the timer job working etc. My question is, how do I create a new Job Definition dynamically through code (no deployment).
    Hanif

    I'm afraid this leads to a path where you create a single timer job (or windows service) that uses parallel programming (tpl) to handle all the lists. However, that places a huge burden on you to manage schedules, monitoring etc., something the timer job
    framework handles for you.
    Kind regards,
    Margriet Bruggeman
    Lois & Clark IT Services
    web site: http://www.loisandclark.eu
    blog: http://www.sharepointdragons.com

  • Quartz Scheduled Application not working. Please help...

    Hi All,
    I have deployed a WAR file which has implemented Quartz Scheduler to run a job.
    There were no errors in the whitelist scan, but while deploying I found an error in the server log as shown below
    "BEA-000903 [Net]" "Incident Error"
    I could not make out what the error was, but I am using a listener class to run the scheduler as below in my web.xml.
    <listener>
      <listener-class>com.crmit.scheduler.QuartzSchedulerListener</listener-class>
    </listener>
    Can anyone please advice??
    Regards,
    Abhishek

    Can you please check your service logs to see what errors are reported in the logs. The Logs can be accessed using Java Service Console,
    Please refer Administering Oracle Java Cloud Service - Release 13.1

  • Deployment Queries related to Quartz Scheduler for SOA 11g???

    Dear All,
    We are using Quartz Scheduler for SOA 11g and have queries on its testing:
    1. Can we change the cron expression(say, previously cron expression was with the interval of 15 minutes every hour and we are changing it to 5 minutes every hour) in the scheduler table after we deployed the scheduler application? Should this require redeployment of Scheduler Application or the scheduler java class needs to be be run again to trigger the newly updated cron expression. Or, Will commiting the scheduler details table alone update the application to schedule for every 5 minutes in an hour?
    2. Also, if we are trying to schedule a new application(say, previously only 2 of our applications are scheduled and trying to add newly built application in the Scheduler table), will commiting the table alone will schedule the new application or require redeployment of Scheduler Application or the scheduler java class needs to be be run again?
    Please share your thoughts!
    Thanks in advance

    Were you able to control the frequency from the table. Can you please share the detials..

  • Jobs appearing in "Report Schedules" but remain at status 'Scheduled'

    Hello Folks
    We're running Business Intelligence Publisher 10.1.3.4.2 on Linux x86
    We are sending jobs to BIP using Oracle APEX communictaing over web service.
    Here are the symptoms
    1. Request document production from within APEX
    2. APEX communicates with BIP over web service
    3. Job appears as scheduled in BIP but never gets processed.
    Additional background
    1. This process has worked for years
    2. It stopped working this month
    3. If I log in to BIP I am able to run the report either in 'View' mode or 'Export' mode
    4. This would suggest that there is nothing wrong with the template, the queries or the ability of BIP to produce a PDF
    5. The issue seems to be when a job is scheduled to burst the PDF files to save in the directtory on the server.
    6. I get the same behaviour as described above whether the job appears in the schedule as a result from a webservice request from APEX or even if I 'Schedule' the job from within BIP itself.
    I have pasted some log information below just in case it makes sense to anyone on the forum.
    Any assitance gratefully received.
    [030612_024438223][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [030612_024438223][][STATEMENT] Logger.init(): LogDir=/apps/oracle/product/10.1.3/bip/log
    [030612_024438225][][STATEMENT] Template parsing started...
    [030612_024438225][][STATEMENT] Template parsing started...
    [030612_024438246][][STATEMENT] Data Template ......
    [030612_024438246][][STATEMENT] Data Template ......
    [030612_024438247][][STATEMENT] oracle.xml.parser.v2.XMLDocument@1f47f7a
    [030612_024438247][][STATEMENT] oracle.xml.parser.v2.XMLDocument@dd5d08
    [030612_024438251][][STATEMENT] Inside properties Parser...
    [030612_024438252][][STATEMENT] Inside properties Parser...
    [030612_024438252][][STATEMENT] include_null_Element=false
    [030612_024438252][][STATEMENT] include_null_Element=false
    [030612_024438253][][STATEMENT] Inside parameterParser...
    [030612_024438254][][STATEMENT] Inside parameterParser...
    [030612_024438255][][STATEMENT] Parameter:P_CONTACT_ID Default value:
    [030612_024438255][][STATEMENT] Parameter:P_CONTACT_ID Default value:
    [030612_024438256][][STATEMENT] Inside dataQueryParser...
    [030612_024438256][][STATEMENT] Inside dataQueryParser...
    [030612_024438259][][STATEMENT] Inside dataStructureParser...
    [030612_024438259][][STATEMENT] Inside dataStructureParser...
    [030612_024438268][][STATEMENT] Group ...report
    [030612_024438268][][STATEMENT] Group ...report
    [030612_024438269][][STATEMENT] Group ...ROWSET1_ROW
    [030612_024438269][][STATEMENT] Group ...ROWSET1_ROW
    [030612_024438276][][STATEMENT] Group ...ROWSET2_ROW
    [030612_024438277][][STATEMENT] Group ...ROWSET2_ROW
    [030612_024438277][][STATEMENT] Template parsing completed...
    [030612_024438278][][STATEMENT] Group ...ROWSET3_ROW
    [030612_024438279][][STATEMENT] Template parsing completed...
    [030612_024438316][][STATEMENT] Start process Data
    [030612_024438316][][STATEMENT] Process Data ...
    [030612_024438316][][STATEMENT] P_CONTACT_ID
    [030612_024438320][][STATEMENT] Writing Data ...
    [030612_024438324][][STATEMENT] Sql Query :Q1: select *
    from vw_invoice_summary_sms
    where invoice_summary_sms_id in (select invoice_summary_id
    from invoice_print_selection
    where contact_id = :P_CONTACT_ID)
    order by 4
    [030612_024438324][][STATEMENT] 1: P_CONTACT_ID:1
    [030612_024438331][][STATEMENT] Start process Data
    [030612_024438331][][STATEMENT] Process Data ...
    [030612_024438331][][STATEMENT] P_CONTACT_ID
    [030612_024438332][][STATEMENT] Writing Data ...
    [030612_024438333][][STATEMENT] Sql Query :Q1: select *
    from vw_invoice_summary_gsm
    where invoice_summary_gsm_id in (select invoice_summary_id
    from invoice_print_selection
    where contact_id = :P_CONTACT_ID)
    order by 4
    [030612_024438333][][STATEMENT] 1: P_CONTACT_ID:1
    [030612_024438481][][STATEMENT] Sql Query :Q2: Select o.main_reference cpmn,
    o2.main_reference ppmn,
    lpad(to_char(ilig.record_number), 5,'0')seq,
    ilig.dch_calc_curr ccur,
    ilig.dch_calc_curr_net ccnet,
    ilig.dch_calc_curr_gross ccgro,
    ilig.dch_pymt_curr pcur,
    ilig.dch_pymt_curr_net pcnet,
    ilig.dch_pymt_curr_gross pcgro
    from invoice_line_item_gsm ilig
    join invoice_summary_gsm isg on isg.invoice_summary_gsm_id = ilig.invoice_summary_gsm_id
    join operator o on o.operator_id = isg.client_operator_id
    join operator o2 on o2.operator_id = isg.home_operator_id
    where ilig.INVOICE_SUMMARY_GSM_ID = :INVOICE_SUMMARY_GSM_ID
    and ilig.record_type_id = 1
    order by ilig.RECORD_NUMBER
    [030612_024438482][][STATEMENT] 1: INVOICE_SUMMARY_GSM_ID:309070
    [030612_024438490][][STATEMENT] Sql Query :Q3: Select o.main_reference rcpmn,
    o2.main_reference rppmn,
    lpad(to_char(ilig.record_number), 5,'0')rseq,
    lpad(to_char(ilig.ASSOCIATED_RECORD_NUMBER), 5,'0')rtapseq,
    ilig.dch_calc_curr rccur,
    ilig.dch_calc_curr_net rccnet,
    ilig.dch_calc_curr_gross rccgro,
    ilig.dch_pymt_curr rpcur,
    ilig.dch_pymt_curr_net rpcnet,
    ilig.dch_pymt_curr_gross rpcgro
    from invoice_line_item_gsm ilig
    join invoice_summary_gsm isg on isg.invoice_summary_gsm_id = ilig.invoice_summary_gsm_id
    join operator o on o.operator_id = isg.client_operator_id
    join operator o2 on o2.operator_id = isg.home_operator_id
    where ilig.invoice_summary_gsm_id = :INVOICE_SUMMARY_GSM_ID
    and ilig.record_type_id = 2
    and ilig.PSS_ID = 63
    order by ilig.RECORD_NUMBER
    [030612_024438490][][STATEMENT] 1: INVOICE_SUMMARY_GSM_ID:309070
    [030612_024438531][][EVENT] Data Generation Completed...
    [030612_024438531][][EVENT] Total Data Generation Time 0.0 seconds
    [030612_024438567][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production
    [030612_024438570][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [030612_024438570][][STATEMENT] Logger.init(): LogDir=/apps/oracle/product/10.1.3/bip/log
    [030612_024438593][][STATEMENT] Template parsing started...
    [030612_024438595][][STATEMENT] Data Template ......
    [030612_024438595][][STATEMENT] oracle.xml.parser.v2.XMLDocument@1ea2b4a
    [030612_024438596][][STATEMENT] Inside parameterParser...
    [030612_024438596][][STATEMENT] Inside dataQueryParser...
    [030612_024438596][][STATEMENT] Template parsing completed...
    [030612_024438596][][STATEMENT] include_parameters=false
    [030612_024438597][][STATEMENT] Start process Data
    [030612_024438597][][STATEMENT] Process Data ...
    [030612_024438598][][STATEMENT] Writing Data ...
    [030612_024438598][][STATEMENT] Sql Query : select isg.invoice_summary_gsm_id KEY
    , o.main_reference TEMPLATE
    ,'RTF' TEMPLATE_FORMAT
    ,'en-GB' LOCALE
    ,'PDF' OUTPUT_FORMAT
    ,'FILE' DEL_CHANNEL
    ,'/data/oradata/generic/invoices' PARAMETER1
    ,isg.invoice_summary_gsm_id||'.pdf' PARAMETER2
    ,null PARAMETER3
    ,null PARAMETER4
    ,null PARAMETER5
    ,null PARAMETER6
    ,null PARAMETER7
    from invoice_summary_gsm isg
    join operator o on o.operator_id = isg.client_operator_id
    join traffic_period tp on tp.traffic_period_id = isg.traffic_period_id
    union
    select isg.invoice_summary_gsm_id KEY
    , o.main_reference TEMPLATE
    ,'RTF' TEMPLATE_FORMAT
    ,'en-GB' LOCALE
    ,'PDF' OUTPUT_FORMAT
    ,'FILE' DEL_CHANNEL
    ,'/data/oradata/generic/invoices' PARAMETER1
    ,isg.invoice_reference||'.pdf' PARAMETER2
    ,null PARAMETER3
    ,null PARAMETER4
    ,null PARAMETER5
    ,null PARAMETER6
    ,null PARAMETER7
    from invoice_summary_gsm isg
    join operator o on o.operator_id = isg.client_operator_id
    join traffic_period tp on tp.traffic_period_id = isg.traffic_period_id
    [030612_024446999][][EVENT] Data Generation Completed...
    [030612_024446999][][EVENT] Total Data Generation Time 8.0 seconds
    [030612_024450332][][EVENT] Data Generation Completed...
    [030612_024451123][][EVENT] Total Data Generation Time 13.0 seconds
    [030612_024451129][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production
    [030612_024451130][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [030612_024451130][][STATEMENT] Logger.init(): LogDir=/apps/oracle/product/10.1.3/bip/log
    [030612_024451165][][STATEMENT] Template parsing started...
    [030612_024451166][][STATEMENT] Data Template ......
    [030612_024451166][][STATEMENT] oracle.xml.parser.v2.XMLDocument@6f205e
    [030612_024451167][][STATEMENT] Inside parameterParser...
    [030612_024451167][][STATEMENT] Inside dataQueryParser...
    [030612_024451167][][STATEMENT] Template parsing completed...
    [030612_024451167][][STATEMENT] include_parameters=false
    [030612_024451168][][STATEMENT] Start process Data
    [030612_024451169][][STATEMENT] Process Data ...
    [030612_024451169][][STATEMENT] Writing Data ...
    [030612_024451204][][STATEMENT] Sql Query : select iss.invoice_summary_sms_id KEY
    , o.main_reference TEMPLATE
    ,'RTF' TEMPLATE_FORMAT
    ,'en-GB' LOCALE
    ,'PDF' OUTPUT_FORMAT
    ,'FILE' DEL_CHANNEL
    ,'/data/oradata/generic/invoices' PARAMETER1
    ,iss.invoice_summary_sms_id||'.pdf' PARAMETER2
    ,null PARAMETER3
    ,null PARAMETER4
    ,null PARAMETER5
    ,null PARAMETER6
    ,null PARAMETER7
    from invoice_summary_sms iss
    join operator o on o.operator_id = iss.client_operator_id
    join traffic_period tp on tp.traffic_period_id = iss.traffic_period_id
    union
    select iss.invoice_summary_sms_id KEY
    , o.main_reference TEMPLATE
    ,'RTF' TEMPLATE_FORMAT
    ,'en-GB' LOCALE
    ,'PDF' OUTPUT_FORMAT
    ,'FILE' DEL_CHANNEL
    ,'/data/oradata/generic/invoices' PARAMETER1
    ,iss.invoice_reference||'.pdf' PARAMETER2
    ,null PARAMETER3
    ,null PARAMETER4
    ,null PARAMETER5
    ,null PARAMETER6
    ,null PARAMETER7
    from invoice_summary_sms iss
    join operator o on o.operator_id = iss.client_operator_id
    join traffic_period tp on tp.traffic_period_id = iss.traffic_period_id
    [030612_024452964][][EVENT] Data Generation Completed...
    [030612_024452964][][EVENT] Total Data Generation Time 2.0 seconds
    [030612_024455726][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Tmp dir for bursting : /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp/
    [030612_024455726][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] [Bursting node]=[SMSInvoice/LIST_ROWSET1_ROW/ROWSET1_ROW/INVOICE_SUMMARY_SMS_ID], [Delivery node]=[SMSInvoice/LIST_ROWSET1_ROW/ROWSET1_ROW/INVOICE_SUMMARY_SMS_ID]
    [030612_024455743][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[ARMOR], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp10256934.tmp]
    [030612_024455746][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[BELKO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp69466047.tmp]
    [030612_024455748][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[DNKHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp82585904.tmp]
    [030612_024455750][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[DNKTD], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp74339796.tmp]
    [030612_024455752][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[EGYAR], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp4226652.tmp]
    [030612_024456776][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[ESPRT], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp45349479.tmp]
    [030612_024456779][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[GBRHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp14794567.tmp]
    [030612_024456783][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[HRVVI], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp49428610.tmp]
    [030612_024456786][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[IRLH3], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp40329386.tmp]
    [030612_024456790][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[ISLNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp24142953.tmp]
    [030612_024456793][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[MKDNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp55564008.tmp]
    [030612_024456798][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[SRBNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp3526336.tmp]
    [030612_024456801][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[SWEHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp77789765.tmp]
    [030612_024456805][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[UKRAS], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp82203944.tmp]
    [030612_024456805][][STATEMENT] /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp/
    [030612_024456808][][STATEMENT] BurstingProcessor:Property Key=>xslt-scalable : value=>true
    [030612_024456808][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOTIMEZONE : value=>'Europe/London'
    [030612_024456809][][STATEMENT] BurstingProcessor:Property Key=>xdk-secure-io-mode : value=>true
    [030612_024456809][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOCALENDAR : value=>'GREGORIAN'
    [030612_024456809][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOLOCALE : value=>'en_US'
    [030612_024456818][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: startDocument is entered <========================
    [030612_024456819][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: endDocument is entered <========================
    [030612_024456828][][STATEMENT] /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp//030612_024456808 deleted successfully...
    [030612_024456829][oracle.apps.xdo.servlet.scheduler.XDOJob][EXCEPTION] [ID:15074] Unexpected exception occurred while running the job.
    oracle.apps.xdo.servlet.scheduler.ProcessingException: java.lang.NullPointerException
         at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:2116)
         at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:358)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    Caused by: java.lang.NullPointerException
         at com.sun.java.util.collections.Hashtable.get(Hashtable.java:321)
         at oracle.apps.xdo.batch.bursting.ProcessEnterpriseDocument.processLayout(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(Unknown Source)
         at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.java:119)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:311)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:263)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
         at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:2008)
         ... 3 more

    Additional Log....
    [030612_024456830][][STATEMENT] Default write connection pool max:0, min:0, total:0, available:0
    [030612_024456881][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [030612_024456892][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): called with request type :smtp_email
    [030612_024456914][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): exiting
    [030612_024456915][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Called
    [030612_024456915][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): default server properties are loaded for this request type (smtp_email) : {HOST:String=smtp.itaction.net, server-name=MailServer, PORT:Integer=25}
    [030612_024456915][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): properties defined in this request.
    [PORT:Integer] [25]
    [SMTP_FROM:String] [[email protected]]
    [SMTP_CHARSET:String] [ISO-8859-1]
    [server-name] [MailServer]
    [SMTP_CONTENT_TYPE:String] [text/plain;charset=ISO-8859-1]
    [ASYNC_TIMEOUT:Integer] [86400000]
    [SMTP_ENCODING:String] [Q]
    [HOST:String] [smtp.itaction.net]
    [RETRY:Integer] [0]
    [ASYNC_CHECK_INTERVAL:Integer] [60000]
    [SMTP_TO_RECIPIENTS:String] [[email protected]]
    [TEMP_FILE_SUFFIX:String] [.tmp]
    [SMTP_ATTACHMENT_FIRST:Boolean] [(java.lang.Boolean]
    [SMTP_SUBJECT:String] [Report Delivery Failure]
    [TEMP_FILE_PREFIX:String] [dlvr]
    [RETRY_INTERVAL:Integer] [60000]
    [030612_024456916][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): BUFFERING_MODE is OFF.
    [030612_024456916][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Start reading given document InputStream.
    [030612_024456916][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Calling DeliveryRequestHandler.submitRequest()
    [030612_024456917][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): called
    [030612_024456938][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): This request has never been submitted before.
    [030612_024456945][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Adding an attachment ...[filename]=[null], [content-type]=[text/plain;charset=ISO-8859-1], [index]=[0], [disposition]=[inline]
    [030612_024456945][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character set for MIME headers : ISO-8859-1
    [030612_024456945][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character encoding for MIME headers : Q
    [030612_024456945][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Exiting addAttachment()
    [030612_024456981][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character set for MIME headers : ISO-8859-1
    [030612_024456981][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character encoding for MIME headers : Q
    [030612_024457711][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): exiting
    [030612_024457711][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Finished calling DeliveryRequestHandler.submitRequest()
    [030612_024457712][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Process done successfully. Exiting submit()
    [030612_024515815][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Tmp dir for bursting : /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp/
    [030612_024515816][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] [Bursting node]=[GSMInvoice/LIST_ROWSET1_ROW/ROWSET1_ROW/INVOICE_SUMMARY_GSM_ID], [Delivery node]=[GSMInvoice/LIST_ROWSET1_ROW/ROWSET1_ROW/INVOICE_SUMMARY_GSM_ID]
    [030612_024515824][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ARMOR], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp37365181.tmp]
    [030612_024515830][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[BELKO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp26570728.tmp]
    [030612_024515837][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[BMUNI], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp4387822.tmp]
    [030612_024515842][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[DNKHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp2827844.tmp]
    [030612_024515846][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[DNKTD], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp63646593.tmp]
    [030612_024515855][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ECUAL], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp80840101.tmp]
    [030612_024515862][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ECUOT], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp20694448.tmp]
    [030612_024515867][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[EGYAR], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp90062593.tmp]
    [030612_024515875][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ESPRT], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp90729074.tmp]
    [030612_024515881][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[FJIDP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp49194851.tmp]
    [030612_024515884][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[GBRHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp68941910.tmp]
    [030612_024515892][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[HRVVI], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp64755985.tmp]
    [030612_024515896][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[IRLH3], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp6093376.tmp]
    [030612_024515901][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ISLNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp95434455.tmp]
    [030612_024515904][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[MKDNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp16294940.tmp]
    [030612_024515914][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[SRBNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp8851271.tmp]
    [030612_024515917][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[SWEHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp25326232.tmp]
    [030612_024515922][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[TONDP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp15285568.tmp]
    [030612_024515928][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[UKRAS], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp27288147.tmp]
    [030612_024515932][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USACB], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp48946666.tmp]
    [030612_024515937][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USACP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp54990470.tmp]
    [030612_024515944][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USANW], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp81536864.tmp]
    [030612_024515949][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USAPU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp85195258.tmp]
    [030612_024515953][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USAUN], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp95134410.tmp]
    [030612_024515963][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USAVI], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp93684833.tmp]
    [030612_024515965][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USAWC], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp11836207.tmp]
    [030612_024515969][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[VUTDP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp47095917.tmp]
    [030612_024515973][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[WSMDP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp76134981.tmp]
    [030612_024515973][][STATEMENT] /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp/
    [030612_024515973][][STATEMENT] BurstingProcessor:Property Key=>xslt-scalable : value=>true
    [030612_024515973][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOTIMEZONE : value=>'Europe/London'
    [030612_024515973][][STATEMENT] BurstingProcessor:Property Key=>xdk-secure-io-mode : value=>true
    [030612_024515974][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOCALENDAR : value=>'GREGORIAN'
    [030612_024515974][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOLOCALE : value=>'en_US'
    [030612_024517080][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: startDocument is entered <========================
    [030612_024517093][][STATEMENT] template File/apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp60436649.tmp
    [030612_024517101][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [030612_024517101][][STATEMENT] Logger.init(): LogDir=/apps/oracle/product/10.1.3/bip/log

  • ADOBE Forms Central - add and remove rows (PDF Form)

    Hello, I am currently evaluating ‘ADOBE Forms Central' to set up a form with editable fields. I have set up a test form in ADOBE Forms Central and was unable to insert an option to add and remove rows similar to the print screen attached. Is this possible to do using ADOBE Forms Central or should I be using
    a different ADOBE application? Thank you, Liz

    A dynamic XFA PDF form can do this. You can create such forms with LiveCycle Designer, which was included with the Windows version of Acrobat Pro prior to version 11. It is now a separate product.
    XFA forms can't be used with FormsCentral, however, only Acroforms can.

  • "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

  • Setting Job Priority outside of Scheduler Windows

    We have a scheduled email job, EMAIL_RELAY, that should run every 15 minutes. We also have 8000
    separate batch jobs that run in a Window, SAVED_SEARCHES_WINDOW, between
    02:00 and 07:00. During the Window, the email job fails to run. When I look at the first email job that runs after the window closes I see that the job was requested to start at 02:00 but the actual start time was 07:00. The database is very busy during the saved searches window, but I would like the scheduler to run the email job every 15 minutes regardless. I have read in the docs that the you can prioritize jobs, but to me it looks like this is only within a window. I cannot see how I can add the EMAIL_RELAY job to the SAVED_SEARCHES_WINDOW as still get it to repeat every 15 minutes so changing the priority seems useless.
    Any ideas?
    Thanks

    Hi,
    - it is possible to prioritize jobs that are waiting to be run by setting the JOB_PRIORITY attribute of the job . You may run into an issue with so many (>1000) jobs in the waiting queue. If so you may need to put the higher priority e--mail jobs in a different class which points to a different service
    - it may be that you have set the job slave limit too low. Please check the value of job_queue_processes
    select value from v$parameter where name='job_queue_processes';
    and of max_job_slave_processes (from the all_scheduler_global_attribute view) to make sure both are high enough.
    - if both limits are high enough (or as high as you want to set them) but you want to make sure that your e-mail job always runs you can use the techniques on this thread
    Run Jobs One After Another
    to setup two classes, one for high-priority jobs and one for all other jobs and reserve a given number of slave processes for each class. You can have a resource plan in effect outside a window (as well as in a window) and the resource plan is what allocates resources between job classes (via resource consumer groups).
    Hope this helps,
    Ravi.

  • Add a data series dynamically in charts

    I am trying to add a data series dynamically in a chart but
    it does not seems to work. Here is the sample code. Any idea?
    var line1:LineSeries=new LineSeries();
    line1.dataProvider=[something];
    line1.displayName="New data";
    chart.secondSeries.push(line1);
    It works if I do the following but I don't want to remove
    other series already there.
    var arr = new Array();
    chart.secondSeries=arr;
    var line1:LineSeries=new LineSeries();
    line1.dataProvider=[something];
    line1.displayName="New data";
    arr.push(line1);

    I see...i don't know why the chart is not refreshing itself
    in the next keyframe after you added another series. You can also
    try to put the statement:
    [myChart.series[(myChart.series as Array).length] = your new
    ColumnSeries object goes here.]
    in a new frame by doing doLater();
    Apparently an asigninment statement on the series array does
    the trick. If you don't like that approach, you can also try to
    invalidate the display object, so that a refresh is forced.
    -george

  • GP API - remove user dynamically for a task..

    I am having dynamic looping for an action, users assigned in every level.
    I am able to add user dynamically for an action using:
    rtm1.addRuntimeDefinedUserToRole(prInstance1, Next_Action, userJames, userContext1);
    Change user does not work as it will work only for running actions or tasks, for pending one it will not
    rtm.changeTaskProcessor(processInstanceID, activityInstanceID, currentProcessor, newProcessor);
    remove user is not working for me? suggest me how to use this code?
    IGPProcessRoleInstance processRoleInstance=executionContext.getProcessRoleInstance();
    processRoleInstance.removeUser(UMFactory.getUserFactory().getUserByLogonID(UserId));

    Hi
    I tried using the following for my process where the action is yet to happen
    I am calling the BG CO before my action. I need to remove the previous user.
    rtm1.removeTaskProcessor(prInstance1.getID(),activityInstanceID, userContext1);
    rtm.changeTaskProcessor(processInstanceID, activityInstanceID, currentProcessor, newProcessor);
    processRoleInstance.removeUser(UMFactory.getUserFactory().getUserByLogonID(UserId));
    but nothing is working.
    any idea when we can use them? I think changeTaskProcessor will not work for pending tasks.
    I am able to get the activityInstanceID from NWA -> GP Processes, but my GP Process is having dynamic loop where the task will generate depending on levels. How can we get the activityInstanceID of the next task/action?

  • PropertyAccessExceptionsException in quartz scheduler with Spring

    Exception:
    org.quartz.SchedulerException: Job threw an unhandled exception. [See nested exception: PropertyAccessExceptionsException (1 errors)]
         at org.quartz.core.JobRunShell.run(JobRunShell.java:214)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
        * Nested Exception (Underlying Cause) ---------------
        PropertyAccessExceptionsException (1 errors)
        org.springframework.beans.MethodInvocationException: Property 'methodInvoker' threw exception; nested exception is com.sun.enterprise.InvocationException
        Caused by:
        com.sun.enterprise.InvocationException
         at com.sun.enterprise.distributedtx.UserTransactionImpl.getStatus(UserTransactionImpl.java:249)
         at org.springframework.transaction.jta.JtaTransactionManager.isExistingTransaction(JtaTransactionManager.java:605)
         at org.springframework.transaction.support.AbstractPlatformTransactionManager.getTransaction(AbstractPlatformTransactionManager.java:294)
         at org.springframework.transaction.interceptor.TransactionAspectSupport.createTransactionIfNecessary(TransactionAspectSupport.java:234)
         at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:93)
         at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:170)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:176)
         at $Proxy32.toString(Unknown Source)
         at java.lang.String.valueOf(String.java:2615)
         at java.lang.StringBuffer.append(StringBuffer.java:220)
         at org.springframework.scheduling.quartz.MethodInvokingJobDetailFactoryBean$MethodInvokingJob.setMethodInvoker(MethodInvokingJobDetailFactoryBean.java:190)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at org.springframework.beans.BeanWrapperImpl.setPropertyValue(BeanWrapperImpl.java:737)
         at org.springframework.beans.BeanWrapperImpl.setPropertyValue(BeanWrapperImpl.java:575)
         at org.springframework.beans.AbstractPropertyAccessor.setPropertyValue(AbstractPropertyAccessor.java:49)
         at org.springframework.beans.AbstractPropertyAccessor.setPropertyValues(AbstractPropertyAccessor.java:68)
         at org.springframework.scheduling.quartz.QuartzJobBean.execute(QuartzJobBean.java:85)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:203)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)All works fine in tomcat.
    Any body can help me?

    Project Properties -> J2EE Application (then see Embedded OC4J Command Line)
    Searching Google for "jdeveloper userthreads" finds this one in the first hit, as does searching this forum for "userThreads"
    A better title for your post would have been "How do I set userThreads option in JDeveloper" - Quartz Scheduler is what I would call a "red herring" ;)
    best,
    John

  • ACS 4.2 - automate removal of dynamic users

    Is it possible to automate the removal of dynamic users to a preset schedule, say once a month?
    thanks
    Bob

    No its not possible to automate the removal of dynamic users to a preset schedule. The only option is to use the "Remove Dynamic Users" button manually in the User Setup.

  • Can OEM view jobs that has been scheduled by dbms_jobs

    Hello,
    Can I use OEM to view jobs that were scheduled using dbms_jobs. Thank you.

    Hi,
    If you mean the OEM client java console, then yes, you find it:
    select db
    then Distributed->Advanced Replication->Administration
    you should then see a DBMS Jobs tab, which can be used to add/edit jobs.
    cheers,
    John

Maybe you are looking for

  • Getting error while running dtp

    Hi i am getting this error while running dtp, i am uisng BI 7.0 write optimized DSO      Duplicate data record detected (DS GMND0002 , data package: 000001 , data record: 4 )      ple let me know ur solutions for this problem,

  • Monitor display issues: what would cause the monitor to show really off colors?

    When booted from my DVD startup disk the colors are fine.  When using the computers startup, the colors are like a 35mm film negative. Any ideas out there?

  • Displaying 1920x1200 on Samsung 2443BW, macbook with GMA 950

    I just purchased a Samsung SyncMaster 2443BW. I connect it through DVI and the highest resolution I can set it at is 1280, higher options are not offered in display preferences. The monitor's native resolution is 1920x1200. The macbook I am using has

  • Changing page .htm to .cfm / search engine indexes?

    I have a central page on a site that has been up as domain/page.htm for more than 10 years. It is listed multiple times on popular search engines, and I am sure it's bookmarked by its users. The page is already on a CF site, and I would like to add t

  • When I enter 2000 it formats it as a date (1/1/2000 00.00.00)

    Hello, I'm new to Numbers. I'm using the latest version. But the problem is, when I enter 2000 which I would like to be a number, but it says in the lower left corner that it's: 1/1/2000 00.00.00. When I click in the format window, the dataformat is