Reg the job creation

Hi,
I want to schedule jobs with startdate but with no start time.How can i do this?
When I am trying to do like this, its throwing an exception saying that invalid start date.I am working 45B.
Thanks,
Vijaya.

Hi vijaya,
You have to specify a time, specify 0:01 if you just want to run the job once.
Regards,
John.

Similar Messages

  • Reg the job Configuartion

    Hi Guys,
    There is any Configuration present to delete the spool file of job after 30 or 40 Days of its execution.
    If you know Answer please replay to this mail.
    Reg,
    Hariharan

    Hi Hariharan,
    There are standard jobs that your basis team will set up as part of the system installation to do this, they will decide the retention period when they create the jobs.
    Program RSPO0041 will delete old spool requests.
    and
    Program RSBTCDEL will delete old job logs.
    Both have selection screen parameters that specify how long things are kept.
    Regards,
    Nick

  • A question about Job Creation

    Hi Expert,
    By JOB_OPEN, JOB_SUBMIT, JOB_CLOSE, we can schedule a job.
    When the first two FMs is executed, the job is still in 'scheduled' status. Only when the FM JOB_CLOSE is executed, the job will be in 'released' status.
    In my applicaiton, I need to check the job status. If the job is in 'scheduled' status, I think that the job creation is not successsful; Otherwise, the job creation is successful.
    But the issue is, if job is in 'scheduled' status, how can I know whether all three FMs is executed in the job creation or only JOB_OPEN and JOB_SUBMIT are executed while JOB_CLOSE still not starts?
    In the later case, the applicaiton should wait some time and check the job later.
    Thanks for your support
    Best Regards, Johnney.

    Hi,
    Suppose there two APIs.
    In API1, there are four steps:
    1. call FM JOB_OPEN
    2. call FM JOB_SUBMIT
    3. Save the Jobname and Jobcount in the DB
    4. CAll JOB_CLOSE
    in  API2, there are two steps:
    1. get the Jobname and Jobcount from the DB
    2. Call FM BP_JOBLIST_STATUS_GET to get the job status.
    API1 and API2 are executed asynchronically. Consider the following case:
    After STEP3 is executed(STEP4 has not yet been started), the API2 starts to run. Now the job status that API2 get is 'Scheduled'.
    This is not correct, because the job creation is still not finished. The API2 should wait some time and check later.
    So my question, is how API2 know that the job creation is not finished.
    Thanks & Best Regards, Johnney.

  • Regarding ABAP Dump found when saving the job.

    Hi all,
    Generally we create a job and once the job is created,we rasie Sales Order,Purchase Order and so on.
    When we create a job we give the details of the Sold -to-party,client,parent and child job text,advertising category,project type, sales organisation,Cost and profit center,person incharge and purchase division.
    After submitting these details the job gets created and the job number will be generated.
    But now we have created a new Sales Organisation, which is leading to ABAP Dump.
    The functional people have concluded that there is nothing wrong in the configaration settings.
    If we enter an existing sales organisation in the job creation process the job is getting created and the job number is displayed.
    But if we try to enter a new sales organisation the ABAP Dump is comming.
    After debugging we came to know that BAPI function Module called
    Bapi Project Maintain Call and inside that there is another bapi call called
    BAPI_PROJECT_MAINTAIN which is taking some structures as inputs among them
    this new sales org is there.

    Hi all,
    Is there any answer regarding this question.
    Thanx in advance

  • Job creation table

    Dear All,
    May i know what is the table to store a background job's master data? I mean the table which stored the job creation date, change date, change by, event.
    Please comment.

    Hi Friend,
       Check the following table:
           BTCUED
    Hope this helps you.
    Regards,
    Chandra Sekhar

  • Error is thrown ONLY when the job is run doe delivery creation

    Dear SDNres,
    I am facing a tricky issue.
    I have a job that creates Sales order , Delivery, Billing.
    When the sales order contains line items <=8 then the job runs fine and creates delivery successfully
    When the sales order contains line items more than 8, then the job fails on delivery creation and the BDC captures error "customised error''
    Doubt:
    steps in manual creation:
    1)I create a Sales order with line items > 8
    2)then i create delivery manually .
    After the above 2 steps i dont get the error at all in case of manual creation
    But the same steps when the job does for a Sales order with line items >8 then the error comes and job fails.
    Kindly suggest me as to where i need to look for the error.
    Regards,
    SuryaD.

    Thanks for your response Dave.
    Yes i am doing a BDC Call Transaction.
    there is no BAPI.
    Trickier part is when i execute the job through debugging then i do not get the error.
    What could be the reason for this error.
    Is it some error in teh coding?
    regards,
    SuryaD.

  • PJM/ATO Job Creation

    Cannot successfully create a dj for an ATO item that has a project # referenced using the WICDOL module: AutoCreate Final Assembly Orders. Order is scheduled and booked. Status is Awaiting Job Creation. Run AutoCreate. Job completes with a warning. If the same item is ordered and scheduled without a project number I can create a WIP job with no difficulty. A TAR has been opened but the progress has been slow. Any thoughts would be greatly appreciated.

    Hi,
    Just try by giving task number, along with project number. Iam assuming that you are giving project number to all items in the SO i.e. Model, option class,option, etc.
    Reg
    Sreenivas Amisagadda

  • How to get a materialized view get to refresh itself after the job is "broken"

    we created a materialized view sometime ago with the following statement:
    create materialized view SXV_PUB_EMPLOYEE_CERT_ALL_M
    refresh complete on demand
    start with to_date('30-08-2009 04:00:00', 'dd-mm-yyyy hh24:mi:ss') next trunc(sysdate) + (28/24)
    as
    select  sxv_emp_cert_all.*
    from    sxv_employee_certification_all sxv_emp_cert_all;
    this week we found out it had not been refresh for about a month
    In dba_jobs the column broken was 'Y', next_date time something like 01-01-4000 and failures 16
    when I ran it manually by executing
    BEGIN DBMS_MVIEW.REFRESH('SXV_PUB_EMPLOYEE_CERT_ALL_M', 'C'); END;
    I found that one of the columns was too small (probably a columns of one of the underlying tables had been extended since the creation of the materialized view)
    After fixing this I ussied yesterday (on 29-8-2013) the statement :
    alter materialized view SXV_PUB_EMPLOYEE_CERT_ALL_M
    refresh complete on demand
    start with to_date('30-08-2009 04:00:00', 'dd-mm-yyyy hh24:mi:ss') next trunc(sysdate) + (28/24)
    after this the table dba_jobs showed me 30-08-2013 04:00:00 as next date
    I was expecting it to run this night at 04:00, but it didn't
    the last_date column value was still from about a month ago, the column broken still shows 'Y'
    and the next date 30-08-2013 04:00:00 (while it should been set to 31-08-2013 01:00:00
    Rrunning
    BEGIN DBMS_MVIEW.REFRESH('SXV_PUB_EMPLOYEE_CERT_ALL_M', 'C'); END;
    gave no errors this time
    and in User_Mview_Analysis the last_refresh_date column showed the date/time I had executed it
    Any idea how to get the job "unbroken" again so that the view refreshes itself every night?
    the database is Oracle Database 10g Release 10.2.0.4.0
    regards,
    Remco

    thanx for all your helpful and correct answers . but eventually I found it myself
    exec dbms_job.broken(<jobnumber>, false);

  • USER_SCHEDULER_JOBS has LAST_START_DATE as null even after running the jobs

    Hi,
    I have tried creating and running multiple Jobs using following statements, Jobs are executing the given procedure but USER_SCHEDULER_JOBS's last_start_date is null.
    //creation of job
    DBMS_SCHEDULER.CREATE_JOB (job_name => 'demo'||i,job_type => 'STORED_PROCEDURE',number_of_arguments => 2,job_action => 'POPULATE_DATA');
    //running the job using these commands..
    dbms_scheduler.set_job_argument_value(PROCESS_NAME,1,''||START_RANGE);
    dbms_scheduler.set_job_argument_value(PROCESS_NAME,2,''||END_RANGE);
    dbms_scheduler.set_job_argument_value(PROCESS_NAME,3,''||PROCESS_NAME);
    DBMS_SCHEDULER.RUN_JOB(PROCESS_NAME);
    I am able to see data getting getting populated by each job, but USER_SCHEDULER_JOBS has last_start_date value as null.
    Any help will be highly appreciated.
    Thanks,
    Vaseem Saeed.

    hi read this link, there is some explaination about start_date null:
    http://docs.oracle.com/cd/E11882_01/appdev.112/e16760/d_sched.htm

  • Display an error and cancel the job in F110

    Hi all.
    I use a BTE's to check some data in F110 transaction. I want to display some error and abort the proposal creation JOB.
    I can to abort the Proposal creation JOB with RAISE_EXCEPTION command, but I cannot display the error.
    how I can to display an error when I find an issue in Porposal creation JOB ( using BTE's) ?????
    thanks
    Ismael

    You cannot implement exit randomly for F110 cause F110 is stand alone for support Automatic payment transaction for all country.for most the country it have a seperate exit so be carefull before implement exit and make sure for country.
    if you want to check before scheduling a proposal run than you may se at BADi:
    FI_F110_SCHEDULE_JOB
    Method:CHECK_PARAMETER
    use parameter for country key:I_LAND1 in above method
    and use parameter control records for schduling:I_F110V in above method

  • Smbd(383) deny job-creation

    I am getting this error whenever I use Windows or Mac connect to my macbook air Lion
    I am getting this error.
    Aug 7 15:26:18 MBAir sandboxd[385] ([383]): smbd(383) deny job-creation
    It won't let me connect until I restart the file sharing in system preferences. It consistently doing it after a reboot and I have to restart the service everytime I restart my macbook air.
    Does anyone know what is this error?

    I have the same problem.
    I enable SMB file sharing on my mac mini 2011. When i access it from my windows 7 PC it works.
    But if i restart the mac mini i can't access SMB shares from windows until i restart the SMB file sharing in system preferences.
    No solution.
    Come on Apple !

  • SQL job creation/modification/deletion auditing?

    I have a job 'pop-up' 3 days ago on one of our Servers and of course 'nobody' is coming forward and saying 'I did it'. Is there a way to determine who created the job after the fact?
    Going forward, is there a way to be notified via email when jobs are created/modified/deleted in SQL 2005 Enterprise? Trigger maybe? I'm not having much success searching the web on this.

    --Job creator / owner
    select a.name 
    as job_name ,b.name
    as job_owner from sysjobs a
    , sys.syslogins b
    where a.owner_sid
    = b.sid

    Trigger on sysjobs table
    create
    trigger trigg on msdb.dbo.sysjobs
    after
    insert ,
    update
    as
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name
    = 'name_of_mail_profile',
    @recipients = '[email protected]',
    @body = 'New job creation alert',
    @subject = 'Automated Message'
    -- Who ran the job ?
    select a.name 
    as JOB_NAME , b.message
    from msdb.dbo.sysjobhistory b
    , msdb.dbo.sysjobs a
    where
    a.job_id=b.job_id
    and a.job_id
    = 'AD5AAF63-4C4D-496A-AAFB-98F981E69BC2'
    and b.step_name =
    '(Job outcome)'
    Thanks, Leks

  • Run the job for VL10A

    Hi Experts,
    Can any one tell me how to schedule the job for VL10A transaction .How to create the variant for whole transaction.Please advice me.Sure of reward points.
    Thanks in Advance.

    Hi Ajay,
    For planning the delivery creation in background processing you must
    •     activate a user role for immediate creation of deliveries (in the standard system, the immediate delivery creation is deactivated for all user roles for reasons of safety),
    •     create a selection variant for one of Transactions VL10*.
    Activation of the user role for background processing
    The user role controls the entire processing of the delivery list. Within Transactions VL10*, you can display and maintain the user role on the "User role" tab page. You can carry out the maintenance also via Transaction VL10CUA. Note 301578 describes how to make a user role ready for input.
    An F-code profile is linked to the user role. The F-code profile controls the internal process of the transaction. Two F-code profiles are provided in the standard system:
    •     0001 Display delivery list
    •     5001 Supply delivery list
    In the user role you want to use for background processing, you have to replace F-code profile (not "AllowedDialogFCodes") 0001 with profile 5001:
    1. Call Transaction VL10CUA for maintenance of the user roles.
    2. You might want to copy one of standard user roles 5001 to 5103 that is planned for processing in the background to a separate role in the customer namespace, for example, 9001 or Z***.
    3. Branch to the detail view of the user role and change the entry for the F-code profile from "Display delivery list" to "Supply delivery list".
    Creation of the selection variant
    1. Call the desired Transaction VL10* and branch to the "User role" tab page. Do not use Transaction SE38 or VL10BATCH for variant maintenance of VL10*.
    2. Here, enter the user role that you have maintained for background processing.
    Caution! If you use a user role with an F-code profile for the immediate creation of deliveries, you receive no dialog with a shipping due list but the deliveries are created immediately at the start of the selection!
    3. Enter the remaining selection criteria on the various other tab pages.
    4. Select function "Goto -> Variants -> Save as variant..." and save the selection criteria entered as a variant. You might classify the variant as "Only for background processing", in order to avoid a start of the delivery creation in the dialog by mistake.
    Reward points pls.
    Regards,
    Govind.

  • Please can anybody help me  how to create the job by using HR_JOB_API?

    hi,
    actually i tried by using this,but iam not able to do that.
    1.should we create job definition before job creation?
    2. should we create flexfield segment values before job definition?
    3. what are the parameters we have to give mandatatory?
    up to my knowledge when we crate job from front end then automatically job definition and job will be created.
    but here how to do that please let me know.
    and if u have any sample code please send me as soon as.
    if jobdefinition and flexfield vlues must be defined before job creation then let me know how to create jobdefinition and flexfield values.

    ever thought about attending a training? When you think this is not needed, please read the flex guide, then the hr guide, and then scan some metalink notes on hrms api's.
    good luck,
    thierry

  • Batch Job creation by adding entries to SAP tables

    Hi Experts,
    I understand there are at least 4 SAP tables involved with Batch Jobs.
    I need to create many variants and manually creating them using sm36 is tedious.
    If I add entries in the TBTC* tables, can the batch jobs be created without causing inconsistency ?
    The batch jobs are all similar, based on a zprogram that selects from sap tables data and updating to a ztable. There are  many variants I need to create and assign to the batch jobs. So, if I can update the entries in the tables to achieve the same, it would be much quicker and reduce human error and make checking the job setup faster and easier.
    Please advise.
    regards
    M Russo

    Hi,
    There are many function modules which helps you to create the variants.
    You need to create a simple report to automate your variant creation and batch submission.
    use function module RS_CREATE_VARIANT to create variant use the structure RSPARAMS to specify the value of your selection screens
    Go to the function group BTCH . Use JOB open close to submit the batch jobs with variants anor any ther fm in the BTCH function goup.
    Hope this helps rather than directly writing to tables.
    Thanks

Maybe you are looking for

  • ORA-03113 while connect from 8i client to 7 Server

    Hi, I have a Oracle 7.3.3 Server running on a SCO OpenSever 5.0.5 and a Oracle 8i Client 8.1.6.0.0 on a RedHat Linux 6.2. When I try to connect from the client to the server by issue command "sqlplus user@test", it responses me "Error while trying to

  • Statspack... error...

    hi.. I m tuning my database, i have created tools tablespce, when i was running spcreate.sql but it failed "Oracle SQL*PLUS has encountered a problem and needs to close." Can any body tell me where can i find statments/commands that are written in sp

  • Polish Language Pack for 6500 Slide Nokia

    Greetings! I am based in Great Britain and have purchased a Nokia 6500 Slide on a "Pay and Go" sim card on the 02 network in England for my Polish Girlfriend. The phone only has some European languages and there is no option for the Polish Language.

  • Problème d'affichag​e sur un graph

    Bonjour, Dans le cadre d'un projet je dois créé un logiciel d'acquisition de donées via les cartes NI-USB. J'arrive a acquérir les donées que je souhaite mais j'ai un problème d'affichage lorsque que je fait des acquisition a quelque dizaine de Hertz

  • Phase MAIN_SHDCRE/DBCLONE - EHP  upgrade taking long time

    Hi everyone, I'm installing SAP EHP6 and the SUM is on MAIN_SHDCRE/SUBMOD_SHDDBCLONE/DBCLONE for more than 12 hrs .To be precise it is trying to insert into "DYNPSOURCE~"  table from "DYNPSOURCE" table. The "DYNPSOURCE" table is around 560 MB. In sm5