Deleted bg job information

some one has deleted background jobs.where we can find,who has delete those jobs

Hi,
You can get the relevant entry of a deleted job is syslog SM21.
I hope this will help you to find the person. Even i searched for other option to find the same but in vain.
Rgds
Radhakrishna D S

Similar Messages

  • E-rec: Can we delete a Job Posting?

    e-rec experts,
    Our users inadvertently create Job Postings in the Requisition.  We need to get rid of the unwanted postings. Is there a way to delete Job Postings.
    -Dominic

    Hi ,
    When you put the status of a posting into 'To be deleted' it will no longer appear in the requisition.But the
    entry still exist in the infotype HRP5121 ( posting information ) .The status will be set to 3 ( To be deleted ) .If you want to delete an job posting from HRP5121 then the corresponding requisition also need to be set to status 'To be deleted ' .Then the administrator can delete the requisition using
    the service 'Delete Requisitions'.
    Thanks,
    Ramprabhu

  • BI Publisher Bursting sending Email even after I delete schedule job

    I am facing some weird issue in BI Publisher. We have a BI Publisher report and we are using Bursting query to burst the report to destination Email. It works fine when i run manually. It also worked fine when i schedule it first time for particular time. few days ago client wanted to change the scheduling time. Since there is no way to modify the scheduling time, i deleted the old schedule jobs from BI Publisher as well as i truncated the following tables from DB where it stores scheduling job information.
    XMLP_SCHED_JOB
    XMLP_SCHED_OUTPUT
    XMLP_SCHED_SUBSCRIPTION
    I also created the new scheduling job based on new time. The issue is Clients are getting the emails in old time as well as new scheduling timel. I can see the new scheduling information in following table so no information of old scheduling time. How BI Publisher is still running the report on old time. I research a lot but still i am not able to find the place from where it is still sending the old emails. Can anyone please have any idea to resolve this?

    Did you delete the job schedule using the GUI first? Otherwise by manually deleting the records from XMLP_ tables
    may somehow have corrupted the scehduling option.
    There are other components for the scheduler which are not only saved in XMLP_ tables and these
    are the QUARTZ tables.
    As of release 11g there is not mechanism to manage BIP scheduler tables.
    regards
    Jorge

  • LMS 3.2 Job Information Status

    Hello
    In LMS portal, Job information status shows system jobs that have a missed start as the status. These jobs are old versions of jobs  (Mon Jun 29 03:00:00 CEST 2009) and the new versions have been running as they should.
    The question is how to delete these missed starting job from the preview window. Deleting the job in Job Browser results in:
    Can not delete the following jobs:
    1039.26 - Can not delete system job 1039
    Thanks in advance.

    Hello Joe
    This is how it look like in Job Information Status
    1039.26 ChangeAuditDefaultPurge Missed start ChangeAudit Records - default purge job eydfinnur
    Mon Jun 29 03:00:00 CEST 2009
    Job details:
    Change Audit Report  
    Job Summary
    Runtype:  Daily
    Start Time:  Mar 09 2010 03:00:00
    Purge Change Audit data older than:  180 days
    Purge Audit Trail data older than:  180 days
    Job Type:  Change Audit Default Purge

  • Problem in deleting backup job in Grid Control

    Hi,
    The topology and versions are as follows:
    1 windows 2003 server with Oracle Grid Control 10.2.0.4.0.
    1 windows 2003 server with Oracle Databases 10.2.0.3.
    1 windows 2003 server with Oracle Databases 10.2.0.3 - Data Guard setup
    I have tried to stop (and delete) some scheduled fullbackup jobs from Grid Control.
    The job has now status SUSPEND. I have tried to stop and delete the job, but I get the message:
    All executions of the job were stopped successfully. Currently running steps will not be stopped.
    I cannot delete the job and the job is not running.
    I have run this procedure in order to delete the job:
    DECLARE
    jguid RAW;
    BEGIN
    SELECT job_id
    INTO jguid
    FROM mgmt_job
    WHERE job_name = '<name of your job>'
    AND job_owner = '<owner of your job>';
    mgmt_job_engine.stop_all_executions_with_id(jguid,TRUE);
    COMMIT;
    END;
    With no effect. The job is still shown in Grid Control with status SUSPEND.
    I have restarted all servers and all the components in Grid Control, but the jobs will not disappear from Grid Control although they have been deleted.
    I am struggling with this for about 2 days now.
    I have search in Metalink and the internet, but I have not found anything that provides a solution.
    Any help will be very much appreciated.

    hi,
    I have in the past used the following from metalink
    Do you have a metalink account?
    SET verify OFF
    SET linesize 255
    SET pagesize 128
    SET trimout ON
    SET trimspool ON
    SPOOL jobdump.log
    ALTER SESSION SET nls_date_format='MON-DD-YYYY hh:mi:ss pm';
    COLUMN status format a15
    COLUMN job_name FORMAT a64
    COLUMN job_type FORMAT a32
    COLUMN job_owner FORMAT a32
    COLUMN job_status format 99
    COLUMN target_type format a64
    COLUMN frequency_code format a20
    COLUMN interval format 99999999
    VARIABLE JOBID VARCHAR2(64);
    PROMPT *********************** JOB INFO ********************************
    REM Get the job id
    SET serveroutput on
    BEGIN
    SELECT job_id INTO :JOBID
    FROM MGMT_JOB
    WHERE job_name='&&jobName'
    AND job_owner='&&jobOwner'
    AND nested=0;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    BEGIN
    DBMS_OUTPUT.put_line('JOB NOT FOUND, TRYING NAME ONLY');
    SELECT job_id INTO :JOBID
    FROM MGMT_JOB
    WHERE job_name='&&jobName'
    AND nested=0
    AND ROWNUM=1;
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    DBMS_OUTPUT.put_line('JOB NOT FOUND');
    END;
    END;
    SELECT job_name, job_owner, job_type, system_job, job_status, target_type
    FROM MGMT_JOB
    WHERE job_id=HEXTORAW(:JOBID);
    PROMPT *********************** JOB SCHEDULE ****************************
    SELECT DECODE(frequency_code,
    1, 'Once',
    2, 'Interval',
    3, 'Daily',
    4, 'Day of Week',
    5, 'Day of Month',
    6, 'Day of Year', frequency_code) "FREQUENCY_CODE",
    start_time, end_time, execution_hours, execution_minutes,
    interval, months, days, timezone_info, timezone_target_index,
    timezone_offset, timezone_region
    FROM MGMT_JOB_SCHEDULE s, MGMT_JOB j
    WHERE s.schedule_id=j.schedule_id
    AND j.job_id=HEXTORAW(:JOBID);
    PROMPT ********************** PARAMETERS ********************************
    SELECT parameter_name,
    decode(parameter_type,
    0, 'Scalar',
    1, 'Vector',
    2, 'Large', parameter_type) "PARAMETER_TYPE",
    scalar_value, vector_value
    FROM MGMT_JOB_PARAMETER
    WHERE job_id=HEXTORAW(:JOBID)
    AND execution_id=HEXTORAW('0000000000000000')
    ORDER BY parameter_name;
    PROMPT ********************** TARGETS ********************************
    SELECT target_name, target_type
    FROM MGMT_JOB_TARGET jt, MGMT_TARGETS t
    WHERE job_id=HEXTORAW(:JOBID)
    AND execution_id=HEXTORAW('0000000000000000')
    AND jt.target_guid=t.target_guid
    ORDER BY target_type, target_name;
    PROMPT ********************** FLAT TARGETS ********************************
    SELECT target_name, target_type
    FROM MGMT_JOB_FLAT_TARGETS jft, MGMT_TARGETS t
    WHERE job_id=HEXTORAW(:JOBID)
    AND jft.target_guid=t.target_guid
    ORDER BY target_type, target_name;
    PROMPT ************************ EXECUTIONS *******************************
    SELECT execution_id,
    DECODE(status,
    1, 'SCHEDULED',
    2, 'RUNNING',
    3, 'FAILED INIT',
    4, 'FAILED',
    5, 'SUCCEEDED',
    6, 'SUSPENDED',
    7, 'AGENT DOWN',
    8, 'STOPPED',
    9, 'SUSPENDED/LOCK',
    10, 'SUSPENDED/EVENT',
    11, 'SUSPENDED/BLACKOUT',
    12, 'STOP PENDING',
    13, 'SUSPEND PENDING',
    14, 'INACTIVE',
    15, 'QUEUED',
    16, 'FAILED/RETRIED',
    17, 'WAITING',
    18, 'SKIPPED', status) "STATUS",
    scheduled_time, start_time, end_time
    FROM MGMT_JOB_EXEC_SUMMARY e
    WHERE job_id=HEXTORAW(:JOBID)
    ORDER BY scheduled_time;
    UNDEFINE jobName
    UNDEFINE jobOwner
    UNDEFINE JOBID
    SPOOL OFFAlan

  • How to delete a job in background programatically after 10 sec

    Hi all,
    Can anyone tell me how to delete a job in background programatically after the transaction is trigerred in 10 sec.
    Yours help will be greatly appreciated
    Yathish

    Have a look at standard report RSBTCDEL. May be helpful to you.
    Best Regards,
    Vibha
    *Please mark all the helpful answers

  • HT5622 How do I delete credit card information ?

    How do I delete credit card information from my apple account .... iPhone 5c

    Delete credit card information with iOS - http://bongotbusy.blogspot.com/2011/09/hinthow-to-remove-iphoneipadipad2.html - Settings > Store > Apple ID > View Apple ID > Account > Edit Payment Information > Payment Card > None

  • How can I delete credit card information from app store in IPAD2

    how can I delete credit card information from app store in IPAD2

    Im vert tirés about thé contrôle of Apple.
    I just buy a iPad 3 and use Gift credit card at beginning.
    I'm from Canada and usevps so my ip can be from other country.
    So now I can't use this gift credit card even if they have $27 on it.
    I try too buyin iTunes gift card. At beginning its work but now it's stop to work.
    And I have $100 there.
    I never use my real credit card on the Internet and never I will do that.
    I use just PayPal or gift credit card.
    Ok I talk for nothing since Apple is too much miserly to buy employee for support.

  • How do I delete credit card information from my profile?

    How do I delete credit card information from my profile? When I simply delete it, the system forces something to be in those fields. When I type random info in, it forces accurate info. I DON'T want to store credit card info.

    To remove it from your account, tap on your id in Settings > iTunes & App Store and then tap on 'View Apple ID' on the popup and log into your account  - that should give you a payments link on your account's page from where you can change remove/change your payment details.
    Changing payment info : Change or remove your payment information from your iTunes Store account (Apple ID) - Apple Support
    If you don't get the 'none' option on the payment details screen : Why can’t I select None when I edit my Apple ID payment information? - Apple Support

  • HT1918 How do I delete credit card information on file?  There is no "None" button on payment information page.

    I'm trying to delete credit card information on the account and only have my son use itunes gift card, but I do not see a "None" button as payment options either on his phone or when I log onto account on the computer.
    It won't let me delete credit card information.

    https://discussions.apple.com/message/24352653#24352653
    This dicussion thread may offer a solution.

  • How can I delete all this information, or can I restore the Ipod?

    My daughter is 9 has an Ipod. I put my email on his device and than she have access to all my contacts and messages. Question: How can I delete all this information, or can I restore the Ipod? Second question: How can I create an e-mail for her, in order she has access to Face Time, Imessages and download games, but I need to have track of this?

    Have a look here...
    http://macmost.com/setting-up-multiple-ios-devices-for-messages-and-facetime.htm l

  • Is it possible for me to delete all my information in my lost ipod touch? It is in IOS 6.

    Is it possible for me to delete all my information in my lost ipod touch? It is in IOS 6.1.1

    Only if
    - If you previously turned on FIndMyiPod on the iPod in Settings>iCloud and wifi is on and connected go to iCloud: Find My iPhone, sign in and go to FIndMyiPhone. If the iPod has been restored it will never show up.
    - You can also wipe/erase the iPod and have to iPod play a sound via iCloud.

  • I want to delete my payment information on iPhone 4 but the the NONE option is no longer there. Please help

    I want to delete my payment information on iPhone 4 but the the NONE option is no longer there. Please help

    As provided:
    You need a payment method. If you don't have a credit card, then redeem an iTunes gift card. You'll then get the "None" option.

  • HT4847 How do I delete all my information from the I-Cloud?

    How do I delete all my information from the I-Cloud?

    Greetings austinfromdellslow,
    Welcome to the Apple Support Communities!
    I understand that you would like to store your purchases movies on an external hard drive. To do this, first you will need to download your purchased content from the cloud to the iTunes library on your computer. 
    Download past purchases - Apple Support
    Once your media folder is complete with the downloaded content, you can move that iTunes media folder to your external hard drive using the information in the attached article below. 
    Move your iTunes Media folder on a Windows PC - Apple Support
    Cheers,
    Joe

  • Can i delete the contact information in icloude?

    Could i have deleted my contact information in icloude?

    Welcome to the Apple Community.
    iCloud syncs your data across all devices, whatever you do on one will happen on all others. Hence to delete your contacts from iCloud, just delete it from any device or from iCloud.com.

Maybe you are looking for

  • Printing from a DOS application to Adobe PDF Printer

    I have been asked to provide reports from a legacy DOS application to PDF and of course decided to use my Adobe PDF Printer that came with the copy of Adobe Acrobat 8 Standard I purchased. I am running Windows XP. I am able to overcome the obvious pr

  • Audio scrubbing in Encore CS4?

    It would be very helpful to have audio scrubbing, as I am trying to adjust subtle timing issues for subtitles.  Is there any way to get audio scrubbing in Encore CS4?

  • Keyboard Backlight not working Macbook Pro Mountain Lion

    Since updating to 10.8.3 it seems my keyboard light has entirely gone out. I have reset the SMC and the PRAM. I do not have File Vault installed. I've tried Pin Tick app and also obviously played around with everything possible in preferences to make

  • Data validations in XI

    Is it possible to do data validations in SAP XI?

  • How to move a download into the Applications folder?

    I downloaded a free spreadsheet program from open org and wanted to move it from the Downloads folder to the Applications folder. How can I do this. I also want to have an icon for this software in the bar along the bottom of the screen.