How to Enforce User Change Password First Time User in Release 2?

Hi...
We discovered in Oracle Directory Manager(in unix is oidadmin), there actualy
column to expiry date.(the default is 60).
We follow this notes in metalink..
Note:176470.1 Subject: How To Pre-Expire Portal Passwords
Even though the note is for Portal30(release1), we just wangt to try it in our Release 2...
Extract from the note
"3. Set the value of the column LAST_PASSWD_CHANGE_TIME in the table WWSEC_PERSON$ in SSO schema to a value older than the password expiration period (default is 90 days) before the current time (e.g. sysdate - 100) for the appropriate user(s)
4. For example, if you have created a user called TEST
you would issue a command such as:
update wwsec_person$
set LAST_PASSWD_CHANGE_TIME =sysdate-70
where USER_NAME='TEST';
commit; "
But, when we try to login again in the portal, we can still login...
So, is the function still exist in Release 2?..
If not, why Oracle Portal throw that function away?
Why there still columns in WWSEC_PERSON$ that maybe linked to the password problem?
can anybody help/explain?
Thanks....

Rather than rehash what has already been thoroughly discussed, check this thread. This should answer your question.
Can a user change his own password after admin has set it
The english version of Jose Troya's blog: http://obiee101.blogspot.com/2008/08/obiee-change-password.html
Edited by: LC143 on Aug 27, 2008 1:36 PM

Similar Messages

  • How to trigger and change password for AD user after form based login

    Hello,
    We are authenticating against Active Directory with Weblogic 10.3 using FORM based security. Everything is working. I need to now change a password for an authenticated user. For example, I have set a user to have their password expire on next logon from the AD side. The user logs in but somehow I need to trap some info from Active Directory (or an LDAP conversation) to figure out if I need to force the user to change password.
    Do I need to start looking at custom code with LDAP Java SDK's or can I use a canned MBean from Weblogic Server.
    I am looking at http://www.mozilla.org/directory/ for LDAP.
    Can I set/reset an AD user's password with an MBean like the following link?
    http://download.oracle.com/docs/cd/E13222_01/wls/docs92/javadocs/index.html?weblogic/management/security/authentication/UserPasswordEditorMBean.html
    If anyone has any experience with this or can point me in the right direction let me know.
    If anyone else is interested please add to the tread and I'll be sure to keep the found solution(s) updated here.
    Thanks...........
    JJ Everett

    Hello JJ
    Please see document ID 403484.1 in http://metalink.oracle.com. This may help to understand what you are aiming to do. Cheers
    -- Nathan

  • How do i get past the first time user restriction, ask to review then goes in circles

    Trying to download whatsapp, errorcomes up , id not used before, review, after reviewed says sign in then comes up review again and so on

    You must close:
    - iTunes
    - Simulator
    - Xcode
    - Application Loader
    ...and...run Activity Monitor, locate and kill 'iTunes Helper', then try installing again.

  • Hope I'm in the right place.  First time user.  Not tech savvy.  Just upgraded to OSX Mavericks.  Box keeps asking me to enter my iCloud password.  I keep entering my password but box keeps popping back up asking for password?!  I selected cancel but what

    Hope I'm in the right place.  First time user.  Not tech savvy.  Just upgraded to OSX Mavericks.  Box keeps asking me to enter my iCloud password.  I keep entering my password but box keeps popping back up asking for password?!  I selected cancel but what should I do next time it asks for my iCloud password?  Is my iCloud working?  How do I retrieve my password?
    Thanks

    In the iCloud pane of System Preferences, uncheck the box marked Mail and check it again.

  • How to change password for a user in WLS 7.0 embedded ldap in code?

    I asked the similar question before but don't have an answer yet.
    I need to change password for a user in my Java code. Any help will be
    appreciated.
    Here is my stack trace:
    c:\Test>java -classpath . testEmbeddedLdap
    attribute: uid
    attribute: description
    attribute: objectclass
    attribute: wlsMemberOf
    attribute: sn
    attribute: cn
    javax.naming.NoPermissionException: [LDAP: error code 50 - Insufficient
    Access Rights]; remaining name
    'uid=myRegularUser,ou=people,ou=myrealm,dc=mydomain'
    at com.sun.jndi.ldap.LdapCtx.mapErrorCode(LdapCtx.java:2872)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2810)
    at com.sun.jndi.ldap.LdapCtx.processReturnCode(LdapCtx.java:2616)
    at com.sun.jndi.ldap.LdapCtx.c_modifyAttributes(LdapCtx.java:1374)
    at
    com.sun.jndi.toolkit.ctx.ComponentDirContext.p_modifyAttributes(ComponentDir
    Context.java:255)
    at
    com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(Partial
    CompositeDirContext.java:172)
    at
    com.sun.jndi.toolkit.ctx.PartialCompositeDirContext.modifyAttributes(Partial
    CompositeDirContext.java:161)
    at
    javax.naming.directory.InitialDirContext.modifyAttributes(InitialDirContext.
    java:146)
    at testEmbeddedLdap.main(testEmbeddedLdap.java:30)
    Here is my testing code:
    <PRE>
    import java.util.*;
    import javax.naming.*;
    import javax.naming.directory.*;
    public class testEmbeddedLdap {
    public static void main(String[] argv) {
    Hashtable env = new Hashtable(11);
    env.put(Context.INITIAL_CONTEXT_FACTORY,
    "com.sun.jndi.ldap.LdapCtxFactory");
    env.put(Context.PROVIDER_URL, "ldap://localhost:7001");
    env.put(Context.SECURITY_AUTHENTICATION, "simple");
    env.put(Context.SECURITY_PRINCIPAL, "uid=myAdministrator, ou=people,
    ou=myrealm, dc=mydomain");
    env.put(Context.SECURITY_CREDENTIALS, "myAdministrator");
    try {
    DirContext ctx = new InitialDirContext(env);
    String
    sUser="uid=myRegularUser,ou=people,ou=myrealm,dc=mydomain";
    String sOldPassword="myRegularUser";
    String sNewPassword="newpassword";
    for (NamingEnumeration ae = ctx.getAttributes(sUser).getAll();
    ae.hasMore(); ) {
    Attribute attr = (Attribute)ae.next();
    System.out.println("attribute: " + attr.getID());
    ModificationItem[] mods = new ModificationItem[2];
    Attribute mod0 = new BasicAttribute("userpassword",
    sOldPassword);
    mods[0] = new ModificationItem(DirContext.REMOVE_ATTRIBUTE,
    mod0);
    Attribute mod1 = new BasicAttribute("userpassword",
    sNewPassword);
    mods[1] = new ModificationItem(DirContext.ADD_ATTRIBUTE, mod1);
    ctx.modifyAttributes(sUser, mods);
    ctx.close();
    } catch (NamingException e) {
    e.printStackTrace();
    </PRE>
    "Neil Smithline" <[email protected]> wrote in message
    news:[email protected]...
    Two things. First, I'm not exactly sure what password you are trying to
    change. The LDAP server's password or a user's password in the LDAP
    server. Second, could you please post a stack trace.
    Thanks - Neil
    K Wong wrote:
    I am using (javax.naming.directory.DirContext.modifyAttributes) to
    change
    password to our development Weblogic 7.0 embedded LDAP.
    I login as the system administrator (a user in the administratorsgroup),
    but always gets the javax.naming.NoPermissionException - InsufficientAccess
    Rights.
    What user should I use? Any help will be appreciated.

    Hai,
    This condition based execution requires - javascript coding.
    In miscelleaneous tools bar, you have an option of SCRIPT_ITEM writer tool, drag the tool into your WAD layout, and select the properties , choose the editor option and paste your coding. that's it.
    Alternate option :
    in your web application design layout , you will fine XHTML coding editor , there you need to write coding and execute the same.
    Hope this will help to you.
    Assign Points if its really useful.
    Cheers !!!
    Bye
    Regards,
    Giri

  • Obiee 11g How to let user change password

    obiee 11g How to let user change password ?
    i not mean use weblogic console。 normal user how to change password。

    With 11g, OBIEE essentially uses the 10g notion of external authentication.
    By default, this is done by the WLS (Weblogic) LDAP identity store, but it may be done by another supported Authenticator either within WLS, or in the OBIS meta data (i.e. Custom Authenticator or LDAP). As such, OBIEE no longer has any control over user passwords; this is why the steps referenced in note 1102353.1 do not apply to OBIEE 11g, but only to internal/repository-defined users in OBIEE 10g.
    So, as with password maintenance in OBIEE 10g when an external authenticator is used, it is within that external authentication system that password is changed, not within OBIEE 11g. There is no option in OBIEE 11g to allow users to change passwords.
    There are two work-arounds with which you can change your password:
    1) From the Weblogic administration console/WLST.
    You need to give such user access into Weblogic console or access to browse through involved MBean hierarchy and other modify permissions. Changing the password using WLST instance is covered here:
    Ideally, the console and WLST approaches are used by Administration accounts to manage other users. But the console and WLST can be made to allow other users to change passwords (which will be more or less like carrying out an administrative task by users themselves)
    2) Using a programmatic approach.
    Here the application that intends to provide password change functionality to its users should implement this functionality on its own (GUI plus call to the relevant Weblogic API). Weblogic provides an MBean that the application can use to accomplish this. See here for more information.
    An enhancement request exists for this functionality. This is unpublished bug 11836170 - enable non admin users to change passwords in obiee 11g.

  • How to enable users change password in obiee 11g?

    Is there anyone know how to enable users change password in obiee 11g?
    And I have tried the method in obiee 10g, bu it didn't work.
    Any help would be appreciate.

    As per I understand your requirement,
    In your Dashboard create a Presentation variable which receives the value of year you select.
    Now in your analysis, select the year column along with all the measures you want (Actual, plan, Forecast, and what-if, etc).
    Create a filter on Year column and convert it into SQL. Put the condition as:
    "Year" BETWEEN @{Presentaion_Variable} - 1 AND @{Presentation_Variable}
    You will get the result for selected year and the previous year.
    Hope it helps..
    Regards,
    A.K.

  • How to change password for sidadm user on HP-UX

    Hello
    How to change password for <sidadm> user on HP-UX

    Hello Jan,
           1.      Log on to the operating system with the <sid>adm user.
           2.      Open a shell.
           3.      Enter the command passwd.
           4.      Enter the old and new passwords
    Rohit

  • How to change password for apple user id

    how to change password for apple user id

    If you can't remember your current password then you should be able to get it reset via this page : http://iforgot.apple.com
    If you know your current password then on your phone you can try tapping on your id in Settings > Store and you might be able to change it on your account's screen, or on your computer's iTunes you can log into your account via the Store > View Account menu option and change it on there

  • How to change password on time capsule

    How to change password on time capsule?

    The Time Capsule has two passwords.....a device password and a wireless network password.
    Which password are you referring to here?
    In order to provide detailed step by step instructions for how to change the password, we will need for you to also post back to let us know what type of operating system....Lion, Snow Leopard, Leopard, etc, that you are using on your Mac.

  • How to change password of sys user connected as sysdba?

    How to change password of sys user connected as sysdba?
    I have connected with user name sys as sysdba in oracle 9i with password oracle.
    I want to change the password . I typed password and pressed entered. It asks me to type old password, then new password and retype the new password. When I press enter it gives error message "ERROR:
    ORA-28008: invalid old password"
    Password unchanged.
    does anyone know about this...? how to change the password..?

    You may be using operating system authentication to log in as sys with sysdba privileges.
    By using password utility, you can change the password of sys user (which is in database) which is "change_on_install" when you create a database.
    You can change this password.

  • How to change password of OPERATIONS user in EBS 12.1.3

    hi
    i m using EBS 12.1.3 on RHLE 4
    i want to change password for OPERATIONS user for security reasons.
    i tried FNDPASS utility but it doesn't workout.
    kindly help
    thnx

    L5806633.log LOG as follows
    Application Object Library: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    module:
    Current system time is 15-JUN-2011 13:40:15
    This password is not managed by Oracle Applications so it can not be changed here.
    Concurrent request completed
    Current system time is 15-JUN-2011 13:40:15
    ---------------------------------------------------------------------------

  • How to change password for  XELSYSADM user in OIM?

    Hello Gurus and Experts!
    How to change password for XELSYSADM user in OIM?
    Your help is appreciated.

    Follow the undermentioned steps to change the password:
    1) Change the password from oim Design Client as usual.
    2) Open xlconfig.xml present in <XL_HOME>\xellerate\config folder.
    3) This step is optional and should only be used if you have a <XLPassword encrypted> tag in the <Scheduler> section. In the scheduler section, change the encrypted="true" to encrypted="false" and replace existing encrypted password with new clear text password, as shown below:
    <Scheduler>
    <XLUserName>xelsysadm</XLUserName>
    <XLPassword encrypted="false">NEW_PASSWORD</XLPassword>
    </Scheduler>
    4) Restart server.
    Now login with the new password.

  • First time user. How do I know the person to whom I sent my files saw them? Only my name/email is in

    First time user. How do I know the person to whom I sent my files saw them? Only my name/email is in the Reply.

    Are you using Workspaces or another Adobe product/service?  How are you sending the files?

  • Dear support @Apple,  I have tried to log in App Store with my Apple ID 3 times but never possible.  I have tried to change password 2 times. It was successful.But soon after change of my password, I could not log in App store.  It says always incorrect u

    Dear support @Apple,
    I have tried to log in App Store with my Apple ID 3 times but never possible.
    I have tried to change password 2 times.
    It was successful.But soon after change of my password, I could not log in App store.
    It says always incorrect user name or password. But I input correct ! Because just I successfully changed my password through secret question.
    Third time when I tried to change password, the page did not open!
    So I checked my connection by netstat , and I trace the IP address ; 17.154.66.17 this is apple IP, but when I trace , it did not show the route. I will copy
    Traceroute has started…
    traceroute to 17.154.66.17 (17.154.66.17), 64 hops max, 72 byte packets
    1  220.224.141.129 (220.224.141.129)  490.517 ms  64.527 ms  94.524 ms
    2  115.255.239.97 (115.255.239.97)  65.157 ms  89.128 ms  89.806 ms
    3  124.124.251.241 (124.124.251.241)  104.972 ms  79.051 ms  96.948 ms
    4  * * *
    5  62.216.147.137 (62.216.147.137)  102.266 ms  85.581 ms  88.352 ms
    6  xe-0-0-0.0.pjr04.ldn001.flagtel.com (85.95.25.186)  221.939 ms  225.223 ms  236.605 ms
    7  xe-11-0-0.edge5.london1.level3.net (212.187.138.53)  231.629 ms  232.045 ms  233.673 ms
    8  ae-52-52.csw2.london1.level3.net (4.69.139.120)  373.798 ms  390.412 ms  383.277 ms
    9  ae-57-222.ebr2.london1.level3.net (4.69.153.133)  382.653 ms  382.558 ms  376.740 ms
    10  ae-43-43.ebr1.newyork1.level3.net (4.69.137.74)  405.088 ms  377.679 ms  386.527 ms
    11  ae-91-91.csw4.newyork1.level3.net (4.69.134.78)  378.499 ms  389.733 ms  396.375 ms
    12  ae-92-92.ebr2.newyork1.level3.net (4.69.148.45)  391.706 ms  389.605 ms
        ae-82-82.ebr2.newyork1.level3.net (4.69.148.41)  381.615 ms
    13  4.69.135.185 (4.69.135.185)  380.183 ms  414.398 ms  387.054 ms
    14  ae-91-91.csw4.sanjose1.level3.net (4.69.153.14)  384.980 ms  381.375 ms  386.453 ms
    15  ae-4-90.edge2.sanjose3.level3.net (4.69.152.209)  377.304 ms  365.457 ms  373.281 ms
    16  * * *
    17  * * *
    18  * * *
    19  * * *
    20  * * *
    21  * * *
    22  * * *
    23  * * *
    24  * * *
    25  * * *
    26  * * *
    27  * * *
    28  * * *
    29  * * *
    30  * * *
    31  * * *
    32  * * *
    33  * * *
    34  * * *
    35  * * *
    36  * * *
    37  * * *
    38  * * *
    39  * * *
    40  * * *
    41  * * *
    42  * * *
    43  * * *
    44  * * *
    45  * * *
    46  * * *
    47  * * *
    48  * * *
    49  * * *
    50  * * *
    51  * * *
    52  * * *
    53  * * *
    54  * * *
    55  * * *
    56  * * *
    57  * * *
    58  * * *
    59  * * *
    60  * * *
    61  * * *
    62  * * *
    63  * * *
    64  * * *
    What it means??
    Please help !!
    To post this question, I tried thierd time to change password, and before I tried to log in to App store, I logged in this community, and I could !
    Then I could finally log in App store also.
    But still I feel something is wrong with my connection.
    Why the trace route does not show to the apple site ?

    This is a user to user forum. Apple is not here. Apple does not answer questions here.
    iTunes Support -
    http://www.apple.com/support/itunes/
    Mac App Store Support -
    http://www.apple.com/support/mac/app-store/

Maybe you are looking for

  • Adobe Air 2.5 and AIR Debug Launcher (ADL) from AIR 1.5.3 SDK

    I am having some issues with the differences between running my Air Desktop application with the ADL from within my IDE and actually running it as an packaged air application that is installed. Everything functions as it should in the IDE when run wi

  • Message, this document too old can't be opened.  To open it , save it with Pages 09

    Keep getting the message, this document too old can't be opened, save it with Pages '09 first?  I recently purchased the new Pages, yellow Icon.  My old Pages was '08.  My new Pages doesn't say what it is except the version 5.0.1. Where do I get vers

  • Help!!! Flash CS3 and CS4 wont save .gifs

    Ok, so im trying to save my project as a .gif and it just wont save it right, it marks as if it has already been saved, but when i open the .gif it just displays the first frame.......any help? Am i doing something wrong???? the actual file that im s

  • IKEv2 in MacOS 10.10 Yosemite

    According to this official document (slide 89) http://devstreaming.apple.com/videos/wwdc/2014/702xxvsjwkmhw2e/702/702_managing_ apple_devices.pdf Mac OS 10.10 Yosemite is capable of using IKEv2 connections. I have a working .mobileconfig file, that w

  • Java-administrator password keeps getting locked

    Hi, We have a portal 7.3 in which the Java-administrator password keeps getting locked. I can't see anything in the log traces in NWA. The only thing I've found is in security_audit logfile which doesn't really say much: #2.0 #2014 07 17 05:47:03:913