Info Package-Schedule Jobs in Back ground

Hi,
   I want to schedule a job in back ground,I can find that option under schedule tab in the infopackage,
But there is a similar data flow for different data targets when i checked the info package
The column-Job Name Prefix/Sufic is filled with some value
what exactly Job Name Prefix/Sufix will do
Thanks

Hi
Thanks for the info provided,But u misunderstood my question
I want to know what exactly the function of Job name prefix/sufix
in the schedule
Thanks

Similar Messages

  • Problem in scheduling job in back ground

    hi all,
    My project scenario is ,i have written a program to create WBS element.
    For 1 WBS creation ,In production it takes 20 to 30 min to create as there are many transactional bdcs.
    so i want to run that perticular code (all bdcs) in back ground.
    so i wrote another program with name 'zback_job_for_wbs_creation' and added all the required code.
    in old program,i have written some code to execute this new program in back ground . this code is below..
    FORM submit_for_job.
      TABLES:btcevtjob.
      DATA:l_jobname LIKE tbtco-jobname,
           l_jobnumber LIKE rsjobinfo-jobnumb.
      DATA: count LIKE btcevtjob-jobcount,
            jobname LIKE btcevtjob-jobname.
      DATA: job_was_released LIKE btch0000-char1.
      jobname = 'WBS_CREATION'.
      EXPORT s_scrnum TO MEMORY ID 'W_SCRNUM'.
      EXPORT iscrh TO MEMORY ID 'W_ISCRH'.
      EXPORT iscrl1 TO MEMORY ID 'W_ISCRL1'.
      EXPORT iscrl2 TO MEMORY ID 'W_ISCRL2'.
      EXPORT iscrl2b TO MEMORY ID 'W_ISCRL2B'.
      EXPORT iscrl2a  TO MEMORY ID 'W_ISCRL2A'.
      EXPORT iscrl1a  TO MEMORY ID 'W_ISCRL1A'.
      CALL FUNCTION 'JOB_OPEN'
            EXPORTING
                  jobname          = jobname
           IMPORTING
                  jobcount         = count
      SUBMIT zback_job_for_wbs_creation
      with S_SCRNNUM IN S_SCRNUM
      and return via JOB JOBNAME NUMBER COUNT TO SAP-SPOOL
      WITHOUT SPOOL  DYNPRO.
      CALL FUNCTION 'JOB_CLOSE'
          EXPORTING
         jobcount                    = count
         jobname                     = jobname
          strtimmed                   = 'X'
        IMPORTING
             job_was_released            = job_was_released
       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
    here i have put break-point in my submitted program..but its not going to the program and job gets closed successfully without executing my code( Submitted Program).
    in above submit statement , if i just write submit progname and return ,then it goes to program.
    but job_close function module throws exception no 5.
    so pls help me out for this..
    i want my submitted program to be run in back ground..
    thanks.

    Hi,
    Start Job Monitor SM37 and search for your job. I think you will find it.
    Jobs are not linked to GUI frontend. So you can't debug your background job in that way.
    If you want to debug you must be tricky.
    Code a never ending loop with an exit condition which you can control by debugging.
    DATA:
    stop_for_capture.
    DO.
    IF sy-uname NE 'HABICH'. "change to your account
    EXIT.
    ENDIF.
    IF NOT stop_for_capture IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    When your job is running, start TA SM50 and mark relevant batch work process and
    choose by menu program -> program -> debugging.
    regards
    Walter Habich

  • MRP - scheduled at the back ground???

    hii
    Can somebody explain me how to set MRP to be scheduled at the back ground.
    I have to create New MRP controller and do the MRP scedule at background for the same.
    Step by steps activities for this and if any ABAPer help we have to get , mention that also.
    Thanks

    hii kumar
    Thanks for ur response.
    But i have gone through, still i need some clarification.
    Whethere in satandard SAP system there no possibilities to do MRP scheduling at Back ground at MRP controller level.
    What i m asking , i have one company code , 4 plants , i have only one MRP controller.
    Using that controller i have to do the MRP setting at background (Automatic).
    Note: One  MRP controller is used for every material type , hence we have only one MRP controller.
    For abouve requirement ,suggest how to proceed furthere .
    Thanks

  • MRP scheduling at the back ground??

    hii
    Can somebody explain me how to set MRP to be scheduled at the back ground.
    Step by steps activities for this  and if any ABAPer help we have to get , mention that also.
    Thanks

    Hi,
    Plz refer this thread
    [mrp;
    Regards
    Madhu

  • Problem in Date info at scheduling jobs....

    Hi...
    I have defined a materialized view ..
    create materialized view mv_ekkrem_vlavon
      build immediate
      refresh on demand
      as
    select distinct seq_code_eidos .....I want to create a scheduled job using the DBMS_SCHEDULER which will refresh this materialized view ... doing a full refresh of its contents....
    so....i following the following steps...-connected as sys:
    begin
      dbms_scheduler.drop_job('mv_ekkrem_vlavon_job');
    end;
    begin
      dbms_scheduler.drop_schedule('mv_ekkrem_vlavon');
    end;
    begin
    dbms_scheduler.create_schedule
    ('mv_ekkrem_vlavon','15/08/2007 17:20:00','FREQ=DAILY;INTERVAL=1');
    end;
    exec dbms_scheduler.create_job(job_name=>'mv_ekkrem_vlavon_job',schedule_name=>'mv_ekkrem_vlavon',job_type=>'PLSQL_BLOCK',job_action=> 'BEGIN dbms_mview.refresh(''mv_ekkrem_vlavon''); END;');
    exec dbms_scheduler.enable('mv_ekkrem_vlavon_job');However , after 17:20:00 local time (db time) the mv refresh did not take place....
    Trying to find out what may be the reason... i issued the following command:
    SQL> select job_name,schedule_name,start_date,repeat_interval,last_start_date,next_run_date from dba_scheduler_jobs
      2  where job_name='MV_EKKREM_VLAVON_JOB';
    JOB_NAME                       SCHEDULE_NAME                                                                    START_DATE                                                                       REPEAT_INTERVAL                                                                  LAST_START_DATE                                                                  NEXT_RUN_DATE
    MV_EKKREM_VLAVON_JOB           MV_EKKREM_VLAVON                                                                 15/08/20 07:17:20,000000 +03:00                                                                                                                                                                                                                    15/08/20 07:17:20,000000 +03:00and issuing the command:
    SQL> select to_char(NEXT_RUN_DATE,'dd/mm/rrrr hh24:mi') from dba_scheduler_jobs where job_name='MV_EKKREM_VLAVON_JOB';
    TO_CHAR(NEXT_RUN_DATE,'DD/MM/R
    15/08/2020 07:17
    SQL> Select to_char(START_DATE,'dd/mm/rrrr hh24:mi') from dba_scheduler_jobs where job_name='MV_EKKREM_VLAVON_JOB'
    2 /
    TO_CHAR(START_DATE,'DD/MM/RRRR
    15/08/2020 07:17
    Can you find out which is the error in the job definition...????
    Needless to write that i use Oracle Db10g.
    Many thanks,
    Simon

    Hi,
    The repeat_interval gets its timezone from the start_date parameter so if you want the job to run every 9am in a particular timezone XXX you would need to do something like
    START_DATE => SYSTIMESTAMP at time zone 'XXX',
    REPEAT_INTERVAL => 'FREQ=DAILY; BYHOUR=9;byminute=0;bysecond=0',
    XXX can be something like -2:00 or a named time zone.
    There is a dedicated dbms_scheduler forum at
    Scheduler
    Hope this helps,
    Ravi.

  • JOB IN BACK GROUND

    I MADE THIS AND IT'S NOT WORK WHY???
    I MUST RUN IT ONLY IN BACKGROUD,IF I MADE
    PROGRAM---->EXECUTE IN BACKGROUD IT'S WORK???
    data: name like tbtcjob-jobname.
    data: number like tbtcjob-jobcount.
    DATA: PARAMS LIKE PRI_PARAMS,
    DAYS(1) TYPE N VALUE 2,
    COUNT(3) TYPE N VALUE 1,
    VALID TYPE C.
    CALL FUNCTION 'GET_PRINT_PARAMETERS'
    EXPORTING DESTINATION = 'LOCAL'
    COPIES = COUNT
    LIST_NAME = 'TEST'
    LIST_TEXT = 'SUBMIT ... TO SAP-SPOOL'
    IMMEDIATELY = 'X'
    RELEASE = 'X'
    NEW_LIST_ID = 'X'
    EXPIRATION = DAYS
    LINE_SIZE = 79
    LINE_COUNT = 23
    LAYOUT = 'X_PAPER'
    SAP_COVER_PAGE = 'X'
    COVER_PAGE = 'X'
    RECEIVER = 'SAP*'
    DEPARTMENT = 'System'
    NO_DIALOG = ' '
    IMPORTING OUT_PARAMETERS = PARAMS
    VALID = VALID.
    IF VALID <> SPACE.
      CALL FUNCTION 'JOB_OPEN'
           EXPORTING
                jobname          = name
           IMPORTING
                jobcount         = number
           EXCEPTIONS
                cant_create_job  = 1
                invalid_job_data = 2
                jobname_missing  = 3
                OTHERS           = 4.
      IF sy-subrc = 0.
        SUBMIT rxxxx TO SAP-SPOOL
        SPOOL PARAMETERS PARAMS
        WITHOUT SPOOL DYNPRO
         WITH datum IN r_datum
         WITH sum = 'X'
         VIA JOB name NUMBER number
         AND RETURN.
        IF sy-subrc = 0.
          CALL FUNCTION 'JOB_CLOSE'
               EXPORTING
                    jobcount             = number
                    jobname              = 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.
          IF sy-subrc <> 0.
          ENDIF.
        ENDIF.
      ENDIF.
    ENDIF.

    Hi Rani,
    What is the error that you are getting???
    Thanks & Regards,
    YJR.

  • Scheduling report in back ground after the previous report is executed

    Hi,
    There is one report which will be executed manually, once that is executed my report should be executed automatically in background.
    Pls help me in how to do this.
    Thanks,
    Lucky

    Hi,
    In the first report, try this code:
      DATA l_jobcount TYPE tbtcjob-jobcount.
      CALL FUNCTION 'JOB_OPEN'
        EXPORTING
          jobname          = 'TEST_JOB'
        IMPORTING
          jobcount         = l_jobcount
        EXCEPTIONS
          cant_create_job  = 1
          invalid_job_data = 2
          jobname_missing  = 3
          OTHERS           = 4.
      IF sy-subrc <> 0.
        CASE sy-subrc.
          WHEN 1.
            MESSAGE e054(bl)
          WHEN 2.
            MESSAGE e008(mi_badi)
          WHEN 3.
            MESSAGE e009(mi_badi)
          WHEN 4.
            MESSAGE e703(fkjo)
        ENDCASE.
      ENDIF.
      SUBMIT z_second_program
        WITH p_param1 =  'TES'
        WITH s_select_option IN s_range
        VIA JOB 'TEST_JOB' NUMBER l_jobcount
        AND RETURN.
      IF sy-subrc EQ 0.
        p_submit = true.
      ENDIF.
      CALL FUNCTION 'JOB_CLOSE'
        EXPORTING
          jobcount             = l_jobcount
          jobname              = 'TEST_JOB'
          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.
        CASE sy-subrc.
          WHEN 1.
            MESSAGE e012(mi_badi)
          WHEN 2.
            MESSAGE e013(mi_badi)
          WHEN 3.
            MESSAGE e009(mi_badi)
          WHEN 4.
            MESSAGE e014(mi_badi)
          WHEN 5.
            MESSAGE e015(mi_badi)
          WHEN 6.
            MESSAGE e541(scpr)
          WHEN 7.
            MESSAGE e267(arch_ana)
          WHEN 8.
            MESSAGE e216(xm)
          WHEN 9.
            MESSAGE e727(fkjo)
        ENDCASE.
      ENDIF.

  • Error in Back ground job schedule for call transaction

    Hi Experts ,
    I have a Program which as Three BDC in it . 1 - to create contact person , 2- customer 3-sales order
    Using call transaction if i run with all screens and no screens it's running fine..
    if i schedule it background job
    conact and customer works fine but sales order not works ..
    can anyone give me the solution ?

    Hi Phani and Pavan ,
    It works Fine for Back ground anf fore ground i.e ( N and A )  sales order is created here .
    but Sales order not created when i schedule it in back ground  as
    Program - execute in back ground  .
    sales not created when i schedule it in background job  only using SM36 or Program - execute in back ground  ?
    Edited by: Pradeep Annaiah on Jan 13, 2009 5:29 AM

  • Schedule the Back ground Job with Fiscal Year Vaient????

    Hello Guru's,
    Please let me know the process of "Schedule the Back ground Job with Fiscal Year Vaient" in APO DP?
    Great thanks for your help.
    Regards,
    Sree

    Hi Venkat,
    As i told i am maintaining the periods as 5-4-4, So i want schedule the job as first after the 5th week, then after the 4 th week, then after the 4th week and again after the 5th week ...... like that....
    can we schedule the job in back ground as per this periodically???
    Thanks for the response.
    Regards,
    Sree!!
    Edited by: sree gunti on Nov 26, 2008 3:30 PM

  • Back ground jobs after upgradation

    Hi Experts
    Can you please clarify whether the back ground jobs and the time schedules of the back ground jobs will be copied after upgrade from 4.6b system to ECC.60 or do we need to configure and schedule the back ground jobs through sm37 after upgrade?
    Please post as soon as possible.
    Thanks & Regards
    Roja

    I think it depends on the server that is copied in the Upgraded Box. If you copy the data from Production, the jobs should be intact.
    If you copied Production data, then compare the scheduled jobs in both environments.
    If helps, pl do reward
    Thanks
    Narasimha

  • Job cancel in back ground

    Hi all,
    i have processed a job in back ground job scheduling.
    But i want to cancel it using t.code SM36.
    I have seen that there is delete button, which is not suitable to cancel.
    Can anyone help in this regard.
    Thanks in advance
    Venkat

    Dear Venkat
       If the job is in active state. Go to SM37 -> Selecet the respective Job -> Ctrl+F1 or you can click on STOP button in application tool bar.
       Similary you can delete job using Shift_F2
    Thanks
    Eswar

  • Back Ground Job not showing in SM50,

    Hi Friends,
    I am running XK99 to Mass update Vendor details in Back ground, I am getting some error while running the job in back ground, I would like debugg the issue.
    But in SM50  Iam not able to see the job I sechduled using program MASSBACK or transaction XK99.
    Please let me know, what could be the problem.
    Thanks,
    Veerendra.

    Hi,
    Try this - goto SM37 select the background job and enter JDBG in the command field (similar to entering /h to debug).
    Cheers.
    ...Reward if useful

  • Material Document schedule job printing.

    Dear All ,
      I had configured all configuration to print the material document details in a smartofrm . All details are copied in the material document from output determination.
    if i set printing preference  4.send immediately (when saving the application) i am getting the output in the printer. Here the status is green .
    Here my user want to set the preference as 1.send with periodically scheduled job , so that all the material documents will be printed at the same time.
    How to schedule this in back ground job . I had tried in MB90 its not working there.
    Thanks in advance.
    Regards
    Srihari.P

    Hi,
    You can schedule the Job for the Despatch time  3. Send with application own transaction  also, for this you have to select the program to run for the Job, as you said you can schedule the JOB on the program of MB90
    for Using the Despatch time 1. 1. Send with periodically scheduled job, you have to run or setup job for the Program RSNAST00
    Manually you can also run the program RSNAST00 in SE38 to chcek whether the OUTPUT was processed or not
    Goto SE38 and with the RSNAST00 ,, execute and enter the Details of Application area ME and OUTPUT type and the Document number.
    Then  in the Menu click on Program--Exdcute in Back ground. It will run and in SM37 you can find the Processed outputs or Logs if any in case if they are not processed. you can then trace the error
    In the foreground you cant identify the eror or reason of why it was not processed.
    regards,
    santosh

  • Back Ground Sheduling

    Hi Experts,
    Can anyone solve my problem.
    I want to Execute BDC for 'ME21' transaction 3 times for a day. That means for every 8 hours the BDC should be executed with out manual interacation.The BDC should be done automatically.
    Please solve my problem how to schedule this in Back Ground or any other way to reach my requirement.
    Thanks & Regards,
    Kumar.

    Hi,
    Go to SM36.
    Create a new job by any name.
    Add steps in it.
    In the step specify the program which you want to run along with the variant.
    Then schedule the job.
    Schedule the job immediately or at particular time.
    The Job can be also marked as a periodic job incase it has to run daily.
    Kindly check this link.
    [http://help.sap.com/saphelp_erp60_sp/helpdata/EN/c8/6a56389f64246fe10000009b38f889/frameset.htm]

  • Report Queue Manager  - Scheduled Jobs

    Question: How/where does the Queue Manager store info for scheduled jobs?

    It is possible (IN 9iAS) to configure the Reports Server to store all requests in a database table. The Table(s) / View(s) are created by the script rw_server.sql located in $ORACLE_HOME/reports/admin/sql
    To configure this options, create the table and view with the rw_server.sql script, then add these lines in the
    <reports server name>.conf file <jobStatusRepository class="oracle.reports.server.JobRepositoryDB"> <property name="repositoryConn" value="user/password@tnsalias" confidential="yes" encrypted="no"/> </jobStatusRepository> The "value" attribute of the property "repositoryConn" should be a user/password@tnsalias that will be used to connect to the database. The account must have access to the tables created by the script rw_server.sql The combination confidential="yes" and encrypted="no" will provoke the encryption of the value attribute once the Report Server is re-started : After the Reports Server has started you will find: <jobStatusRepository class="oracle.reports.server.JobRepositoryDB"> <property name="repositoryConn" value="ihjFFBFD3jk5Xfrd5HeX5w3dE/E=" confidential="yes" encrypted="yes"/> </jobStatusRepository> Description of the rw_server_queue view columns can be found in the script rw_server.sql itself.
    Thanks,

Maybe you are looking for

  • Error 11503 Whenever I try to download music.

    Can anyone help me? I keep getting error 11503 whenever I try to download music. I updated iTunes, restarted my computer and nothing works. Pleeaasssseeee help. Music is my life.

  • Cleaning up edited photo files

    I have just joined the forum and reviewed 30 pages of topics without finding this covered, although I did learn a lot. After doing numerous edits to RAW files, which were saved a TIFF, I decided to use JPEG instead to conserve disk space. To make sur

  • The color problems  of I mac

    when it starts, it's normal color like before. But After the booting, the color of monitor changed. No Grey color. it looks like posterized. I checked all setting of display but It's ok. I heard that's not hardware problem because when it started, it

  • Problem using items with jQuery mobile

    I currently encountered two issues with the jQuery mobile template in APEX. - Textfield with autocomplete is not supportet and doesn't work - Date field should be supportet but doesn't work in most browsers Is there anything planned in APEX 5 to find

  • Volume in multi cam sequences drastically lower than source clips

    When I put a multi cam sequence into a new sequence the volume level is drastically lower than on the source clips.  Each source clip has 2 mono audio tracks instead of 1 stereo track.  Does that make a difference? Rex