Need list of recurring jobs in scheduler

Hello,
I need a list of all the reports scheduled. And the recurring jobs specific. I need also al the parameters one needs to fill in the form when scheduling a report (like: every thurstday, next runtime, to emailadress, etc etc).
BO had the tool instance viewer (?) but info I get is not complete and it's not in excel
can anyone help?
thanks, Lia

hi prewin,
1.opereting system monitor(ST06).it is necessary fot 24 hours.
2.Database check monitor(DB16)
3.Local transaction Statistics(STAT)
4.current active users monitoring(AL08) & (SM04)
5.workload Analysis(ST03):this was main for caluclating all jobs
6.Database operation Monitor(DB24)
:I Hope it is usefull to you.
regards,
reddy

Similar Messages

  • Need to set a job in crontab

    Hi
    Need to setup a job in crontab to run every 30 min from 8.00 am to 10.pm including both the timings.Any one can suggest it how that can be acheived?

    Hi,
    I have some good examples that describe how to set crontab execution times:
    http://www.dba-oracle.com/t_crontab_examples.htm
    Take a minute and read the basic rules. At forst it looks cryptic, but it's easy once you understand the columns:
    field allowed values
    minute 0-59
    hour 0-23
    day of month 1-31
    month 1-12
    day of week 0-7 (both 0 and 7 are Sunday)
    user Valid OS user
    command Valid command or script.
    The date fields can contain a number of patterns to form complex schedules, as shown below.
    * - All available values or "first-last".
    3-4 - A single range representing each possible from the
    start to the end of the range inclusive.
    1,2,5,6 - A specific list of values.
    1-3,5-8 - A specific list of ranges.
    0-23/2 - Every other value in the specified range.
    In Red Hat Linux, the month and day names can be used to specify these fields. The following examples show a selection of possible schedules:
    30 * * * * root echo "Runs at 30 minutes past the hour."
    45 6 * * * root echo "Runs at 6:45 am every day."
    45 18 * * * root echo "Runs at 6:45 pm every day."
    00 1 * * 0 root echo "Runs at 1:00 am every Sunday."
    00 1 * * 7 root echo "Runs at 1:00 am every Sunday."
    00 1 * * Sun root echo "Runs at 1:00 am every Sunday."
    30 8 1 * * root echo "Runs at 8:30 am on the first day of every month."
    00 0-23/2 02 07 * root echo "Runs every other hour on the 2nd of July."
    Hope this helps. . .
    Don Burleson
    Oracle Press author

  • List of HR Jobs date,time,person responsible,pgm

    hi.
    i am a fresher.
    need to obtain a list of HR Jobs date,time,person responsible,pgm etc - to be available with Periodic processing.
    We need to have a list of SAP objects changed.
    can some1 help me out as to how this can be done.

    >>>We need to have a list of SAP objects changed.
    Use Tcode SE95 to get a list of modified Objects.
    Regarding your other Question about Jobs...  I guess you are referrring to the Background HR Jobs that are scheduled for periodic processing.. Go to Tcode SM37 & do a wildcard search on HR.. click on each Job to get the details & click on the 'Step' tab to get the name of the program tied to the job..
    ~Suresh

  • Job Shop Scheduling Algorithms

    I am working on an application for scheduling tests based on constraints such as
    1. Availability of the resources required for the tests
    2. Earliest start and latest end times for the test
    3. Setup,execution and tear down time for the tests
    4. Calibration/Maintenance times
    (Note:Tests are tests that are conducted in labs for example an automotive crash test)
    The application needs to schedule test requests based on the constraints listed above and the current test queue.
    I am looking for pointers for simple application of job shop scheduling algorithms to my problem. If someone has the link to the pseudo code for the algorithm it would be helpful.
    Regards,
    Rahul

    Don't run away to genetic programming too early ;-) If your problem is 'not so big' S01 LP solvers are
    ideal for the job. S01 stands for boolean (zero or one) sets of variables and LP stands for Linear
    Programming; both techniques are quite old and very mature; they can handle the job (sic) quite well.
    Simply google for 'job shop scheduling' and see what's on display ...
    kind regards,
    Jos

  • Spool list for Background job

    Dear all ,
    The background job is already scheduled daily (PR NOT PROCESSED BY PURCHASING) , isn't possible to check the list of users is assigned in the spool list recipiant, I have checked spool list , but its shows only one id ....
    how to check the list of Spool users ...any alternate option ?
    Kindly advise
    Regards

    Hi ,
    I have created a distribution list and i have included  the email ids also .
    any other activation is required for Distribution list ?
    how the background job is sending a report to Distribution list or i have to assign a distribution list to Background job .
    Kindly suggest
    Regards

  • Creating a job and scheduling a job error in OEM

    Hi, Everyone,
    I am trying to create and schedule a job thru OEM. In the the pl/sql block provide i have given my code like this
    begin
    SET SERVEROUTPUT ON;
    SPOOL C:\RFV_PROFILE_REPORT.LOG APPEND;
    SELECT TO_CHAR(SYSDATE, 'DD/MM/YY HH24:MI:SS') FROM DUAL;
    EXEC PAC_RFV_PROFILE_REPORT.CALL_ALL (200910);
    SELECT TO_CHAR(SYSDATE, 'DD/MM/YY HH24:MI:SS') FROM DUAL;
    SPOOL OFF;
    end;
    i have created the job and scheduled it but i am getting this error:
    Error # 6550
    Details ORA-06550: line 2, column 5: PL/SQL: ORA-00922: missing or invalid option ORA-06550: line 2, column 1: PL/SQL: SQL Statement ignored ORA-06550: line 3, column 7: PLS-00103: Encountered the symbol "C" when expecting one of the following: := . ( @ % ;
    could anyone pls help as this is very urgent.
    Thanks in advance

    Ah, the problem is you are confusing SQLPlus commands with PL/SQL.
    SET SERVEROUTPUT ON; -- This is a SQLPlus command, not necessary here.
    SPOOL C:\RFV_PROFILE_REPORT.LOG APPEND; -- This is a SQLPlus command, in PL/SQL to write out to a file you will need to call the UTL_FILE package to open a file for writing to. Except that the file you write to will appear on the database server, not your workstation, when the scheduled job runs.
    SELECT TO_CHAR(SYSDATE, 'DD/MM/YY HH24:MI:SS') FROM DUAL; -- In PL/SQL you need to SELECT columns INTO variables FROM tables. But in fact I guess you want to write the time to file using UTL_FILE again. However, you don't really need to do this, since scheduler will log the start time and run duration itself.
    EXEC PAC_RFV_PROFILE_REPORT.CALL_ALL (200910); -- This is the SQLPlus equivalent of the PL/SQL command:
    BEGIN
    PAC_RFV_PROFILE_REPORT.CALL_ALL (200910);
    END;
    SPOOL OFF; -- This is a SQLPlus command, not necessary here.
    So to summarise, all you really need is:
    BEGIN
    PAC_RFV_PROFILE_REPORT.CALL_ALL (200910);
    END;
    And the scheduled job will log the start time and duration in the database, which you can find here:
    SELECT * FROM USER_SCHEDULER_JOB_RUN_DETAILS

  • Creating a Job through scheduler

    Hi.....
    I need to create a job in oracle through scheduler.
    Whether any job is there in bolt which will run every day from Monday to Friday for Every 1 Hour and Run From Morning 6.00 AM to 9.00 P.M.
    Job should run
    1) Daily ( Monday to Friday )
    2) Every Hour
    3) From 6.00 AM to 6.00 P.M.
    Regards
    Yashavanth

    Hi,
    Try using
    repeat_interval=>
    'freq=daily;byday=MON,TUE,WED,THU,FRI;byhour=6,7,8,9,10,11,12,13,14,15,16,17,18;byminute=0; bysecond=0'
    This should run Monday-Friday 6am to 6pm
    Hope this helps,
    Ravi.

  • Need configure guide for job progress monitor in JSM

    Hello Guys,
    I have received  an requirement to setup job progress monitoring in JSM(job schedule monitor).i have done my search in Google for configuration guide, but i could not find it.
    My Requirement:- i need to monitor the jobs progress(running on manage system) which consists on nearly 10 setps.End user need to monitoring the job progress  using PI diagram.
    Guys  if any one of you have done this setup please help me with configuration setps.
    Please provide your inputs on this.
    Regards,
    Pavan

    Hi Pavan,
    That should have been my place from where I would have start
    I hope Jansi, Prakhar or Karthik can redirect you on this.
    Meanwhile, If I get any thing, I will share it.
    Regards

  • Need list of indian s/w companies using Oracle on Linux

    Hi,
    I am in need of the list of companies in India who use Oracle on Linux, if any one has such an list then please do send it to me at [email protected]
    I am exploring the companies names ,so that I can apply for the post of 'Oracle DBA' on LINUX platform,thus if i could obtain such a list then my job hunt will become much easier.
    So,if any one has got such info then please do pass it on to me .
    Krishna k.
    09819152725

    It's been discussed before,
    Re: Want to use SGA=3gb+  in  RHEL 4.3 (32bit)
    There's some work around with performance penalty

  • Dependent Jobs in scheduler

    Hi Experts,
    Below are the version details where I am working.
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production
    PL/SQL Release 11.2.0.2.0 - Production
    "CORE 11.2.0.2.0 Production"
    TNS for 32-bit Windows: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
         I got a requirement like below
        There are 2 COBOL programs which got scheduled using oracle scheduler.
    Before start execution of second program need to check first job status. if the first job is succeeded then only second program has to continue other wise it has to stop.
    DO we have any option other than event based jobs and chains.
    Thanks,
    Nagaraju A.

    Hi,
    If you don't want to use either event based jobs nor chains then you'll need to check the first job's status in your second job's logic.
    In the beginning of the second job, check the status of the first job from dba_scheduler_job_run_details for the latest run (or a given date). If status is not SUCCEEDED, then exit the procedure of your second job.

  • Overview, which Jobs are scheduled and which haven't finished successfully

    We are using GridControl jobs to administrate several databases (e.g. execute exports, analyze schemas, etc.). All of these jobs are scheduled...
    The "Home" tab of the GridControl GUI has the information "All target jobs" with "Problem executions" and "Suspended executions" - but what we would
    like to have is a view, which contains the job-names and their status.
    I've looked through the data-dictionary of the GridControl repository and found several tables and views which contain all kind of informations about the
    jobs.
    Does anybody already know, how to setup a view with the needed informations?
    We can't use the tab "Job activity" since the result of the view should be mailed to the developers...
    Any help will be appreciated...
    Rgds
    JH

    we are rather new to GridControl and not very experienced with the reports. I thought that just the already defined report-categories could be used.
    I went through the reports but couldn't find any report which is related to jobs.
    But thansks for your suggestion - we will try to create a report...

  • Recurring Job for Allocation cycle reversal

    Dear colleagues,
    I want to create a recurring job for FI allocation cycles Reversal but I cannot find any transaction or program that can be executed through the SM36 for such purpose.
    The only way to do this reversal is to execute the transcation FAGLGA35 and to navigate to the menu tin order to select the option "-> Reverse".
    Has any one of you a tip for that or do you confirm that I need to create a specific program for such requirement?
    Thank you in advance
    Pascal.

    Workflow is the only option

  • Error while adding a job to scheduler

    Hello,
    I have a batch job that is running fine in both DEV and QA environment. In DEV, I am able to schedule and run it daily. I created a similar schedule in QA environment using BODS Mgmt Console/Administrator. However, upon Activating the schedule, I am getting the following error message. Would someone know why would this error be thrown and steps to troubleshoot this error?
    Thanks.
    [Repository:AECON_DW_REPOSITORY Schedule:Daily_Run_QA Error:Error while adding a job to scheduler]
    When contacting the server above exception was encountered, so it will be assumed the schedule is not active anymore.

    Hi Rizwan Tahir  ,
    Delete the job server associated with the current batch job and recreate it.
    Then try creating a new schedule using the new job server.
    And take care that job server is created in QA environment.
    Hope this should work.
    Regards,

  • How to send an updated list using batch job

    Hi All,
      The program displays data on the screen, if the data looks ok, then there is an option to update.
    When I run update, the program submits a batch job and the basic list gets updated, but my batch job is still sending the data on the screen. how can i send the updated list using batch job.
      Ex: output of the program
                    1         2
           there is an update button on the screen, when i press update button, my program submits in batch job, the above list becomes
                    1        2
                    3        4
    but when i check the spool, it shows the o/p as         1           2 ..it is not sending the updated list.
    Please suggest me how to send the updated data
    Thanks,
    Kumar

    Hi Krishna,
      I have added a button on the alv list. when i press update button, my program updates the list, then submits the batch job. I am attaching the sample test program i am trying with, please suggest me how can i get the updated list.
    *& Report  ZTESTSSSSS
    REPORT  ZTESTSSSSS.
    DATA: gt_fieldcat TYPE slis_fieldcat_alv,
          lt_fieldcat type slis_t_fieldcat_alv,
          gt_sort     TYPE slis_t_sortinfo_alv,
          g_repid     LIKE sy-repid,
          gt_layout   TYPE slis_layout_alv.
    start-of-selection.
      lt_return-type = 'S'.
      lt_return-message = 'test message'.
      append lt_return.
      CLEAR gt_fieldcat.
      gt_fieldcat-fieldname = 'TYPE'.
      gt_fieldcat-outputlen = '3'.
      gt_fieldcat-tabname   = 'LT_RETURN'.
      gt_fieldcat-seltext_l  =  'Type'.
      gt_fieldcat-seltext_m  =  'Type'.
      gt_fieldcat-seltext_s  =  'Type'.
      APPEND gt_fieldcat TO lt_fieldcat.
      CLEAR gt_fieldcat.
      gt_fieldcat-fieldname = 'MESSAGE'.
      gt_fieldcat-outputlen = '15'.
      gt_fieldcat-tabname   = 'LT_RETURN'.
      gt_fieldcat-seltext_l  =  'Message'.
      gt_fieldcat-seltext_m  =  'Message'.
      gt_fieldcat-seltext_s  =  'Message'.
      APPEND gt_fieldcat TO lt_fieldcat.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM       = sy-repid
          I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'
          I_CALLBACK_USER_COMMAND  = 'USER_COMMAND'
          IT_FIELDCAT              = lt_fieldcat
        TABLES
          T_OUTTAB                 = lt_return
        EXCEPTIONS
          PROGRAM_ERROR            = 1
          OTHERS                   = 2.
    *&      Form  set_pf_status
          text
         -->RT_EXTAB   text
    FORM set_pf_status USING rt_extab TYPE slis_t_extab.
      SET PF-STATUS 'STANDARD'.
    ENDFORM. "Set_pf_status
    *&      Form  user_command
          text
         -->R_UCOMM      text
         -->RS_SELFIELD  text
    FORM user_command USING r_ucomm     LIKE sy-ucomm
                            rs_selfield TYPE slis_selfield.
      DATA: li_count TYPE I.
      IF r_ucomm EQ 'UPD'.
    Adding another message
        lt_return-type = 'S'.
        lt_return-message = 'Another test message'.
        APPEND lt_return.
        rs_selfield-refresh = 'X'.
        rs_selfield-col_stable = 'X'.
        rs_selfield-row_stable = 'X'.
        l_upd = 'X'.
       LOOP AT lt_return.
         WRITE: / lt_return-type, lt_return-message.
       ENDLOOP.
        IF sy-batch IS INITIAL.
          l_upd = 'X'.
    Open the Job
          CALL FUNCTION 'JOB_OPEN'
            EXPORTING
              jobname          = w_name
            IMPORTING
              jobcount         = w_number
            EXCEPTIONS
              cant_create_job  = 1
              invalid_job_data = 2
              jobname_missing  = 3
              OTHERS           = 4.
          IF sy-subrc = 0.
            SUBMIT ('ZTESTSSSSS') VIA JOB w_name NUMBER w_number
                    AND RETURN
                    WITH p_recnnr = p_recnnr.
            CALL FUNCTION 'JOB_CLOSE'
              EXPORTING
                jobcount             = w_number
                jobname              = w_name
                strtimmed            = 'X'
              EXCEPTIONS
                cant_start_immediate = 1
                invalid_startdate    = 2
                jobname_missing      = 3
                job_close_failed     = 4
                job_nosteps          = 5
                job_notex            = 6
                lock_failed          = 7
                OTHERS               = 8.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDFORM.  "User_command
    Thanks,
    Kumar

  • Background jobs are scheduled in future date

    Hi
    A system which is used by a customer test system was installed and scheduled the jobs in 2010( in future date).
    Now we have changed the date to current date. But still all the background jobs are in future date.
    There are around 500 jobs are scheduled. And it not possible to reschedule one by one.
    Is there any way workaround to change it back to current date format.
    Best Regards,
    Jai

    Dear Jai,
    The jobs scheduler should have this dates changed to current.  If its a third party system which are running these batches, then be careful to convey the same message to the 3rd party.
    If its in SAP, then the schedule change date should execute your jobs. At the same time, ensure that the transports between the test systems match to the destination.
    Do let me know for any clarification.
    Thanks
    Madhu

Maybe you are looking for

  • Can't delete ftp content

    I was trying to delete all my files from the ftp server, but when I drag my files to trash, it appears a message says it can't delete, with error code -61. I tried making an empty folder and upload to it in order to delete its content but also failed

  • Virtual PC 7 Quit Unexpectlly

    Hi, I have Virtual PC 7 installed on my PowerBook. With that I was able to install Windows 2000 on it and run it without any problems. However when I tried to open Preference under Virtual PC the program will quit without any warning. The next thing

  • Anyone have a single report or dashboard with proposals / projects together

    While doing portfolio rationalization, we are seeking a single report or dashboard with proposals / projects together. We need to know what our planning horizon looks like based on our active projects along with the proposals. Does anyone have sugges

  • Using SQL query directly in DI

    Hi, I have a five long SQL query that extracts columns from 2 tables based on conditions and creates 5 new tables with new columns. The query looks some thing like this: select a.num_1, b.unid, c.tycod, min(b.csec) - min(a.csec) turnout into #tab1 fr

  • Is it possible to link itunes accounts?

    Is it possible to link itunes accounts?  My fiance and I both have accounts and want to merge them so we don't lose our music! Thanks!