Is there a possibility to run RSRV fix in background?

Hello,
Is there a possibility to schedule/run the "error correction" part of the RSRV result as a background job and not dialog.
Thank you

Hi Blue005,
there is no standard report provided as standard to do the 'Repair' tasks within a BGD job.
The reason for this is that some repairs have to be executed in a certain order or a certain time (when no other jobs can interfere). Furthermore these repairs should be supervised by an administrator.
The system is not supposed to do this automatically.
So you'd have to create your own Z-report making use of report RSRV_JOB_RUNNER (which are the actual RSRV tests) or the function module RSDRD_DIM_REMOVE_UNUSED.
Rgds,
Colum

Similar Messages

  • Is it possible to run ALV report in background if Yes how?

    is it possible to run ALV report in background if Yes how?

    Hi,
    Why not?Through se38 only you create ALV report. there you can give your report name and go to program on menu bar - click - execute buton- click-Background . You will get new screen there you can choose Execute immediate or schedule.
    <REMOVED BY MODERATOR>
    Cheers,
    Chandra Sekhar.
    Edited by: Alvaro Tejada Galindo on Mar 4, 2008 2:12 PM

  • Will it be possible to run several jobs in background at the same time?

    Hi!
    The new release looks promising. Look forward to hear more in Birmingham.
    Just now we have a problem. It have to do with functionality In Toad compared to SQL Developer.
    Will it be possible to run several jobs in background at the same time. Toad allows that.
    If yes: How can we make that happen?

    "Jobs" are always background.
    But I take you mean queries. Yes, since v1.5.x you can open an Unshared SQL Worksheet (ctrl-shift-n or the toolbar button).
    Have fun,
    K.

  • Is there a possibility to run tRFC entries alone in Separate application server

    Please let me know if there is a possibility to run tRFC entries alone in separate application server.
    If yes , kindly let me know how it can be tracked and separated to server as we have immediate idocs also which will run via tRFC.
    Thank you !!

    Hi,
    Thank you for your interesst.
    This internet button key is one of buttons located above the keyboard near the power button. What I have achieved to this moment was to stop it functionality in the system by clearing the entries in the fields Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey\17\ShellExecute and entry
    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey\7\Association that was http
    After these changes in registry the behavior of the button was suppressed, the Firefox stopped to start unexpectedly all the time – so in system it works. But the problem is still when I have opened Firefox. Every time when you want to surf in internet – the homepage is activated also unexpectedly. I wrote this post with intention to ask if there is a possibility to switch off the functionality of this quick launch button in Firefox. Because I assume Firefox overrides the system setup – this I have made in registry. I tried with some option changes in about:config but without success. And I know that for older versions of firefox was some option in about:config do disable_quick launch button. But in 10.0.2 I couldn't locate it.
    Thank you
    Regards
    Lukasz

  • Is there any possiblity to run 2 same actions on same day...

    Hi Experts...
    According to my user s need..they want to run "change of position action" twice on the same date with different position Ids.
    I have tried but the recent action overrides the first action details.
    In overview i can able to see only one Change of position action.
    Even i tried to see 0302 IT through SE11.There i have found additional action is there for every action performed to him including Hiring action.There is only one addtional action is showing up for change of position action.
    Please advise me to resolve the problem.
    How i have to answer the client.
    Regards,
    Ram sai.

    Hi,
    Puneet is right. 2 actions are possible (if one of them doesn't change the employment status) but they should be different.
    If you run the same personal action on the same day, then it's not an additional entry but a chang eof the earlier captured action so no recording of a 2nd action.
    Wilfred.
    PS For what it's worth, I won't bother creating an action '2nd position change' because then in no time action 3, 4, 5 will be "required" as well.
    Plain and simple: It's not possible to record the same action on the same day twice.

  • Is it possible to run WF_DOC.CREATE in background?

    Hi gurus,
    In my workflow there's the step 'Document from Template' to generate a WF_DOC and it's working fine. However the user wants to have the step done in background and the document generated automatically.
    To meet this requirement, I tried to copy the WF_DOC and modify it into a background version, but it seems as if the underlying CL_SWF_DOCUMENT is designed to run with frontend and many GUI functions such as POPUP_TO_SELECT are used. So my question is: Is it even possible to do the WF_DOC.CREATE in background or is there any work around?
    Thanks in advance for any hints.
    Best regards
    Luis

    Hello Luis,
    I have looked through the coding and the answer to your question is: No.
    The WF_Doc uses the frontend components (Word, etc.) to create those documents where the frontend isn't available in background tasks.
    A workaround to your requirement could be some kind of report output or SAPscript-output (converted to PDF or something similar), then create from this binary data an Office-document and append this one to ADHOCOBJECTS container element.
    This workaround is only an idea and there are several others to do so, as well.
    Best wishes,
    Florin

  • Possible to run something in the background?

    This is my situation: I have a Student class and a Clazz class. A student can belong to only 1 clazz and a clazz can have many students. These 2 classes are mapped to 2 database tables. In the following code, I remove all the JPA annotations.
    class Student {
        private Clazz clazz;
        public void setClazz(Clazz clazz) {
            this.clazz = clazz;
            clazz.getStudents().add(this);
    class Clazz {
        private List<Student> students;
    }So to add a new student to an existing class, I do something like:
    Student student = new Student();
    Clazz clazz = entityManager.find(Clazz.class, clazzId);
    student.setClazz(clazz);
    entityManager.persist(student);Because of the line clazz.getStudents().add(this); in the Student.setClazz method, the application has to go to the DB and load all the existing students for that clazz (which takes a long time).
    The Student and Clazz codes are very difficult for me to change (somebody wrote them and they don't wanna change). So I have to think of some way to load the clazz and all its student when I have the clazzId information. The duration from when I have the clazzId info until the student is saved to the db is about 1min.
    This is what I did:
    - I created a stateful session bean with an EXTENDED entity manager which has a method to return a clazz when we feed it a clazzId. So the returned clazz is persisted.
    - I created a stateless session bean which has a timer. When I have the clazzId, I start the timer, give the timer a ClazzHolder instance.
    class ClazzHolder {
        private Long clazzId;
        private Clazz clazz;
        private boolean done;
    }- The timer gets the clazzId from the ClazzHolder instance, feeds that clazzId to the stateful bean, receives a persisted Clazz instance back, saves that Clazz instance in the ClazzHolder instance and turns the flag "done" to true.
    It seems to me that the ClazzHolder instance the stateless session bean has is not the ClazzHolder instance that I pass to it (but the content is the same). I think it's because the ClazzHolder instance I pass to the session bean is serialized first, and then de-serialized to build an object and give to a method in the session bean.
    Summary: my idea of using timer to load something before hand doesn't work.
    My question is: is there any way to load something from the database and keep it persisted before hand?

    Hi Naimesh,
    thx for explanation. I am not sure, if I understood everything in the right way.
    Where do you write the code for building the selection-screen? (PARAMETERS, SELECT-OPTIONS etc.)
    If you write these commands in a class method, you will get a syntax error ( because it's forbidden per definition of ABAP objects). So, am I right assuming that you put the coding just at the beginning of the ABAP report ? And after START-OF-SELECTION-event you start the processing... ?
    Furthermore, I don't really understand why you create an separate class for ALV. I found your "SAP abap help"-blog, where you explained the concept of MVC ((By the way, well done!), but you didn't mention an "ALV class" there..
    Mh.. another question - have you ever combined MVC with object services?
    At the moment I'm working on a software project where I use object services. I created 2 persistent classes via SE24 and one local class in my ABAP Report.
    I don't really see possibility to implement MVC in this project without change very much of coding and class structure...
    In my opinion the M (data&business logic) are my existing global classes and my local class is kind of Controller class?!
    Thx in advance,
    Anne

  • Is it possible to run alv grid in background

    Can any one tell me about it?

    Hi Avinash,
    Yes, we can schedule ALV but OO ALV we need some piece of code.
    Please see the below link.
    http://scn.sap.com/message/15071173
    Regards,
    Vadamalai A

  • Run OC4J in the background

    Is there anyway I can run OC4J in the background as an NT service?
    Thanks in advance.

    I took the approach above, and my experience was only partially successful. With some scrounging around newsgroups, orionsupport.com, and Sun's website, I came up with the following solution:
    Creating an NT Service for OC4J
    OC4J by default runs as a command shell application, so it is bound to a user's login session and will die if the user who called the start command logs off of the system. Oracle has not provided a version of OC4J that runs as a service on Windows-based servers, so here is a process to create a service using the freeware utility, RunExeSvc (http://www.winwinsoft.com/goodies/RunExeSvc/index.html). This utility is more user-friendly and flexible than tools such as srvany.exe and instsrv.exe in the NT Resource Kit.
    Dependencies
    1. RunExeSvc is installed
    (Unzip the runexesvc.zip file to a directory)
    2. Sun's JDK 1.3.1 is installed.
    (JDK 1.3.1 is required because a bug in prior versions of Sun's JVM for Windows killed any JVMs initiated by a user in that login session.)
    Installation Procedure
    1. Run the RunExeSvcAdmin.exe application
    2. Create a new service by copying the example script below into the Script window of RunExeSvcAdmin.exe. Some changes to drives and/or paths may of course be needed.
    3. Save the new entry and exit the application.
    4. The service should now appear in the services control panel. Changes may be required for its startup options.
    Example Script#########################
    # This script runs OC4J
    # RunExeSvc variables
    # if true, RunExeSvc will show internal status
    debug=false
    # the starting dir of the service
    home=e:\oc4j\j2ee\home
    # Running as an http server.
    cmdline=e:\jdk1.3.1\bin\javaw.exe -Xrs -jar orion.jar -out e:\oc4j_out.log -err e:\oc4j_err.log
    null

  • I've installed bootcamp 4.0 on my iMac 27. Everything works superb, but for playing need for speed run or battlefield 3 I need catalyst driver 11.7 or higher. How can I update my graphics? Is there a possibility except waiting for a new bootcamp version?

    I've installed bootcamp 4.0 on my iMac 27. Everything works superb, but for playing need for speed run or battlefield 3 I need catalyst driver 11.7 or higher. How can I update my graphics? Is there a possibility except waiting for a new bootcamp version?

    But how do you install the drivers if Bootcamp is running interference?
    Bottom line, I'ev tried to install three different versions of updated ATI driver sover the last few momnths and on each and every occassion have ended up with the original Bootcamp driver. A number of current games are unplayable on a Mac running Bootcamp as a result.
    And if I can't run the software I want, then Bootcamp is as useless as boobs on a bull.

  • Hii Can anyone tell me is there any possibility of giving some due payment like bonus or offcycle after its termination is done along with the payroll run and posting.

    Hii Can anyone tell me is there any possibility of giving some due payment like bonus or offcycle once employee termination is done along with the payroll run and posting.
    Thanx

    One Possibility is by making manual entry for that employee from FI side..  (this will give you soln..) Take the help of FI consultant...
    Another possibility is in IT0003 "Payroll Status".. You can opt mention next month date "Run Payroll up to" & execute Off cycle payroll for that employee...
    Just try this hope this may sort your issue....
    If it still it doesn't give you soln.. You may need to reverse the posting of that employee & change employment status.. Run Bonus & finally terminate the employee & do the posting..

  • Is there a possibility to switch off in Firefox the functionality of quick launch key (additional key in laptop) that cause to run the homepage

    Dear Support,
    Is there a possibility to switch off in Firefox the functionality of quick launch key (additional key in laptop) that cause to run the homepage. I would like to switch this functionality off, because the key is malfunctioned and always pressed. I was able to switch off the functionality of this key in Windows system by deleting entries in registry Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey. After this change, when somebody works in system the Firefox is not running is not launching all the time. But when I open the Firefox the setting in system is overwritten and when I am using it Firefox returns to the homepage instantly. I think because of this quick launch button. I tried to change settings in about:config like browser.startup.homepage, browser.startup.homepage_override, startup.homepage_override_url,… this is for Firefox version is 10.0.2
    Thank you
    Best Regards

    Hi,
    Thank you for your interesst.
    This internet button key is one of buttons located above the keyboard near the power button. What I have achieved to this moment was to stop it functionality in the system by clearing the entries in the fields Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey\17\ShellExecute and entry
    Computer\HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\AppKey\7\Association that was http
    After these changes in registry the behavior of the button was suppressed, the Firefox stopped to start unexpectedly all the time – so in system it works. But the problem is still when I have opened Firefox. Every time when you want to surf in internet – the homepage is activated also unexpectedly. I wrote this post with intention to ask if there is a possibility to switch off the functionality of this quick launch button in Firefox. Because I assume Firefox overrides the system setup – this I have made in registry. I tried with some option changes in about:config but without success. And I know that for older versions of firefox was some option in about:config do disable_quick launch button. But in 10.0.2 I couldn't locate it.
    Thank you
    Regards
    Lukasz

  • Is there a possibility to fix the screen of my ipod? it's broken(the glass)

    is there a possibility to fix the screen of my ipod? it's broken(the glass)

    Yes.  You can have it serviced by Apple or a third party repair company.
    http://www.apple.com/support/ipod/service/prices/
    For 3rd party repair sites, just do a Google search for "iPod screen repair."
    B-rock

  • I am unable to install apps as my iTunes states my computer is already authorised, then it tells me to authorise it? Does anybody out there know how to fix this. I am sorry if there is already a thread regarding this but there is 224,613 running atm.

    I am unable to install apps as my iTunes states my computer is already authorised, then it tells me to authorise it? Does anybody out there know how to fix this. I am sorry if there is already a thread regarding this but there is 224,613 running atm.
    I have an iMac that has iTunes on it.
    My iPad is a first gen but its almost upto date, I haven't updated it for about a month.
    If anyone out there has some information I would appreciate it a lot.
    I am only doing this as iBooks isn't working
    Thanks in advance.

    Removing the SC Folder worked for me. But as an after thought and another potential problem although I do not think it is related, I had movies authorized thru my wifes Apple ID and she changed her ID a couple weeks ago. This, I think, could have had a contributing factor although not sure.
    You have to delete the SC Folder and then reboot and then go into iTunes, re-authorize if it asks, then I was able to sync the movies. Hope this helps a little.

  • I have just reformatted my drive and reinstalled creative cloud and lightroom. When i open it, it says there is another version running the catalog and i have to switch to it to fix the problem, but there is no other version on my computer. Does anyone kn

    I have just reformatted my drive and reinstalled creative cloud and lightroom. When i open it, it says there is another version running the catalog and i have to switch to it to fix the problem, but there is no other version on my computer. Does anyone know how to fix this?

    Where did you put the LR catalog?
    Did you install the same version of LR, which one?
    OS and version?
    Open the folder where the catalog (*.lrcat) is located. If you see a file with lock in it while LR is not running, delete it.
    Now try to start LR again.

Maybe you are looking for