How sm36 a job that will be executed every 2 hours in current day.

i need define a job with sm36. The job must be executed current day and every 2 hours. i can't realize it. Could you help me? . It mentioned that the job exclude next day's time before the current defination's time.
  pleas help me ,thanks very much!

Hi,
In SM36 once u entered job name & job class, then select the TAB - START CONDITION .There u can find relevent tabs according to ur requirement like for successor jobs or u can schedule for hourly also under PERIODIC values.U need to be very careful before u r sheduling periodic jobs.
Rgds,
Gadde.

Similar Messages

  • How to make table that will include controls such as drop list?

    How to make table that will include controls such as drop list?
    I need to create table as Property Browser of ActiveX, that include rows with differnt types such as drop list, color, ...

    Hi Nadav,
    I figured out where I missed your point. When you wrote
    table as Property Browser of ActiveX, that include rows with differnt types such as drop list, color, ...
    I was thinking mixed data-types in a [2d] table!
    Looking at the property browser again it looks like no single LV function can do all of that. It can be developed as a pop-up (like the browser is set-up) and then code all of the elegance using an event structure to control the background color of a string indicator while controling the visability of rings that are only made visable when a mouse down is detected. That will get you pretty close.
    So no, my previous response ws not correct for what you are trying to do if you want to duplicate all of the wistles and bells of the property browser pop-up window.
    Please forgive my distraction.
    Ben 
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to choose fields that will be displayed on CFL?

    Dear All,
    How to choose fields that will be displayed on CFL?
    Thank u

    hi ,
    please go through the following code
    Case SAPbouiCOM.BoEventTypes.et_CHOOSE_FROM_LIST
                    Dim oDBs_Head As SAPbouiCOM.DBDataSource
                    Dim rs As SAPbobsCOM.Recordset = objMain.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    Dim rs1 As SAPbobsCOM.Recordset = objMain.objCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.BoRecordset)
                    Dim oCFL As SAPbouiCOM.ChooseFromList
                    Dim CFLEvent As SAPbouiCOM.IChooseFromListEvent = pVal
                    Dim CFL_Id As String
                    objForm = objMain.objApplication.Forms.Item(FormUID)
                    oDBs_Head = objForm.DataSources.DBDataSources.Item("@ZAM_CO1")
                    CFL_Id = CFLEvent.ChooseFromListUID
                    oCFL = objForm.ChooseFromLists.Item(CFL_Id)
                    Dim oDT As SAPbouiCOM.DataTable
                    oDT = CFLEvent.SelectedObjects
                   If oCFL.UniqueID = "CFL_3" Then
                            Try
                                oDBs_Head.SetValue("U_RStaff", 0, oDT.GetValue("firstName", 0) + " " + oDT.GetValue("lastName", 0))
                            Catch ex As Exception
                            End Try
                        End If
                   If oCFL.UniqueID = "CFL_4" Then
                            Try
                                oDBs_Head.SetValue("U_App1", 0, oDT.GetValue("firstName", 0) + " " + oDT.GetValue("lastName", 0))
                            Catch ex As Exception
                            End Try
                  End If

  • Job to execute every half hour

    Hello,
    I need to create a job which should execute every half hour starting from morning 6:AM to evening 4:PM every day.
    How can I do this?
    Thanks

    Try something like this
    VARIABLE jobno number;
    BEGIN
    DBMS_JOB.SUBMIT(:jobno,
    'begin if (to_char(sysdate, 'HH24MI') between '0600' and '1600') then my_proc; end if; end;'
    TRUNC(SYSDATE, 'HH')+ 1/24,
    'TRUNC(SYSDATE,''MI'')+30/(24*60));
    commit;
    END;
    Message was edited by:
    Jens Petersen                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • I need to create a schedule that will be performed every day

    Hi,
    I need to create a schedule that will be performed every day. Must start at a specified time and finish their work at a certain time. Joby hooked to this schedule must do their work in a loop, until he completed the work to the procedure. Do you have any solution?

    6e4e5455-0183-4163-be68-1e68fc529042 wrote:
    Hi,
    I need to create a schedule that will be performed every day. Must start at a specified time [...]
    Easy, use DBMS_SCHEDULER to schedule the job to start at a particular time every day.
    [...] and finish their work at a certain time. [...]
    What should it do if it finishes early? What should it do if it hasn't finished its work by the given time? There may be things you can do to make it crash out at a given time - but its helpful to know what your aims are first.
    Joby hooked to this schedule must do their work in a loop, until he completed the work to the procedure. Do you have any solution?
    I don't have a clue what that last sentence means, let alone a solution.

  • My daughter's phone racks up data usage every 12 hours, twice a day, even though she isn't using it. Anybody know why this would be happening or how to track it/stop it?

    My daughter's phone racks up data usage every 12 hours, twice a day, even though she isn't using it. Anybody know why this would be happening or how to track it/stop it?

        Its all good, TimN8128! Mrhelper is corret with regards to making sure that mobile data is turned off when on WiFi or when not connected to WiFi, if you do not want the phone to access data services to update or refresh app services. These applications can all be configured by going to Settings and reviewing all apps that appear in that area. You can also configure a bit further by going to Settings>Cellular.
    NicandroN_VZW
    Follow us on twitter @VZWSupport

  • How to setup a daily schedule job that will run a PL/SQL procedures every night

    I have an update program that will need to run every night, can I setup a schedule job in data server?

    Hi Kane,
    You can try to use the package DBMS_JOB.
    In the package specification is a description how to use it. The parameter called INTERVAL can be used to start your job every night.
    Hope this helps...

  • Trigger a job based on a job that will be created during runtime

    I searched sdn and I did not find any threads addressing my issue(Trigger JOB B after a JOB A which will not be available untill runtime).
    My Req:
    I have a where in, a JOB 'A' will trigger to execute a BDC session in program A using a SUBMIT ...RETURN statement.
    I will have to trigger a different job 'B' using program B, the moment the 1st job runs completed.
    I thought this would be possible, by handling the events and trigger the FM in program A after the SUBMIT statement. But the problem is SUBMIT statement would just create the job and return the control back to the program A and immediately call the FM to raise the EVENT. In this case, my job B will trigger and even complete before JOB A could complete successfully.
    I tried using AFTER JOB option in SM36 instead of AFTER EVENT. The problem with this option is, JOB A will be available ONLY during runtime and hence cannot schedule program B with the option AFTER JOB.
    Any thoughts are highly appreciated.
    Thanks for your help.
    Best Regards,
    Kiran

    Hi Thomas,
    I programmed the way you mentioned and this triggers both the jobs at the same time.
    DATA: number  TYPE tbtcjob-jobcount,
          jobname LIKE tbtcjob-jobname.
    jobname  = 'JOB1'.
    CALL FUNCTION 'JOB_OPEN'
      EXPORTING
        jobname          = jobname
      IMPORTING
        jobcount         = number
      EXCEPTIONS
        cant_create_job  = 1
        invalid_job_data = 2
        jobname_missing  = 3
        OTHERS           = 4.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ELSE.
      SUBMIT zhbn_life_premium_summary_rpt
      VIA JOB    jobname
          NUMBER number
          AND    RETURN.
      IF sy-subrc EQ 0.
        CLEAR: jobname.
        jobname = 'JOB2'.
        CALL FUNCTION 'JOB_OPEN'
          EXPORTING
            jobname          = jobname
          IMPORTING
            jobcount         = number
          EXCEPTIONS
            cant_create_job  = 1
            invalid_job_data = 2
            jobname_missing  = 3
            OTHERS           = 4.
        IF sy-subrc <> 0.
          MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
        ELSE.
          SUBMIT zhbn_life_premium_summary_rpt
          VIA JOB    jobname
              NUMBER number
              AND    RETURN.
          IF sy-subrc EQ 0.
            WRITE: 'job 2 success'.
            jobname = 'JOB2'.
            CALL FUNCTION 'JOB_CLOSE'
              EXPORTING
                jobcount             = number
                jobname              = jobname
                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
                invalid_target       = 8
                OTHERS               = 9.
            IF sy-subrc <> 0.
              MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                      WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDIF.
      jobname = 'JOB1'.
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = number
          jobname              = jobname
          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
          invalid_target       = 8
          OTHERS               = 9.
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDIF.
    Am I missing anything?
    Thanks
    Kiran

  • Job that will be release in a predefinite period of time, in future

    Hello guys,
    Is there any easy way to find out which jobs will run for example on 31st of December ?
    I know that the jobs that are daily or weekly are not set to status RELEASE until 1day before or 1 week before, in the case of weekly ones.
    How can I discover all those jobs ?
    Thanks in advance
    Edited by: Daniel_Bul on Dec 13, 2011 2:30 PM

    Not answered, not important

  • How to Statistic program that not be executed?

    hello:
       I use T-code STAD to access the statistics files and display the statistical records,all executed program can be displayed.
      But I want to Statistic program that not be executed,so thatI can delete these program.
      anyone can help me?
      Thanks a lot
        le xian

    Hi,
    If i understand correctely, you are looking for a report which will delete the statistics logs, or you need stop this trace.... if yes then below is the answer ..
    In active systems, the R/3 statistics file is constantly written to with statistics data records, provided the statistics indicator in the SAP startup profile is set to "stat/level = 1". Another relevant factor are the statistics parameters in the instance profiles (stat/...rec). However,  The statistics file is usually deleted - when the batch job SAP_COLLECTOR_FOR_PERFMONITOR or COLLECTOR_FOR_PERFORMANCEMONITOR is
    scheduled (hourly=default value is the best) - when it reaches a certain
    size. The default value is currently 100 MB, which corresponds to about
    200,000 to 300,000 (depending on release) statistics entries (about
    300,000 screen changes). For each screen change in the SAP System, about
    340 - 500 bytes are written to the statistics file (when statistics
    recording is switched on and standard setting).
    Hope this will help you, let me know if you are looking for something else.
    Best Regards,
    Sachin.

  • Print job that will not die

    I have never seen this one before - a print job that magically reappears over and over after being deleted. Does anyone know what this is? Has anyone seen this before? Here are the specifics:
    Printer is and HP laserjet connected via USB to computer A which is a G5 iMac running OSX, current update as of today minus one. Computer A has Appletalk enabled over the ethernet, and printer sharing turned on for this printer. The logged in user is not the system administrator, it is a non-administrator user.
    Computer B is a G4 iMac, running OSX 10.3, Appletalk enabled via ethernet. The two computers are connected to an ethernet router. The printer for Computer B is set to the remote printer from Computer A.
    Computer B sends a print job from Microsoft Word, which get sent to Computer A. It disappears from the print queue on Computer B. It appears on the print queue for Computer A, and starts printing - 100 copies!
    The print queue on Computer A is stopped, the job is deleted. The print queue is turned back on.
    The job REAPPEARS and starts printing again.
    The queue is stopped and the job deleted - same result! The job reappears. So the queue is stopped, the job is deleted, the printer shut off and restarted, and the computer restarted. The print queue is turned back on.
    The job REAPPEARS and starts printing again!
    Eventually, the only way to kill this job was to DELETE the printer and recreate it!
    What on earth was this problem? Has anyone ever see a print job that would NOT go away???

    Hi ....
    I understand the issue with ur printer. and with the present set of OS this issue can be resolved.
    !! Prior to this u need to reset the printing services and then have a download of the recent set of drivers from the Vendor website.
    IF not then u need to delete the HP Printer folder and the HP Preferences from the Libraby folder....
    How to get there ::
    Double Click : MAC HDD icon
    select Library : and select Preferences.
    Do re-install the drivers for the Printer.
    Hope this may resolve ur issue.

  • How to develop pages that will be run inside Jdev11

    Hi, I am using Jdev11 and ADF BC. We have some requirement to develop some Admin UIs which will be run inside Jdev11, I am wondering if it's possible to do. Is there any documents/examples on how to do it?
    Thanks!

    If I understand you correctly you are trying to build some interface in JDeveloper that will let you manipulate the definitions of ADF BC objects.
    Now the main question is whether you want to do the customization at runtime or design time.
    If you want to do it in design time - then the extension will manipulate the ADF BC XML definition files and then when you package the application it will be deployed to the server with your customization.
    If you want to do runtime customization then the answer is the MDS layer that we are going to introduce in release 11. This repository gives you API to change runtime customizations.
    MDS is not part of the public technology preview yet.
    If you are an Oracle Employee you might want to talk with the MDS product managers to get more information about the APIs they offer.

  • How to repair applications that will not start

    I have programs that will not start on my iMac . I have never had one issue since purchased . Do I need to reinstall lion to resolve my issues?
    Thank you in advance for your responses.

    Check with this compatability table, check with the specs of the program, watch for the "for 10.5+" that doens't mean it will work for 10.6 or 10.7.
    http://roaringapps.com/apps:table
    Use the developers uninstaller if possible, if not consult on their site etc., what is the manual uninstall methods.
    Some programs have to use a uninstaller.
    Sometimes you can simply drag and drop the program from the Applicaitons folder to the trash and that will be that, others have other bits in the System/Library/Extension folder (dangerous!) that can be removed by hand IF you know what to look for.
    Usually a program will have it's name or other id info in their files, one can use Easy Find to locate all these named files. However don't go deleting without backing up your data off the machine.
    delete the wrong file and your Mac will refuse to boot up
    I don't advise "app undelete" programs, they tend to make people think that the app undelete program knows the right files to undelete and it doesn't, it just does a simple name search.
    Good Luck

  • How to find jobs that are scheduled.

    I am providing backup DBA support for a dba who's out of the office.
    There were jobs that were originally scheduled in cron that are no longer there.
    I've looked in OEM to see if the jobs were moved and scheduled as events and don't see them.
    I've also queried dba_jobs and all_jobs to see if I can find them. No luck.
    I know the jobs are scheduled somewhere since they ran last night.
    Does anyone have any suggestions on where else I might find these jobs?
    Thanks in advance.

    Just for future reference for anyone who may be in the same boat.
    The backups I was trying to find are scheduled using Tivoli (TSM) scheduler. There's a text file that the scheduler picks up and reads, then within the AIX shell script is coded to the spcific days for the backups.
    So I guess the bottom line is, if you can't find anything in cron, or OEM, ask the system administrators.
    Thanks.

  • How do I merge data from table1 on server 1 to final table on server 2 with a stored procedure to execute every 4 hours.

    How do I merge data from table1 on server 1 to final table on server 2 with a stored procedure to execute every so many hours.

    Hello,
    If you had configure server2 as
    linked server on the server1, you can run the following statement inside stored proceduce to copy table data. And then create a job to the run stored proceduce every 4 hours.
    Insert Into Server2.Database2.dbo.Table2
    (Cols)
    Select Cols From Server1.Database1.dbo.Table1
    Or you can use the SQL Server Import and Export Wizard to export the data from server1 to server2, save the SSIS package created by the wizard on the SQL Server, create a job to run the SSIS package. 
    Reference:http://technet.microsoft.com/en-us/library/ms141209.aspx
    Regards,
    Fanny Liu
    Fanny Liu
    TechNet Community Support

Maybe you are looking for

  • User exits/ BADI for batch determination

    Hi, I need any user exits or BADI's which are triggered even before the batch determination is done. In One of my requirement ,during TO creation i need to pass, ship to KOMPH table( since SHIP TO is not available during a TO) to make it available fo

  • Does firefox has the clip feature that internet explorer has for clipping a article and pasting it to a document.

    internet explorer (my os is win 8) has a feature that allows the user to clip and article and paste it to a document, does mozilla has the add on comparable to this, if so where is it and how do I acquire it.

  • Consignment Invoice

    Hi Guys, I have some clarification in Invoicing . 1) . In MIRO we have given wrong pice , How it will be changed ? 2)  In MRKO transaction Consignmetn settled .How it will be  cancel led or modify the changes in taxcode. Please help us to solve this

  • LibreOffice Fonts Not Rendering Smoothly

    This is kind of hard to explain, but in LibreOffice Writer (GNOME) the fonts don't seem to render smoothly when changing to zoom factor.  It's like when you zoom in, rather than adjusting the font size smoothly, the letters just end up looking bold. 

  • Serious problem using frameworks!!!

    Hi! I am using WAF framework... I have to do something like this.... a screen which supports Add,Delete,Copy functionality.... the details are shown row by row.... so When I hit the Add or Delete or Copy buttons once... a row is added or deleted or c