Set User Inactive Days

Hi All,
Please let me know how to set Number of inactive days before user name is disabled
We are using 11.1.1.3 and i tried to set this in EAS, i got the error message
Set server properties Failed
Error: 1051513 Setting number of inactive days before a user is disabled through Essbase is not supported in Shared Services Security mode
Thanks,
Prathap

I don't believe you can set inactive days when using Shared Services with native security, you will need to look into using an external directory such as MSAD to achieve this.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • How to Run a Request Set on specific days and at specific hours

    Hi community,
    The question is simple, how to rin a Request Set on Specific Days and at Specific hours?
    Let me explain the scenario.
    E-Business Suite, Release 11.5.9.
    We have a request set under Sysadmin user. This Request set is running 24x7, during all year, and we want to restrict the execution from Monday to Friday since 08:00 a.m. to 20:00 p.m. in order to increase the productivity of our system and more over, to avoid the size increase of a table (OE_EXPOSURE_INTERFACE)
    The Request Set includes 5 Requests:
    10. Workflow Background Process.
    20. GUZMAN: Cálculo metodo pago en pedidos.
    30. GUZMAN: Exposición de crédito externo.
    40. Credit Exposure Import.
    50 Initialize Credit Summaries Table.
    As you can see three of them are standar Oracle Order Management Processes and two of them are custom Oracle Order Management Processes; and the requests must be executed in that order.
    We have just thinking about to create a Custom Manager with a workshift from Monday to Friday since 08:00 a.m. to 20:00 p.m., and include the requests as specialization rules or assigning those request to a Request Type and then include that Request Type as specializated rule, but this does not assure us that the request will be executed in that order.
    Any suggestion?
    Thanks a lot for your answer in advice.
    Luis.

    Hi Anchorage,
    It could be a solution, but not the exact solution that we want. Let me say why.
    With the Request set we have the security that each concurrent request is executed when the prior one finishes; is that to say 20, does not begin till 10 finishes, and 30 does not begin till 20 finishes and so on. The most critical concurrent requests are 40 and 50, cause those are the ones that import an external credit exposure in the OE_EXPORURE_INTERFACE table (40) and are the ones that delete those external credit exposures imported (50). The problem is (and we do not know why) that these actions makes grow the size of the table and each time the 40 and 50 processes takes more minutes to finish. That's why we need to truncate the table in order to avoid the excesive grow of itself.
    Making each process independent, with a begining time and hoping and expecting that the following one does not begin till the prior one ends is not an admisible or realizable solution due to the problem with the 40 and 50 processes.
    So at the end, we need a request set in order to know that each one began when the prior one ends.
    And Due to in order to truncate the table, as I said before, the processes that have a relationship whit it, must be stopped (just the 40 and 50 processes) prior to the truncation.
    So as you see, it is difficult, very difficult.
    Regards.

  • Can I know the user expires days?

    As we know, I can set the user expires days in the security manager. If the user password expired, he cannot login the dashboard.
    However, now I want to notify user that his password will expire before the date. So now, I want to ask is there any system variable about the user expires days? Then I can show it on the dashboard when user login. Or are there any other ways to do that?
    Thanks
    Larry

    Hi:
    Sorry to bring this thread back.
    In the Query Repository tool, I can search all users. But there are no information about the expires date/days. Now that biee can expired the user password, I think there must some where to save the pasword created date or days before password expired. Is it possible to get these information in rpd?

  • User Inactivity

    Hello Guru's,
    Good morning. We are performing license measurement twice a year and perform user inactivity every quarter. To save time on user inactivity and to achieve accuracy, planning to have a new custom program developed. However, not sure if SAP has any plans to develop such a funactionality. We have CUA implemented in Solution manager (SAP EHP 1 for SAP Solution Manager 7.0, SAP basis component SAPKB70104).
    As part of user inactivity, we filter the inactive users from all servers and set thier valid to date to last login date and lock them. Due to recent support package implementation we have additional functionality in report "RSUSR200" in CUA master. Which ideally gives the inactive users from all systems. However, we need to evaluate the user's again on individual basis since it is not complete. That means if user is part of 5 systems and inactive in 1 system, the user is shown in the report as inactive.
    We have recently implemented another new functionality in CUA "RSUSR_SYSINFO_LICENSE". This report provides no of users based on the license category from selected systems.
    Now the question is, do you know if any new support packages has the functionality Or ever heard from SAP
    for performing user inactivity. That means, simply lock the user, set validity date to past or last login date if the user is inactive in all systems.
    It will also be good if you share on how are you performing this activity?
    Regards,
    Gowrinadh
    Edited by: Gowrinadh Challagundla on Apr 27, 2010 9:47 AM

    Hi Bernhard,
    Thanks for the reply. Let me explain in details about that.
    USER A is now a CRM user and before worked in ECC. The user is not using ECC any more, and only active in CRM. When I run this report, USER A is reported inactive in ECC. Which is right. However, I can't lock this user globally and set valid to date in past because the same user is active in CRM.
    Since I know User A is a CRM user, I can avoid locking this user. The same way I need to determine all the user's reported here. The functionaity I am looking here is "report should check in all systems and say whether user is inactive and all respective systems". If the user is active in any one of the system, it should not be shown.
    Hope it clarifies.
    Regards,
    Gowrinadh

  • Can a sprite become visible after a certain amount of user inactivity?

    Can a sprite become visible after a certain amount of user inactivity? like a timer triggering an event?

    Hi Kevin,
    You can look at the on timeOut event. (This is not to be confused with timeOut objects)
    There are a number of related properties, which date back from the early days of Director, and which seem to have been omitted from recent versions of the documentation, even though they still function. I give them here with their original names (prior to Director 10):
    the timeOutKeyDown
    the timeOutLapsed
    the timeOutLength
    the timeOutMouse
    the timeOutPlay
    the timeOutScript
    the lastClick
    the lastEvent
    the lastKey
    the lastRoll
    (You can also use the more recent DOM style for these last four properties: _player.lastXXX)
    Here's a very simple script which will make sprite 1 disappear when the movie starts, and reappear if the user does nothing for 5 seconds:
    on startMovie()
      sprite(1).visible = FALSE
      the timeOutLength = 300 -- = 5 seconds * 60 ticks / second
    end startMovie
    on timeOut()
      sprite(1).visible = TRUE
    end timeOut
    If you click the mouse at intervals of less than 5 seconds after starting the movie, then the sprite will remain invisible.
    NOTE: Using sprite(x).visible = FALSE will make the entire sprite channel invisible everywhere in the Score. It's better to use sprite(x).blend = 0, unless the sprite must not react to the mouse while it is invisble, in which case it is better to move it off-stage.
    Is this what you are looking for?
    James

  • PM-PP integration: equipment set to inactive status

    Hi,
    In the case where an equipment is used as a production work center (in equipment master data , 'location' field filled with PP work center) : when equipment is set to inactive, we can't create a PM order to this equipment : that's fine.
    My questions are:
    -is there a way to block this production work center from a capacity perspective?
    -is there a way to have the information that a production order has been created  on the inactive equipment/production work center?
    Thanks in advance
    P.

    -is there a way to block this production work center from a capacity perspective?
    This is not possible in std. SAP, you may have to use the exits to achieve this. Have a look at these exists: IWO10002 PM Order: Customer Exit Before Release and PPCO0007 User Exit for Checking or Changing Header Fields During Orde
    is there a way to have the information that a production order has been created on the inactive equipment/production work center?
    I think you can view this in the planning board of the work center, if you are using capacity planning.
    Praveen

  • Setting user POV in FR Studio

    Can anybody kindly guide me that is there any way to set same user POV / preferences with one time setting for all users in FR Studio..............what i know till now that i have to set user POV by logging in through each user ID.
    Regards, Umair

    Hi Umair
    I know that there is a ManageUserPOV.properties utility that used to be in the BIPlus\bin directory but I cannot seem to find reference to it in the latest documentation (I'm probably looking in the wrong place!). That is to do with POV management but in my experience this is useful if POVs get corrupt or to set it one time only, I'm not sure how easy it is to use it to manage user POVs day to day.
    I have just found some information in the Property Information section (Chapter 4) of the attached document:
    http://download.oracle.com/docs/cd/E17236_01/epm.1112/fr_webadmin.pdf
    I've never tried it but it implies that you can set the default user preferences for FR, some settings for studio and some for workspace/web. I wish I'd found this before as I've always had it as a users first task to log in and set their default preferences, e.g. Preview POV = ON is controlled by the following in Java: com.hyperion.reporting.HRPrefs.previewuserpov
    Hope this helps
    Stuart

  • Discoverer Plus and the SSO GUIT (Global User Inactivity Timeout)

    Does Discoverer Plus obey the Global User Inactivity Timeout?
    We've enabled SSO for Discoverer Plus and Viewer (v. 9.0.4.45.02), and we've
    configured the Global User Inactivity Timeout. For testing, we set GUIT to 5 minutes.
    When we re-activate a Viewer session after more than 5 minutes of no activity,
    we're prompted for our SSO username/password, as expected.
    If we leave a Plus session inactive for more than 5 minutes, we are not prompted for our SSO username/password.
    If we leave a Plus session inactive for 30 minutes, a pop-up appears warning us
    that Plus will exit if we don't take some action. This pop-up is driven by the fact that we set Timeout to 30 minutes in the pref.txt file. Plus behaved this way before we enabled it for SSO.
    We thought that Plus and Viewer are both governed by GUIT in the SSO environment. Are we wrong about that?

    Yes, i am having the same problem with the Timeout. No matter what i have the timeout set to, the portal never redirects to the login, the users stay logged in indefinitely. We are running 10gAS (10.1.2). I have a feeling it has something to do with the cookie not being properly set. If ANYONE has any experience with this please reply. thanks so much
    Steve

  • Setting user inacitve ims5.2

    ./imsimta version
    iPlanet Messaging Server 5.2 HotFix 1.21 (built Sep 8 2003)
    libimta.so 5.2 HotFix 1.21 (built 18:35:22, Sep 8 2003)
    SunOS mailsrv1 5.9 Generic_112233-12 sun4u sparc SUNW,Sun-Fire-280R
    I'd like to set a user inactive, I need the account data to exist, but don't want mail delivery. I've tried setting inetuserstatus to inactive but that sends back a transient failure. The same thing happens with mailuserstatus. I'd prefer to have a "hard" failure. Is there a better solution?
    Thanks,
    Roger S.

    Set the user to "deleted", rather than "inactive". Nothing gets deleted, unless you run a "purge" command, and you'll get that permanant error.l

  • Only 5 users a day - sharing issues

    I'm using iTunes 6.0.5 (20) on my Powerbook. Others on my network can see my shared music, but they get a message indicating that only 5 users per day can share my music. This happens even when I just get on the network and have someone check right away.
    My firewall sharing ports are set properly. Sharing is set properly in iTunes preferences. I can see and share/listen to others' music on my network (although some of them give me the same error message).
    I would like to share my 8676 songs with others, and I've been able to in the past. Any ideas?
    2 15" Powerbooks, G4 iMac, and a Cube   Mac OS X (10.4.7)  

    This problem clears up when you trash your iTunes preferences.
    User->Library->Preferences->com.apple.iTunes.plist
    Then restart iTunes. You'll have to go through the start-up panes, but sharing works after everything is set.
    I figured this out back in September, but forgot to post the solution. The same problem just reared its head, perhaps with iTunes 7 upgrade.
    2 15" Powerbooks, G4 iMac, and a Cube   Mac OS X (10.4.8)  
    15" Powerbook, G4 iMac, and a Cube   Mac OS X (10.4.3)  

  • Need to find a calendar to schedule multiple assignments with multiple tasks set on specific days for multiple people

    There may be no such animal as what I am searching for, but I thought I'd give it a try.
    What I need to do is find a calendar app that allows me to have individual calendars for staff members that I can place a several-days-long assignment and have those people access remotely on an iPad or iPhone (autosync).
    I also want to be able to have tasks set on specific days within that assignment that have alerts/reminders for each stage of the assignment.
    Being able to custom colour each individual assignment (not just the person's own calndar) is also necessary, as these asignments overlap and need to be easily distinguishable at a glance. Each assignment needs to be its own entity and not affect any furture or previous entries, even if I choose the same colour.
    It needs to be in a month by month view and be able to be something each person can subscribe to and sync up with for changes on a daily basis. It does nothave to be a calendar like in the screen shot below, it could be a linear calendar that has days across the top and assignments down the left side.....
    Here is a screen shot of a rudimentary excel spreadsheet I have been using. It is awkward and becoming unmanageable as the number of assigments increases and more staff are being added on. And I must send a new spreadsheet out every time I make a change or add an assignment, which is several times a week.
    I suspect I may be asking for the world, but if anyone knows a direction I can go in to start a search, I'd be grateful. I haven't had success of my own so far and need to find something soon.
    iCal doesn't work for me due to the fact I can only colour code the calendar itself and not the event, plus not being able to have multiple tasks within one event. And the qty of assignments I'd have would see most getting lost, eliminating my abilty to see every staff member's assignmanet at the same time.
    Thank you in advance if you have a suggestion and if not, thanks for looking at my dilemma! 

    check with T-code TPM44
    zashok

  • Setting the first day of the week

    Hi,
    Is there any other place in Mac OS X where I could set system's first day of the week, except iCal? In iCal it's set to Sunday, but in OmniFocus mini calendars show Monday as the first day of the week, although even there in OmniFocus preferences I've set it to use Sunday as the first day of the week. Developer says that OmniFocus is using system's settings, but nowhere in my system (except iCal) I can find where I could set the first day of the week. I have set English as the default language and order of list sorting in the International settings. Any ideas or suggestions?

    Unless it is set with the Country in the International preferences, I don't think their tech support knows what they are talking about. However, if that is where it would be set, you should be able to override it with the custom settings, but you can't.
    I'd ask them to tell you where that gets set, or is stored. Ask them what system call is used to get that value. My guess is they won't be able to tell you.

  • Start recording video at a set time of day and off at a set time of day, and or can start rec video when motion detected, till no motion detected for a set period

    is there an app for iphone which can be set to start recording video at a set time of day and off at a set time of day, and or can start rec video when motion detected, till no motion detected for a set period. basically someone is vandalising my vehicle and i really really want to catch the mongrel
    thanks for any suggestions

    Nope.

  • OBIEE11g: Set user privileges to  Open RPD in Read Only mode.

    Hi All,
    Can some one help me , how to set user privileges to open RPD in read only mode.
    1) If a user ( xxxx) logs into the RPD then the rpd should open in Read Only Mode for xxxx user.
    2) If other user (YYYY) logs in online mode then it should open in online mode for other user (YYYY).
    How to set the security to achieve this.

    863866 wrote:
    Hi All,
    Can some one help me , how to set user privileges to open RPD in read only mode.
    1) If a user ( xxxx) logs into the RPD then the rpd should open in Read Only Mode for xxxx user.
    2) If other user (YYYY) logs in online mode then it should open in online mode for other user (YYYY).
    How to set the security to achieve this.Hi,
    I don't think it's possible, can go with metadata dictionary option which is also help to analysis RPD.
    refer section,
    http://docs.oracle.com/cd/E23943_01/bi.1111/e10540/utilitiesexprbldr.htm#BIEMG325
    Thanks
    Deva

  • Current date - user entered days

    Hi all
    I have this scenario:
    I have safety stored as attribute of material.
    I have to do some calculation based on this so i created a replacement path variable and used replace  with attribute value.
    Now i have 2 safety stock:
    1. Current ( safety stock restricted to current date )
    2. Safety stock Past : restricted to  (current date - User entered no of Days).
    How to calculate the second one in 2004s??
    Thanks

    Hi Srini
    Thanks for quick response. here is the issue. The safey stock needs to be calucated for just that day. so it not aggregated from current date- user entered days to current date.
    ex:
    Current Safety Stock (10/26/2007)    Safety past (10 /26/2007 - 7 days) ( user enters 7 days)
    100                                                      200
    So how to restrict Safety past to the date which is current - user enetered no of days.
    Thanks
    Pankaj

Maybe you are looking for

  • Cloned Hard Drive Will Not Boot

    Hi, I have an early 2008 IMac running 10.7.5 that I'm upgrading the hard drive on.  I used Carbon Copy Cloner to clone the original 320gb drive to a new Seagate Barracuda 7200 1 TB 7200RPM SATA 6 Gb/s NCQ 64MB Cache 3.5-Inch Internal Bare Drive ST100

  • Adobe Clip Notes picking up random words and timecode markers from speech transcription metadata

    I've been experimenting with the speech transcription feature in Premiere CS4 - sometimes my results are good, sometimes not. Regardless, after I'm finished editing my project and export it via Adobe Clip Notes for client review, the clip notes file

  • How do I put a picture in Final Cut Pro X's Stats title?

    Hey! How do I put a pictures on these two little gray boxes, on the Stats generator?

  • How to encript a pdf

    I have read every help topic I thing.   They talk about Navigation, Content, Tags, Security Enhanced, Tools. None of these things show up on my Adobe Reader.   I have the latest version. I want to eMail a file in a safe way with a password then the r

  • Javascript window.open call results in new window and not new tab.

    I'm creating an extension and using JS to open a new window. I've tried a variety of forms including something like: window.open("https://www.FOO.com" + dest,,"_newtab") and just window.open(url).. The option is set (tools/options) to open in a new t