How to retrive the deleted background job !

Hello Friends,
              I accientaly deleted a background job.  
Could any one help to retrive the original job.
Thanks,
Senthil

<b> SMX View background jobs
SM36  Background Job Scheduling
SM37  Background Job Monitoring </b>
<b> Schedule Manager </b>
Automate your routinue task with Schedule Manager.  It facilitate the definition, scheduling, execution, and review of tasks that are executed on a regular basis, such as period-end closing.
<b> SCMA</b>  - Schedule Manager
Checking your program Background Job Status
Checking  your job status with SM50 (processor type BTC) is more accurate then SM37.  SAP updates the tables TBTCO wheneveryour background jobs status change.  If SAP is shutdown, the currentjobs might not be update ontime to the table. ( e.g. a background job wasshown as Active (SM37), in fact it real status should be Cancelled.
The type of work process:
DIA  - work process for executing dialog steps in user transactions
UPD - update process for executing U1 (time-critical) database changes
UP2  - update process for executing U2 (non-critical) database changes
ENQ - for setting and releasing locks on SAP lock objects
BTC  - for executing background jobs
SPO  - for spool formatting processes
PID:  Process ID of the work process.
regards
vinod

Similar Messages

  • How to retrive the deleted data in Z table

    Hi Gyes,
    How to retrive the deleted data in Z table.
    Thanks & Regards,
    Suresh

    Hello Suresh
    If you have not activated the technical setting "Log data changes" in the definition of your z-table (which is unlikely) then there will be no change documents available.
    If you have downloaded your z-table entries sometimes you could use these data for recovery.
    Otherwise your last change is to ask your <b>basis team</b> when the last backup has been made.
    Regards
      Uwe

  • How to retrive the deleted entries in the ztable

    please let me know how to retrive the deleted entries in the ztable.

    >
    Naseer uddin wrote:
    > Hi,
    >
    >   While creating a table have u activated the buffering (full).
    >   if not then it is not possible to retrive the lost data, and if u have activated the full buffering of table then it is possible to retrive data, up to some extent, using transaction Code se14.
    Complete Nonsense.*
    buffering doesn't mean that it will buffer the records back in database ,once you deleted.it means it will allow the buffer the table to memory only while read access.

  • How to recover the deleted scheduled job

    Hi All,
    I have deleted one scheduled job using SM37.
    Is there any way to recover that and rescheduled in the same fashion..
    <<removed_by_moderator>>
    Thanks in advance..
    Regards,
    Sanjeet
    Edited by: Vijay Babu Dudla on Jan 2, 2009 4:18 AM

    hi,
    you can use this FM BP_JOBLOG_READ
    pls refer to this link
    http://help.sap.com/saphelp_nw04/helpdata/en/c4/3a8009505211d189550000e829fbbd/frameset.htm
    thanks

  • Urgent..How to delete background job permanently....!

    Guru's!
    How do i track that background job... that is running for every 5 mins,
    In sm37 i know the job name , it is executing for every 5 mins, and that is interrupting , and causing  me huge prblm.
    my basis person suspended the job , but that is started executing again from yesday.
    I found that job name in sm37 like below
    BI_WRITE_PROT_TO_APPLLOG,
    more than that m not getting  any additional info abt it..
    I can say this is the job that is interrupting R3 transaction
    Guys pls advise me How do i get related info abt taht job...
    n pls provide me sol'n to delete it permanently..........
    Thanks
    Srujan

    HI,
    Report - RSBATCH_WRITE_PROT_TO_APPLLOG is shceduled in BW every particular minutes to write an application log ,this report is having job name BI_WRITE_PROT_TO_APPLLOG .
    This report must neither be descheduled nor deleted, as long as BW is working live, because otherwise any error messages that appear are not written to the application log.
    This log files can grow large (intensive read on table
    TBTCO and TBTCB ),especially logs from Job BI_WRITE_PROT_TO_APPLLOG and might impact some of the performances like system slow down.
    Check unused Job logs with Report RSBTCDEL2 and clean out if
    and see this posts,
    Re: Issue regarding BI_WRITE_PROT_TO_APPLLOG
    notes:769414
    if it is useful assign points
    Regards,
    Senthil

  • How to delete Background job

    hi all,
    i am working on ECC6.0.
    i am not able to find the path to delete background job completly.
    can any body give me the navigation for the same in ECC6.0
    Thanks in advance

    hi
    hopen ths wll help
    To delete a background job explicitly, use:
    BP_JOB_SELECT to obtain the jobname and job number of the job that you wish to delete.
    You can select jobs according to all of the criteria available in the interactive background processing management system:
    Jobname: Using a well-planned naming convention for your jobs will help you to select them precisely.
    Job number
    Name of the user who scheduled a job
    Specifications for the start-time window/no start time scheduled
    Start dependent upon predecessor jobs
    Start dependent upon an event and event argument
    Job status (preliminary, scheduled, ready, running, finished, aborted).
    BP_JOB_DELETE to delete the job. The job log is deleted as well, if the job has already been run.
    A job cannot delete itself. Also, a job that is currently running cannot be deleted. However, you can have it deleted automatically if it is completed successfully. See the DELANFREP parameter of JOB_OPEN.
    Sample Program: Deleting a Background Job
    Data declarations: BP_JOB_SELECT
    DATA JSELECT LIKE BTCSELECT.
    DATA SEL_JOBLIST LIKE TBTCJOB OCCURS 100 WITH HEADER LINE.
    Sample selection criteria
    JSELECT-JOBNAME = 'Name of job'.
    JSELECT-USERNAME = SY-UNAME.
    CALL FUNCTION 'BP_JOB_SELECT'
    EXPORTING
    JOBSELECT_DIALOG = BTC_NO
    JOBSEL_PARAM_IN = JSELECT
    IMPORTING
    JOBSEL_PARAM_OUT = JSELECT
    TABLES
    JOBSELECT_JOBLIST = SEL_JOBLIST
    EXCEPTIONS NO_JOBS_FOUND = 1
    SELECTION_CANCELED = 2
    OTHERS = 99.
    In this example, the program loops over the internal table
    SEL_JOBLIST and deletes each of the jobs that was selected.
    Alternative: Have the user select the job to be deleted
    with BP_JOBLIST_PROCESSOR. For an example, please see
    Sample Program: Wait for Predecessor Job with JOB_CLOSE.
    LOOP AT SEL_JOBLIST.
    CALL FUNCTION 'BP_JOB_DELETE'
    EXPORTING
    FORCEDMODE = 'X'
    JOBNAME = SEL_JOBLIST-JOBNAME
    JOBCOUNT = SEL_JOBLIST-JOBCOUNT
    EXCEPTIONS
    OTHERS = 99.
    ENDLOOP. *
    FORCEDMODE deletes the job header even if other portions of the
    job cannot be deleted from the TemSe facility, where they are
    held.
    FORCEDMODE can be used without fear of causing problems in the
    System. Any TemSe problem that affects background jobs can be
    resolved directly in the TemSe system and does not require the
    job header.
    regards
    navjot
    reward if helpfull

  • How to deallocate the SLCA_LCK_SYNCHOWNERS standard job

    Hi
    how to deallocate the SLCA_LCK_SYNCHOWNERS standard job in solution manager.
    We dont have Live cache.
    Can any body give the solution for this problem
    Regards
    Rao.
    Edited by: Rao on May 15, 2009 12:26 PM

    you can delete any background job in sm37, just make sure that the job should not be in 'running' or 'ready' status. However, since this is a Standard background job, so it can be deleted via sm36 too as Markus already mentioned here
    http://help.sap.com/saphelp_bw21c/helpdata/en/c4/3a7f87505211d189550000e829fbbd/frameset.htm

  • How to trigger an existing background job in ABAP program?which fm?

    Hi experts,
        how to trigger an existing background job( defined in SM36 ) in ABAP program?which fm?
        seems that FM 'JOB_OPEN' / 'JOB_SUBMIT' / 'JOB_CLOSE' can only create a new job.

    Hi,
        now my requirement is that sap has generated one job automatically, and then i will have a job name
    'XXX'. and then i want to schedule the job in abap program,. which function module could i use ?
    my expected fm is that the system will trigger the job after i give the job name and start condition.
    i have tried job_open, but it seems just to create a new job. any advice ?

  • Has anyone put the RAR Background Job Spool on a different server?

    We are on GRC 5.3 SP 13.
    Has anyone put the RAR Background Job Spool File Location (assigned in the Miscellaneous configuration section) on a server different than the one that the GRC Frontend/Java system is on?
    I currently have it assigned to a folder on the GRC server, but it is running out of space.  I am having a problem getting the users to delete old reports as they say they need to keep them for internal Audit controls.  They are also resisting downloading the reports (more work for them).  I have been told that we cannot easily increase the file space on the GRC server (would basically have to purchase more storage and rebuild the server).
    I was thinking about moving the folder over to our virtual storage area, were file size can be more easily expanded.  I haven't found any documentation that says the folder has to be on the GRC server, but I also haven't seen any examples of where it has been put on a different server.
    Has anyone done this, and did you run into any problems?
    Thanks.

    Hello Bob,
    I got your point. Probably there's no recommendation about this, because the recomended practise is to delete or archive the spools as suggested in note : Note 1511027 - Periodic clean up of spool files
    If you have a requirement to keep these files "online", I think the option to save them to a network drive is fine. I haven't tried it for this specific scenario. You have to take into account:
    - Specific user to connect to FileServer
    - Availability of the FileServer. If the FS is down, the RAR job will cancel.
    - Performance. I mean, write to a local disk is not the same to write to a network drive. This point is very difficult to measure,   because it depends on a lot of things like network speed, server load, etc.
    Maybe someone has already implemented it and gives you more hints.
    Cheers,
    Diego.

  • How to retrive the overwritten SAP Default Configuration

    Hi There,
    I was trying to enhance the component BT115IT_SLSO to add some new fields into the table view Items.
    I copied the view configuration to my Z config key but by mistake & added the fields into the default view and saved the changes. Now the default configuration is screwed up.
    Can some one point out how to retrive the SAP standard configuration( where it is stored ). In the configuration tab of the view the configuration looks ok but in Web UI I see all the columns available in the context node, and makes the view useless, when I go to the personlization of the view all fields shows the message < Error in Meta data > and I can not see the details of the fields.
    I have already backed off my enhancement. Now I want to retrive the view configuration.
    Your help will be highly appreciated.
    Thanks,
    Vikash.

    Issue resolved.
    Solution was In BSP workbench when I went to choose configuration I saw that just next to std conf there was column for cust conf. and both were marked X so I deleted the conf and that gave me the standard conf back.
    Thanks,
    Vikash.

  • How to retrive the data from a sqlite file(.db3) in windows phone 8.1(runtime)

    hey guys
    i installed the sqlite and sqlite-net as requested in other answers i found, changed to x86, and add the .db3 file in my project.
    but the problem is how to retrive the data that already in the file( i am not creating any table or data in the app, just read)
    all the answer i found is to create a table first and then read the table, i tried to skip the step of creating a table, and read from the table directly, but failed with " no such table", by the way, i set the property of the .db3 file as "content",
    "copy if newer"
    can anyone please help? i appreciate that !

    Hello,
    From your description, you want to read data from available sqlite file. When you add the sqlite file into your project, you need to change the sqlite file build action to content. After deploying to device, the sqlite file is located in installation folder,
    you need to copy that file into storage folder before reading data. Please try the following code snippets.
    private async void Button_Click_9(object sender, RoutedEventArgs e)
    //check if file exists in storage folder, and then copy to local storage
    bool flag = await FileExistsAsync("Data.db3");
    if (!flag)
    var folder = await Package.Current.InstalledLocation.GetFileAsync("Data.db3");
    await folder.CopyAsync(Windows.Storage.ApplicationData.Current.LocalFolder);
    // open sqlite and read data
    public async Task<bool> FileExistsAsync(string fileName)
    try
    await Windows.Storage.ApplicationData.Current.LocalFolder.GetFileAsync(fileName);
    return true;
    catch (FileNotFoundException)
    return false;
    Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place. Click HERE to participate
    the survey.

  • How to change the color background in Pages for iPad?

    how to change the color background in Pages for iPad?

    You can find many themes at https://github.com/hdoria/xcode-themes  There's a download zip button on the right side of the page.
    Unzip and and copy the .dvtcolortheme files into /Users/YourUsername/Library/Developer/XCode/UserData/FontAndColorThemes Create the directory if it doesn't exist.
    If you can't find the Library directory you can get to it by using Finder's "Go to Folder..." option under "Go" or press shift + cmd + G then type the path.

  • How to recovery the deleted files from hard disk like images,media files

    How to recovery the deleted files from hard disk like images, media files by using c#.net

    It's important to define deleted and recovery. You can recover file from the recycle bin using the Win API. Here's an
    example in C/C++. You need to
    pinvoke SHFileOperation.

  • Re:How to determine the long running jobs in a patch

    Hi ,
    How to determine the long running jobs in a patch .
    Regards

    Hi,
    Check the below MY ORACLE SUPPORT note:
    Note.252422.1 .... Check Completed Long Running Jobs In Oracle Apps.
    Best regards,
    Rafi

  • How to recover the deleted reports from crystal reports XIR2

    Hi,
    There have been few crystal reports have been deleted from crystal environment and i would like to know how to recover them. please advice the best possible ways to recover them. CMS repositoty in SQL server database
    thanks in advance
    Regards,
    Krishna

    Hope, your question is this "How to recover the deleted Crystal reports in XI R2".
    Answer for this question is...
    Yes, it is possible if you have backup of your CMS and FRS.
    Copy the CMS database from the backup to your database server and point the CMS ODBC system DSN to it.
    Copy the backed up file store to a Temp directory.
    Change the path of input and output file repository servers in the CMC, for each server, to the Temp file store directory.
    You will now be able to find the reports. Copy those reports to the BO server's local disk, or create a BIAR file using the Import Wizard.
    Point the ODBC system DSN back to the original database and also change the paths on input file repository and output file repository servers back to their original locations.
    Publish the reports to Enterprise from the BusinessObjects server's local hard disk.

Maybe you are looking for

  • Payment advice note to vendors thru e mail

    Guys, After executing F110, system generates the payment advices.I updated the master reocrd of vendor with a test email id , system is sending payment advices to this mail id,as its our internal server mail id.But when I update vendor record with so

  • Scammer given access to system, now what?

    My friend has OS X Mavericks installed and he was prompted to call a technical support number, because his computer had been infected. Thinking Macs don't get viruses, he was sure this message was from Apple. He called, followed the person's directio

  • Oracle human resource module

    gurus, thank you for reading my query. where can i get to know the latest features for R 12.1.3 for HR module

  • Where do i find the blasted activity monitor

    I want to check my activity and I cannot even FIND the bloody thing.  Where have they hidden it, dear gurus? 10.9.5

  • Icône Muse sur Mac pas beau

    Bonjour, juste une info à faire remonter aux dév. de Muse : sur OS X 10.9 les icônes peuvent être affichés à 512x512 px. Tous les icônes Adobe sont corrects sauf 1, celui de Muse qui pixelise au delà de 128x128 px. D'autres part, je cherche en vain l