What is the residence time?

I all,
I need to delete and archive a production order, but when I run the program PPARCHP1 for setting the delection flag inddicator the log given by the system is:  "Residence time 1 not exceeded"
How can I change the residence time?!
Thanks,
Valentina

Hi,
Reorganizing an object (e.g. order, project) normally requires three steps:
1. Setting the delete flag (can be reset)
2. Setting the final deletion indicator (cannot be reset)
3. Reorganizing (writing the object to a sequential dataset and physically deleting it from the system)
Residence time 1 determines the time interval (in calendar months) that must elapse between setting the delete flag (step 1) and setting the deletion indicator (step 2).
Residence time 2 determines the time (in calendar months) that must elapse between setting the deletion indicator (step 2) and reorganizing the object (step 3).
Tcode to change the residence time is OPJH.
Regards
Vinod

Similar Messages

  • What is the real time use of implicit and explicit cursors in pl/sql

    what is the real time use of implicit and explicit cursors in pl/sql.............please tell me

    You can check the following link ->
    http://www.smart-soft.co.uk/Oracle/oracle-plsql-tutorial-part5.htm
    But, i've a question ->
    Are you student?
    Regards.
    Satyaki De.

  • What is the default time settings in Process chains

    Hi,
    What is the default time settings in Process chains.
    How to set time settings for daily,weekly,monthly loads in Process chains.
    What is the time settings that we have to take care when creating meta chains.
    Thanks,
    Madhu.

    Hi Madhu,
    The Time settings for any PC is done in the start variant of the PC. There is nothing like default time setting. These settings are totally depended on the requirement and system performance. It is a general rule of thumb to load the data during a time when the user activity is minimum as the loading process is going to occupy many dialog as well as background WPs. So, if you schedule them at a time when there are many users on the system, they might feel that the system is slow. Hence, you decide as to what is the best time for scheduling a PC. The same applies to meta chain also. In case of meta chains, you make sure the dependencies of the local chains is also handled. Hope this helps.
    Thanks and Regards
    Subray Hegde

  • What is the best time to set for my iMac intel to get to sleep?

    what is the best time to set for my iMac intel to get to sleep? the default is 10 minutes, i am changing it to 1 houirs but i put the sleep time for my monitod 10 minutes. is it decent?

    steve359 wrote: The longer it runs, the shorter the expected life (just plain logic),
    but if it MUST run 24x7, then likely one has budgeted for a new system
    within 3 years anyway.
    Not so sure of that "just plain logic." Allowing  sleep too often will cause wear on the drive -- excessive spin up and spin down. Temperature permitting, a drive will last longer if just left running.
    For other hardware, a lot will have to do with the internal temps. When it's quite hot here, I allow the computer to sleep more often. But otherwise, it's a bit of this and a bit of that. I wouldn't personally recommend running 24/7, although I know of several here who claim they do, with no apparent adverse effects over many years.

  • Norway - any know what´s the delivery time for purchase new iPhone 4S?

    On the web it says 1-2 weeks. Is that a reality?

    Theo - while I do not live or work in your part of the country I can at least share my experience.  I had a state of the art Droid Charge 4G LTE prior to getting the iPhone 4S.  Keeping all things equal, when I used my Charge on 3G, which was almost the entire time I owned it, it was slower than what I am getting on my new iPhone.  I was averaged .1 - ,5 down with my Charge and I am getting .5 - 1.2 down on my iPhone.  I really don't know what difference location makes other than the sheer amount of people on the network, but the iPhone should outperform your old Droid.
    I would recommend calling Apple Care or stopping by a genius bar at an Apple store.  You could also check the download speeds of display phones at a store, then compare yours at the same time for a determination of a harware issue or data issue.  I know this is some work, but it should narrow down a cause.

  • What are the correct Time Capsule Airport Utility Disk options?

    During configuration of the Time Capsule what are the correct options/settins in the Airport Utility on the Disk tab?  Does File Sharing interfere with Server File Saring>

    You can turn on file sharing.. it will not interfere with your server since it has a different IP address.
    You can use either device password or disk password.. do not use the profiles as that complicates things.. and Apple did not build in a link to Server to use standard user login which is a great pity.. when you have an active directory type setup it .. the TC could have been made a lot more business like.. However apple really have the TC aimed at the domestic market and users without a server.
    What are you intending to use the TC for?
    Most people would be better buying an airport extreme rather than TC when they are running business setup.

  • Shared cursor cache at ST04- What means the "wait tim"?

    Hello together,
    is there anybody who knows what the "wait time" or "Wait time per execution" within a SQL-statement means?
    Bye
    Heike

    HI
    Wait time in milliseconds: This is the time a user request sits in the dispatcher queue. It starts when user request is entered in the dispatcher queue; and ends when the request starts being processed and it shud be
    Wait time < 10% response time
    (response time : Starts when a user request enters the dispatcher queue; ends when the next screen is returned to the user. The response time does not include the time to transfer from the screen to the front end.)
    Regards
    Umesh K

  • What is the average time it takes to install

    I don't have time for this nonsense "mark this discussion as a question"
    How hard is it to ask, HOW LONG DOES IT TAKE TO DOWNLOAD!
    and then see, someone answers the question

    doug7900 wrote:
    How hard is it to ask, HOW LONG DOES IT TAKE TO DOWNLOAD!
    That depends on the size of the IT  and the download connection speed. For example a large download like Photoshop CC which is 1.3GB  may take fifteen minuets on a high speed cable connection that can transfer 5 to 15 MBits per second however the same download may take a day on a low speed Phone modem connection. What is the size of your IT and how fast is your internet download connection speed? Do the Math.....

  • What is the last time a user logged in?

    I want to create a portlet which shows the last time a user logged in (before the current session)
    As PORTAL user using sql, I could query view orasso.wwsso_audit_log_view , but this view is not accessible for normal users in the portal. So I can't access this view in a dynamic page portlet.
    What's the best way to retrieve this info?
    Regards,
    Ton

    Ton,
    create a PL/SQL function in the Portal schema that accepts username as a parameter and returns required data. Grant execute privilege on that function to PUBLIC or to a DB schema in which you are building your portlet.
    Cheers

  • What is the best time to validate this?

    I'm creating a standard form which asks the user for personal data (name, age, address, and so on...).
    At the end of this form the user must enter a User Name for his/her account.
    Since validating the user name requires the server to connect to the database and check wheter that name already exists or not, I'd like to do this verification only when all the other fields in the form are valid. This will reduce accesses to the DB.
    Think about connecting to the DB even when the user fails entering a valid age or other data. It seems pretty inefficient.
    What is the best way to achieve this check?
    I was thinking to create a backing bean which includes all the fields in the form, and which validates the user name field only if every single other field is valid... but I guess that's not how it should be done.
    Any idea? Please help.
    Thank you!

    That's what I do...
    The problem is: I want the other fields to be validated by their validators (and that what happens). But I want the user name to be validated only if all the other fields are valid (i.e. previously validated and accepted), otherwise no validation occours on the user name fields (except for the "needed" one)
    Is that possible?
    I'm doing it with a big Backing Bean which embodies the whole form and checks whether the other fileds are valid or not before validating the User Name.

  • How to know what is the everage time ???

    hi,
    i have a table with 1 million rows in it and i takes 5 minute to scan a table.i wanted to know is there any function or procedure that i am able to know in advance what is the mean it will take to scan a table ..
    thanka a lot ......

    Or check view v$session_longops. Some tools like enterprise manager can visualize this info as well :))
    If you have some small operation doing in a long loop then probably use dbms_application_info.set_session_longops. You may want to check more in http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:8913428904303

  • IPod Nano 6th Generation: What's the standby time for the new iPod Nano?

    This hasn't been mentioned anywhere that I know of.

    Four hours with usage, is based on how heavily you have been using it, which affects how fast the battery drains, so that looks reasonable.
    The charging time varies for different devices so you should not take the suggested time as an absolute value, it is only a suggestion.  You are getting good battery charge performance, looks good.

  • No response from o2- what's the best time of day to try getting through?

    I want to end my contract and get a PAC code, but it seems to be impossible to get through to o2. I spent half an hour on the online chat before being told the support team couldn't be contacted and I should phone. Then two twenty-three minute phone calls- the second got through at last but then cut out before I could get the code. Now the phone warns of 30-minute queuing, and back on the chat line the only message is "We're really busy right now. Thanks for waiting." Then it gave me after 25 minutes "Chat not initialized." So I wonder if anyone has any views on when it's best to try to get through? Or are they just very very unhappy to deal with anyone wanting to leave? Thanks. 

    MI5 wrote:
    There have been a number of complaints this week about this.
    They must be all on holiday!True....but 8.30 am is still the best time to ring...Get them as they just arrive for work

  • What Is The Sleep Timer On The Mic

    I was wondering what this was for. Is it for if you want to fall asleep to your music and have the player turn off after a while? I was under the impression (from what "sleep" usually means in other electronics) that if your player was paused or had no output (no headphones plugged in) that it would go to sleep after the specified amount of time, if not touched.

    RMskater wrote:I was wondering what this was for. Is it for if you want to fall asleep to your music and have the player turn off after a while?
    Correct.
    I was under the impression (from what "sleep" usually means in other electronics) that if your player was paused or had no output (no headphones plugged in) that it would go to sleep after the specified amount of time, if not touched.
    That's an idle timer, usually called an idle timer in other products also.

  • What's the average time for a User Tip to get published?

    Hello fellow Discussions members.
    I have posted [a tip in the User Tips Contributions Forum concerning the interworking of Apple Mail and Gmail IMAP|http://discussions.apple.com/thread.jspa?threadID=1692982] on 3rd of September 2008 and in a follow-up post announced that it's ready for publication the same day. I never got any feedback, complaints or objections, so I assume the tip is ok. I followed the given directions on the procedure word-for-word.
    Now, if you enter the User Tips Contributions Forum you can read the following concerning the process of publication (step 4):
    *Approximately 5 days* after you announce that your tip is completed (if there is no objection from another user), a Host will lock the thread and either move your completed tip to the User Tips Library or edit the existing tip. (My emphasis)
    So, obviously, the 5 day period is by now long exceeded and I was just wondering if my post will ever get published... Don't get me wrong, it's ok if it takes more than a month for a tip to get published - as long as potential contributors get informed that way. *What I find irritating is the statement about the 5 day period as it's obviously misleading.* Either my tip is inappropriate (in which case I expect a notification) or it is all right and gets published during the stated period. Neither happened up to this day. So, what gives?
    I'd appreciate any feedback concerning this. Thanks in advance for your replies.
    floba

    a brody, thanks for your quick reply. Although you might get a different impression from my post, I am patient All I ask for is to honestly state the time a publication may take. I come to the conclusion that the talk about "approximately 5 days" is complete eyewash!
    floba

Maybe you are looking for

  • Can I set a default Playback preference for multiple users on same PC?

    I am setting up an editing suite for our University which has a "per machine" Creative Cloud licence. It is a PC installation. This machine will be used by a class of students who will log in with their own credentials. I need to set the preferences

  • How to get a field value in the report

    hi all :- i need to get the field value in the formate trigger inside a specified field in the report?

  • Disk Utility....problems copying DVDs

    First off, the DVD's I will refer to are ones I made myself, on this same machine. I'm not duplicating commercial stuff. A while back I successfully used the Disk Utility to make a disc image of an old DVD and make a copy of it. Now, however, I can't

  • IMac screen went black. What now?

    All was working well and then the screen on my iMac went black. PRAM reset did not help. Restarting indicated that the computer was on but the screen was black. Any suggestions? I am running a 27" iMac, 10.5.8 OS.

  • 20" iMac and 20" ACD

    (I asked this question in the iMac display section, but no one is replying me. Can anyone answer me here? Thanks!) I'm planning to connect my 20" iMac to a 20" Cinema Display Will my system slow down because of the extra display (and double the pixel