How to set password expiration for EBS users

how to set password expiration for EBS users .
Regards .

Please follow below steps:-
This is available starting in RUP4.
The script to expire all passwords in the fnd_user table is $FND_TOP/patch/115/sql/AFCPEXPIRE.sql.
It can be executed from SQL*Plus or as a Concurrent Program: sqlplus -s APPS/ @AFCPEXPIRE.sql
or Submit concurrent request: CP SQL*Plus Expire FND_USER Passwords
This script sets the fnd_user.password_date to null for all users which causes all user passwords to expire.The user will need to create a new password upon the next login.
Thanks,
JD

Similar Messages

  • How to set password policy for apps users

    Hi All,
    Can anyone please help me.
    I am working on apps 11i.
    How to set password policy for users
    Thanks

    Check Note: 189367.1 - Best Practices for Securing the E-Business Suite
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=189367.1

  • How to set Password expiration at 45 days for all users (new or existing)

    Hey all please suggest suitable way to set password expiration at 45 days of all application users.
    i am using APPS R -12.1.3 ...

    reply with possible ways.
    URGENT...

  • How to disable password expiration for the administrator?

    Hello
    is it possible to disable the password expiration for the administrator? For all other users the password should expire after 90 days but not for user administrator.
    How would this look like with LDAP integration? I assume that user administrator is not replicated to LDAP and exists only in the local UME database, thus it would work like without LDAP. Or is my assumption wrong?
    Thank you in advance for your answers.
    Best Regards
    WB

    Hello Harikiran,
    thanks for your answer.
    Yes I found the setting in VA:
    Global Configuration > server > services > UME provider >
    ume.logon.security_policy.password_expire_days
    or in Configtool:
    Global Server Configuration > services > com.sap.security.core.ume.service >
    ume.logon.security_policy.password_expire_days
    But for me it sounds that this will apply then for all users that are managed in UME, not only for the administrator. Are you sure that this is only for the administrator?
    What is with the users database table in WEB AS Java? Does somebody know the name of this table?
    Regards
    WB

  • Setting password expiry for all users in oracle apps R12

    hi,
    i have OS RHEL 5,Oracle apps: 12.1.1
    now i want to set the password  expiry for all the users in oracle apps to 60 days..
    can some on please guide on how this could be done.
    It is urgent,your help is appreciated.
    regards,
    Milan Rathod

    Hi Milan;
    Check below thread
    How force users to change passwords every 60 days
    How force users to change passwords every 60 days
    PS:Registered: Sep 24, 2010
    Total Posts: 38
    Total Questions: 30 (28 unresolved)
    Please change your thread status to anwered which you already get answer for your issue
    Regard
    Helios

  • How to set dynamic expiration date in User Task

    Hi
    I need to set the expiration date of a User Task to a specific date, not a duration. Is it possible to do this?

    I have also got a smiliar problem. Does anyone have any further information to how this can be achieved?
    I have been able to use the Human Task Wizard screen (<usertask>.task) to hard code the expiration time. Using the Fixed Duration option of days, hours or minutes. I have tried to use the 'By Expression' to do this but have been unable to get it to work. I have tried to select the /task:task/task:systemAttributes/task:expirationDuration or the /task:task/task:systemAttributes/task:expirationDate element within the task workflow xsd but are unsure how to get it to read the date. I have tried to assign a time component to expirationDate and a time period P0DT0H20M to the expirationDuration element.

  • How to set DEFAULT GROUP for a user when I create a user manually thru pl/s

    Hi Gurus,
    I am creating portal user accounts and groups thru pl/sql calls to
    portal.wwsec_oid.create_user_entry
    portal.wwsec_api.ADD_USER_TO_LIST
    I didn't find any parameters to set the DEFAULT GROUP for the users. I want to set the default group for all my users. I don't want to do it thru portal. Cuz, We have around 1600 users. Please post a reply if you have some info about how I can set this thru code.
    Thanks
    Raj

    You can achieve that using 'wwsec_api.set_defaultgroup'....

  • How to set permissions like "For all users" with Sandbox

    Hello!
    Hello!
    I am using Sandbox for Mac OS X Leopard and I've got a question to you:
    How can I set up a folder to behave like the For all users folder in the users directory?
    Greetings

    Well, sandbox sets ACL's not posix permissions. The sticky bit is a posix permission. Sand box will allow you to do something similar to the sticky bit using ACL's, but the exact duplication of the sticky bit is not possible, but something just as useful or more useful can be easily implemented.
    To set the sticky bit you will need an app called FileXaminer or the Terminal.app command line.
    to set the sticky bit simply put "1" in front of the the permissions number when you run chmod on the command line, here is an example:
    chmod 1775 /users/data/shared #assigns permissions 775 and the sticky bit#
    chmod 775 /users/data/shared #assigns permissions 775 without the sticky bit#
    note: note actual use of the chmod and chown commands will, in most cases require the sudo (super user do) command to be used with them. example:
    sudo chmod 1775 /users/data/shared #assigns temporary super user priviledge#
    The way I set my shared user's directories with ACL's is this:
    first I created folder /users/data -permissions=777 (everyone).
    I had three users so I created folders for each in /users/data:
    /users/data/user1 #this is just example-substitute real user name#
    /users/data/user2
    /users/data/user3 #etc,etc,#
    set the posix permission on each user folder 700 (owner:read,write,execute)
    set the owner and group on each one accordingly:
    chown user1:staff /users/data/user1 #substitute real user name#
    chown user2:staff /users/data/user2
    chown user3:staff /users/data/user3 #(etc,etc)#
    Now each user has their own data folder they can read and write to at will (when they are logged in to their user account).
    They can safely create and maintain their data and no one can delete it.
    Since these are shared data accounts. other users will need to read the data, this is where the ACL's come in.
    You will need to use Sandbox to place ACL's for each allowed user, on each of the user directories:
    0: user:joe inherited allow list,addfile,search,add_subdirectory,readattr,writeattr,readextattr,writeextattr,readsec urity,file_inherit,directoryinherit
    1: user:mary inherited allow list,addfile,search,add_subdirectory,readattr,writeattr,readextattr,writeextattr,readsec urity,file_inherit,directoryinherit
    2: user:sue inherited allow list,addfile,search,add_subdirectory,readattr,writeattr,readextattr,writeextattr,readsec urity,file_inherit,directoryinherit
    Basically with the above ACL's the only thing the allowed user can't do is delete files. They can copy files, they can add files, etc. This behavior is somewhat similar to what can be accomplished with the sticky bit, but much more controlled and structured. That is the beauty of using ACL's.
    Using SandBox you can taylor the permissions as you see fit for each every user. You can set permissions for an administrator to delete files as well. You can take away or add permissions for each user as you see fit. let your imagination be your guide.
    ACL's weren't meant to replace posix permissions, but rather to allow administrators to fine tune user permissions.
    Kj

  • How to set toolbar options for all users in Reader

    Hi to everybody
    I have istalled adobe acrobat reader on a PC and i'd like to hide the toolbar for all user (old and new users) of thes PC.
    I'm using windows xp and acrobat reader 7.
    I have try to chek the user's folder and system registry but i don't find anything usefull
    How can I do that?
    Thanks
    Andrea

    Hi to everybody
    I have istalled adobe acrobat reader on a PC and i'd like to hide the toolbar for all user (old and new users) of thes PC.
    I'm using windows xp and acrobat reader 7.
    I have try to chek the user's folder and system registry but i don't find anything usefull
    How can I do that?
    Thanks
    Andrea

  • How to 'overrule' password policy for one user ?

    hi,
    i am system administrator on our ECC 6.0.
    we have 4 clients, test and production.
    so i have 8 users, not everyone has the same password (for some reasons).
    when i want to change the password i get the message that the passwortd cannot be on of the
    last 5 passwords.
    well, i want to set the password the same for ALL of my 8 users.
    how can i 'overrule' the message, so that i can change the password ? any ideas ?
    best regards, Martin
    Edited by: Julius Bussche on Mar 28, 2011 6:46 PM

    >
    Florian LINTNER wrote:
    > But should we really publish such illegal things like USRPWDHISTORY?
    What is illegal about table USRPWDHISTORY. It's a regular table so to think that if you don't mention it on public forum then nobody will find it is a bit naive.
    There are usually 3 reasons why you have to do some dirty trick: you want to do something wrong, there is a technical limitation in solution or there is something serious wrong with the solution. In my experience the first option is the most common and this case looks to me like the first option. It's not clear from your message what is the purpose of those users but as it was mentioned you can change their type or maybe you can use a different authentication method for them (certificates or SSO) to avoid password issues.
    Cheers

  • How to set up ipad for elderly user

    I want some ideas for setting up an iPad for my 89 year old father who has never used a computer and has some visual impairment. The only thing he wants to do is listen to audiobooks. I want the titles of the books to be no more than one click away from the desktop. I want him to be able to control the stop/start and volume with a clearly laid out dialog box on the desktop. Help please...

    Hi,
    I have been looking into this subject. We are buying my father-in law an ipad for his 91st birthday in two weeks. He had unsuccessful surgery for a detached retina a couple of years ago and so has vision (not too good) in only one eye. When we were researching how and if he'd benefit from an ipad (which he wants) we weren't sure, but then I read about VoiceOver that is built into every ipad. We're all very excited about it.
    http://www.apple.com/accessibility/ipad/vision.html
    Because you said they have a desktop, they can also set up Home Sharing between their desktop and the ipad if they have a wireless connection. If not, they just need an inexpensive wireless router and a little help setting it up. We're getting a $40 ish Netgear for him that we paid $80.00 for two years ago. They're practicall plug an play and need only cable modem box, which most have these days.
    Your father/parents will be able to do more than listen to audio books. With an ipad he can do a lot more. He'll be able to read and hear newspapers, magazines, etc. There are many games/apps that he can buy that can exercise his brain. They will speak to him! Some months ago there was a thread that went on and on about how nurses/family membes who were finding that their senior parents/patients (some with Alheimer's) became more alert when working with someone on the ipad. It was encouraging. IF he has netflix he can watch movies on it. Your music might be on your computers from cd's. If they have music cd's at home, you can quickly upload them to their computer, put them in itunes, and sync them to the ipad, too.
    VoiceOver will help with so many other things that are explained in the link I gave you earlier.
    Please also check out you tube videos for using VoiceOver in the ipad. The setting up and usage videos are very good and many examples are given by blind people. (Seeing how VoiceOver even reads the apps that might be on the front page as fingers glide over them is great.)
    Also, I'm not sure where you live. Many libraries have free e-books with or without audio that your parents can take out. I learned last week from someone looking for the same, that if you're in Canada there is something called CNIB where people with vision problems can get all the e-books they want. You might want to google it and see where you can get free -ebooks for your parents. Audio books can be expensive. The thread below 
    Please go to the link above and then check out you tube.
    I wish my 86 year old Mom (vision is good) would use an ipad.
    I hope this helps.

  • Reminder needed: how to set password protection  for all uses of  computer

    It's been a long time coming, but I feel that I need to limit the access to all materials on a Mac running OS 9.2.
    Is there a simple way that I can password protect the whole computer?
    Thanks for your time - and stay cool!

    Hi, Bruce -
    Try using Multiple Users to do that. One of its features is password access to use any account.
    This will provide a moderate level of security - however, a knowledgeable person will have little trouble defeating it.

  • How to disable/set password expiration to None in EBS

    HI ,
    I just clone a 11i , and was asked to set all users password not to expire . I have studied FND_USER_PKG.UPDATEUSER , but has no idea how to do it . Can anyone help ? Thanks
    Felix

    Hi;
    Please check below which could be helpful for your issue:
    Password information-Where ebs pass keep
    Re: Password information
    password expiration for EBS users
    how to set password expiration for EBS users
    password polciy
    Password policy
    Regard
    Helios

  • Setting Default Preferences for All Users in Crystal Reports Server 2008 v1

    We are currently looking to set the default preferences in the CMC for all of our users.
    I did locate this page Link: [How to set default preferences for all users in Infoview 3.1/CRS 2008]
    The first part of the thread did seem promising but I am unable to find the sample .jsp code that people recommended.
    I would assume that this scenario is common enough that someone knows a way to set universal preference defaults.
    Thank you

    I thought I could just run it too but when I attempt to I get a Windows Script Host error:
    Script: C:\User Prefs.vbs
    Line: 1
    Char: 1
    Error: Expected statement
    Code: 800A0400
    Source: Microsoft VBScript compilation error.
    I noticed the first most line seems to be markup for a web interface though I am not familiar with vbs so I may be wrong.  I used the publishing wizard to put the script on the CMC to attempt to run it through the CMC but it still does not work.

  • How to set password complexity and expiration for ClearPass admin users

    Requirement:
    As a server admin, i wish to set complexity for my ClearPass admin (management login) password and also as per company policy wish to set password expiration. This document explains how it can be achieved.
    Solution:
    From ClearPass 6.5.0 a new Password Policy Settings form was added for both local users and admin users.
    Configuration:
    To use this option, go to either Administration > Users and Privileges > Admin Users > Password Policy or Configuration > Identity > Local Users > Password Policy. Options that can be configured for the password include length, complexity, disallowed characters, disallowed words, disallowed user ID or repeated characters, and the number of days to expiration.
    Admin User
    Local User
    Verification
    In Password Policy updated the password complexity as following (atleast one uppercase and one lowercase letter and 3 as disallowed character). Also set the Password expiration to 5 days.
    After that tried to reset the admin password with character 3 and got an error as following

    Please follow below steps:-
    This is available starting in RUP4.
    The script to expire all passwords in the fnd_user table is $FND_TOP/patch/115/sql/AFCPEXPIRE.sql.
    It can be executed from SQL*Plus or as a Concurrent Program: sqlplus -s APPS/ @AFCPEXPIRE.sql
    or Submit concurrent request: CP SQL*Plus Expire FND_USER Passwords
    This script sets the fnd_user.password_date to null for all users which causes all user passwords to expire.The user will need to create a new password upon the next login.
    Thanks,
    JD

Maybe you are looking for

  • Is it possible to use Boot Camp to install Windows on an external HD?

    So I don't use up space on my internal hard drive, would it be possible to use Boot Camp to install Windows to an external hard drive?

  • How to get video off lumia 800 onto laptop

    Hi, I have some videos taken at the weekend that I would like to preserve. I understand that Zune is the way to do this, so I downloaded the Zune install package and transferred it to my laptop. However Zune refuses to install as my laptop does not h

  • Open item not seen in F-44 screen

    In one vendor when I am executing Fbl1n its showing 5 line items,but when I trying for clearing through F-44 in that prcosee open item I am able to see 4 line items only.  all items are Sp gl , and i am putting Sp Gl indicator at input screen of F-44

  • Problem signature:  itunes has stopped working

      itunes has stopped working , kindly help, Problem Event Name:    BEX   Application Name:    iTunes.exe   Application Version:    10.4.0.80   Application Timestamp:    4e262cf4   Fault Module Name:    StackHash_0a9e   Fault Module Version:    0.0.0.

  • Function module to validate time

    Hi Gurus, I am getting invalid time from source system , I need to validate the time in BW. Is there any function module to use to validate the time field ? Thanks Liza