User not getting Expired.

Hi All.
I am new to oracle and facing some issues, which needs to be solved soon. Please guide.
I have created a profile on my DB -
CREATE PROFILE Test_Profile_1 LIMIT
PASSWORD_LIFE_TIME 3
PASSWORD_GRACE_TIME 2;
And i am setting this profile to some of the users.
The users were created very long back in 2008 -09.
I want their password to be expired in 3 days and then get them into grace period so that they can change their password. (However i can expire their password at one go - but this is not the requirement).
I executed the below query after creating the profile -
ALTER USER ABAKLAN PROFILE TESTPROFILE_1;
ALTER USER AGARGSA PROFILE TESTPROFILE_1;
ALTER USER AJAHARA PROFILE TESTPROFILE_1;
To verify that my profile has set correctly i used :
select username, account_status , profile, expiry_date from dba_users;
Now what is happening the expiry date has not been set for the above users .
USERNAME ACCOUNT_STATUS PROFILE EXPIRY_DATE
ABAKLAN OPEN TESTPROFILE_1 25-JUL-08
AGARGSA OPEN TESTPROFILE_1 14-FEB-09
AJAHARA OPEN TESTPROFILE_1 16-OCT-09
I want them expired 3 days after i set the profile.
Please tell me where i am wrong in creating the profile. I want old users to get expire after 3 days. In this case expiry date is not changing.

I don't use Toad , but I would think it world work the same way. Sqlplus works as expected:
SQL> select limit, resource_name, p.profile, expiry_date
  2  from dba_users u, dba_profiles p
  3  where u.username = 'TEST' and p.profile = u.profile
  4  and resource_name in ('PASSWORD_LIFE_TIME','PASSWORD_GRACE_TIME');
LIMIT                                    RESOURCE_NAME
PROFILE                        EXPIRY_DA
1                                        PASSWORD_LIFE_TIME
TEST_PROFILE_1                 25-DEC-11 <-- this account's password was set a couple days ago
2                                        PASSWORD_GRACE_TIME
TEST_PROFILE_1                 25-DEC-11
SQL> conn test/test
ERROR:
ORA-28002: the password will expire within 2 daysIs it possible that the account has already passed the grace period?
Note what happens to the expiration date for TEST when I reset the password.
SQL> password
Changing password for TEST
Old password:
New password:
Retype new password:
Password changed
SQL> conn test/test
Connected.
SQL>
SQL>
SQL> conn / as sysdba
Connected.
SQL> select limit, resource_name, p.profile, expiry_date
from dba_users u, dba_profiles p
where u.username = 'TEST' and p.profile = u.profile
and resource_name in ('PASSWORD_LIFE_TIME','PASSWORD_GRACE_TIME');
  2    3    4 
LIMIT                                    RESOURCE_NAME
PROFILE                        EXPIRY_DA
1                                        PASSWORD_LIFE_TIME
TEST_PROFILE_1                 24-DEC-11
2                                        PASSWORD_GRACE_TIME
TEST_PROFILE_1                 24-DEC-11

Similar Messages

  • Client Session Not getting expired in OBI EE 10.1.3.4.1

    Hi All,
    I haave placed the below tag in the instanceconfig.xml file, but the client session is not getting expired.
    Can you please help me on the same.
    Our test environment OBI is enabled with the Site minder SSO.
    <ClientSessionExpireMinutes> 60</ClientSessionExpireMinutes>
    Thanks in Advance
    Siva

    Siva,
    There can be many factors for this: 'ClientSessionExpireMinutes'
    Defines the length of idle time that can pass before Oracle BI Presentation Server removes the user's client (browser) session information from its memory. This session includes user-specific state information such as request cache - dashboard page state - subject area information -connection information - and so on.
    Make sure while testing you are not doing anything on OBIEE browser window i.e. its idle
    Also, try to increase the minutes to say 240 and check how much time it takes ...??
    This shud solve..as this is very common problem with such tags..its not 100% guranteed !!

  • Wireless 2504,user not getting dhcp ip address

    Hi i have configured wlc 2504 .in that i have configured two interfaces.one is guest, 2nd is internal user,
    the pblm when user try to connect with that contain ssid user not getting ip address,
    i have connected only one link between core to wlc on port 1.for guest interface i used port 4.but no physical link.
    Please help this

    There are multiple ways how the clients can get their IP-address in a WLC deployment.
    From the WLC-FAQ:
    How does DHCP work with the WLC?
    A. The WLC is designed to act as a DHCP relay agent to the external DHCP server and acts like a DHCP server to the client. This is the sequence of events that occurs:
    Generally, WLAN is tied to an interface which is configured with a DHCP server.
    When the WLC receives a DHCP request from the client on a WLAN, it relays the request to the DHCP server with its management IP address.
    The WLC shows its Virtual IP address, which must be a non-routable address, usually configured as 1.1.1.1, as the DHCP server to the client.
    The WLC forwards the DHCP reply from the DHCP server to the wireless client with its Virtual IP address.Note: You can also configure the WLC to act as a DHCP server. For more information on how to configure a WLC as a DHCP server, refer to the Configuring DHCP Scopes section of the document Cisco Wireless LAN Controller Configuration Guide Release 5.1.
    If you want more in-depth information you should read "DHCP with the WLC":
    http://www.cisco.com/en/US/partner/products/ps6366/products_tech_note09186a0080af5d13.shtml
    Don't stop after you've improved your network! Improve the world by lending money to the working poor:
    http://www.kiva.org/invitedby/karsteni

  • Custom Email Alert Template Issue - Users not getting customized emails

    I have recently customized the XML alerts template (AlertTemplates.xml) for our site collection in SharePoint 2010 to exclude specific fields in the email when users who have subscribed to a list using the "Alert Me" feature.  I have renamed
    the custom alerts XML file and loaded the custom template in the following directory (%ProgramFiles%\Common Files\Microsoft Shared\Web server extensions\14\TEMPLATE\XML) and restarted IIS.  Once users subscribe to the alerts using the list using the "alert
    me" function they received the customized email as intended.  
    We needed to auto-subscribe users to the email alerts so what I did was used a powershell script to add users to the alert subscriptions using the script shown in below:
    Import-Csv D:\Temp\filename.csv | ForEach-Object{
    $webUrl=$_.WebUrl
    $listTitle=$_.List
    $alertTitle=$_.AlertTitle
    $subscribedUser=$_.SubscribedUser
    $alertType=$_.AlertType
    $deliveryChannel=$_.DeliveryChannel
    $eventType=$_.EventType
    $frequency=$_.Frequency
    $oldAlertID=$_.ID
    $web=Get-SPWeb $webUrl
    $testAlert = $web.Alerts | WHERE { $_.ID -eq $oldAlertID }
    IF ($testAlert) {
    $web.Alerts.Delete([GUID]$oldAlertID)
    Write-Host Old alert $oldAlertID deleted. -Foregroundcolor Cyan
    $list=$web.Lists.TryGetList($listTitle)
    $user = $web.EnsureUser($subscribedUser)
    $newAlert = $user.Alerts.Add()
    $newAlert.Title = $alertTitle
    $newAlert.AlertType=[Microsoft.SharePoint.SPAlertType]::$alertType
    $newAlert.List = $list
    $newAlert.DeliveryChannels = [Microsoft.SharePoint.SPAlertDeliveryChannels]::$deliveryChannel
    $newAlert.EventType = [Microsoft.SharePoint.SPEventType]::$eventType
    $newAlert.AlertFrequency = [Microsoft.SharePoint.SPAlertFrequency]::$frequency
    if($frequency -ne "Immediate"){
    $AlertTime=$_.AlertTime
    $newAlert.AlertTime=$AlertTime
    $newAlert.Update()
    Write-Host Created $newAlert.Title for $subscribedUser . -Foregroundcolor Cyan
    } ELSE {
    Write-Host Alert $alertTitle for $subscribedUser already done. Moving on. -Foregroundcolor Magenta
    When I ran the script and added the users and restarted the service, all users who were auto-subscribed via this method would get the email without the customizations that were done in the custom template.
     All users who manually subscribed to the list using the "Alert Me" function would get the customized email.  
    Does anyone know why users who manually subscribe would get the custom email alert and why users who were auto-subscribed using the powershell script do not get the custom email alert?

    Hi,
    To deploy custom alert template file, we would load changes into SharePoint and restart SharePoint 2010 Timer Service from Windows Service. If you create your own AlertTemplate in the custom_alerttemplates.xml, you will need to set the set the SPList.AlertTemplate
    property of the list. Then delete and re-subscribe to the alerts for the list.
    Please refer to:
    http://blog.zebsadiq.com/post/SharePoint-2010-custom-alert-template.aspx
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • User not getting disabled

    A particular user is not getting disabled. This is happening when it tries to disable one of the provisioned resources.
    Logs:
    2012-09-29 23:39:23,100 ERROR QuartzWorkerThread-3 XELLERATE.SERVER - Class/Method: tcProcessUtilities/disableProcess encounter some problems: {1}
    2012-09-29 23:39:23,100 ERROR QuartzWorkerThread-3 XELLERATE.SERVER - Class/Method: tcOIU/disableObjectInstance Error :Unable to disable the object instance.
    2012-09-29 23:39:23,100 INFO QuartzWorkerThread-3 XELLERATE.DATABASE - DB read: select err_key, err_code, err_desc, err_rowver, err_remedy, err_count, err_last_occurance, err_action, err_help_url, err_severity from err where err_code='DOBJ.RESOURCE_NOTCONFIGURED_PROPERLY'
    2012-09-29 23:39:23,102 ERROR QuartzWorkerThread-3 XELLERATE.JAVACLIENT - Class/Method: tcTriggerUserProcesses/disableOrcs Error :Unable to disable the object instance.
    2012-09-29 23:39:23,102 INFO QuartzWorkerThread-3 XELLERATE.DATABASE - DB read: select err_key, err_code, err_desc, err_rowver, err_remedy, err_count, err_last_occurance, err_action, err_help_url, err_severity from err where err_code='DOBJ.RESOURCE_NOTCONFIGURED_PROPERLY'
    Please let me know what might be the problem. Thanks.

    Hi Gyanprakash,
    Thanks for your response.
    1. Disable triggers are defined in that object and multiple instances enabled for that disable trigger task.
    2. Object is still in provisioned state not disabled
    3. Two of its tasks in that process instance are manually completed. Some prob has occured during completion of that task and they have manually completed it. So is that same problem hindering the disable flow also?

  • One user not getting Workflow Notifications Mail

    Hi
    We are using Oracle11i (11.5.10.2) on windows 2000 server.
    One of our user complaining that he is not getting any workflow notification mail to his maild id.
    How can we fix and troubleshoot this issue?
    Thanks
    OH

    Hi,
    Is the issue with this specific user?
    Can you find any errors in the Workflow log file?
    Please see if any of these documents is applicable.
    Note: 743567.1 - Email Notifications are not Sent, and Mailer Log File Shows Error "Replyto Must Be a Valid Email Address"
    Note: 423405.1 - Not Receiving Workflow Email Notifications
    Regards,
    Hussein

  • Guest users not getting IP address

    I am setting up Cisco wireless along with ISE 1.3 for guest wireless.  The client is going to use the self-registration portal for guest wireless users.  I followed this Cisco doc to configure the self-registration portal:
    http://www.cisco.com/c/en/us/support/docs/security/identity-services-engine/118742-configure-ise-00.html
    I tested this in my home lab and everything works fine.  However, at the client users are not getting IP addresses from the DHCP server.  This is the same DHCP server that is used for corporate wireless and if you connect that SSID, you get an IP address.  I have looked what I configured at home and the client and everything looks the same.  In the back of my mind, I feel something is missing, but I can't figure out what it is.  
    Edit: Not sure if this makes a difference or not, but they are using a Nexus 5K for their core switch and it hosts the SVI for this network.  
    Let me know what information you need and I will post it.
    TIA,
    Dan

    Hello,
    Some verifications below :
    Did you verify if DHCP Proxy is enabled in wlc's wlan interface ? Case DHCP proxy is disabled, did you verify if the ip helper address is enabled in Nexus SVI ?
    DHCP Scope is enabled in the DHCP Server or is enabled in the WLC ?
    Verify if Trunk in the switch is enabled correctly passing all VLANs to WLANs ?
    Verify if ACL to redirect configured in the WLC is allowing DHCP Server and DHCP Client to client receive IP Address and ports 8443 to Cisco ISE and DNS to resolve some address and get access to ISE Portal ?
    The scenario is Local Switching or Central Switching ?
    Regards

  • Multiple Logins - users not getting disconnected

    Since applying support package stack 7 to our ECC6 EHP4 system we have had a number of users report getting the message about already being logged in when logging into the system.
    We have asked to users to chose
    Continue with this login and end any other logins in system""
    Problem is this has no effect.  Our undesirable work around has been to ask the user to log out then manually log the users out using SM04.
    Any suggestions would be most appreciated.

    Hi,
    Did the users have a clean logoff.
    The system is still holding connection even after  the user terminate his session, and that was the reason it says user already logged on.
    But the old connection do not long last, and even they eventually get closed automatically by system.
    If the users are getting disconnected automatically(connection drops) and when they are trying to connect if system shows that message, then it was problem with connection drops. You need to check the latency of network and any high latency will result in SAP terminal sessions automatic drops. In that case your network bandwidth need to be increased.
    Is this problem shown only in system that got SP upgraded in landscape?
    Regards.
    Edited by: Sita Rr Uppalapati on Dec 23, 2010 7:35 PM

  • Users not getting IP from QIP server

    Dear Friends,
    Need your advice on this issue.
    Users of our new site complained of not getting IP dynamically from DHCP server. Static IPs works fine.
    The LAN interface of the router is configured with helper IP address of QIP servers.
    On the router there exists a DHCP pool configuration, later we removed this config understanding the helper address will
    assign the ip address dynamically.
    QIP which serves as DHCP is confgured to assign the IPs, but the users complined of not getting IPs including IP phones.
    Kindly advice what could be possible chances of this issue.
    Thanks in advance
    rYs

    You cant have both the ip helper-address and a DHCP pool configured on the router. Basically what happens is the client DHCPDISCOVER will pick the first DHCP server that answers it and in this case its the the router. If you want to pass traffic all the way to the DHCP server, you need to disable the DHCP server on the router and leave only the ip helper-address configured so it can relay the broadcast to the defined DHCP server.
    It sounds like you have this current topology for your DHCP server that is working:
    Client       ------------>DHCPDISCOVER ---> Router(DHCP Server)
                   <------------DHCPOFFER
                   ------------>DHCPREQUEST
                   <------------DHCPACK
    You want to configure your QIP DHCP Server to respond to DHCPDISCOVER, you will need to remove the DHCP pool from the router and add "ip helper-address x.x.x.x" where x.x.x.x is your DHCP server ip.
    If that still does not work, you will need to check the configuration on your DHCP server to ensure its not mis-configured. QIP is not a cisco product but you should be able to view debugs on that application to identify if the DHCP server is sending an offer or dropping the request. Most likely your scopes are mis-configured on the server.

  • Captivate 7 - Some Users Not Getting 100% of Answers Correct with Question Remediation

    We are using Captivate 7 content to deliver courses via Adobe Connect 9.1.  We are experiencing an interesting issue with question remediation. When a user takes the quiz question and gets the answer wrong, the user is taken back to spot in the course where he/she can review the information.  Once the user is done reviewing the information, he/she is taken back to the question to answer it correctly.  The learner has infinite attempts to get the answer correct.  In theory, the user should always get 100% for the final test score.  We are noticing that some users (10%) actually don’t get 100% of the answers correct according to Adobe Connect transcript reports.
    Is there something we can look at to see what might be causing the incorrect score?  Is there a known issue?
    We publish Captivate 7 content as SWF/HTML 5 on Adobe Connect 9.1.

    Unfortunately, the discussion here led me to the resolution, but is not terribly valuable from a Captivate standpoint.  It turns out that we have a custom database script running on the Adobe Connect back end to correct people who have been left in an "In Progress" state even though they have a passing score and appear to have completed the course.  To avoid the script changing these records to pass, we bumped the passing score to 100%.
    Thanks for the help!

  • Initial User not getting populated

    Hello
    We have just upgraded from SAP 4.6 to ECC 6.0, there is a task to get Initial User details, in older version we were using binding workflow cont - 'workitem.workitemcreator' to task cont - 'Initialuser', In upgraded version the binding changed itself to workflow cont - 'Intialuser' to task cont - 'Intialuser', which does not populate the 'Intialuser' in task cont.
    If i change workflow cont to 'workitem.workitemcreator' or 'inituser' the task goes in error. What should I do??? to populate 'Initialuser' of task cont.
    Thanks
    Bhavna

    No, it's not a problem of an UI (portal).
    "We also wrote a script that would fetch all the details of the users from the FIM DB and the values are blank there too. so i'm guessing there's no problem with the portal." -
    I hope you know that it is highly not recommended to do any operations on DB directly?
    Ok, you say that you create user programmatically on FIM. Is it via PowerShell or another way? If attrbiutes are blank in Request - it seems that they are not passed to FIMService correctly. Maybe some special characters in those fields in source?
    If you found my post helpful, please give it a Helpful vote. If it answered your question, remember to mark it as an Answer.

  • Users Not getting Displayed in RPD

    Hi,
    i Have OBIEE 11.1.1.5.0 Installation
    I have created a new RPD and Uploaded on BIServer,but i am unable to see the users in Identity. but Application Roles are visible also the weblogic can access the Subject Area in Analytics..
    Please suggest a way to get users displayed in RPD
    Cheers
    Ankit

    did you set the online filter:
    http://obiee101.blogspot.com/2011/07/obiee11115-setting-log-level-in-online.html
    regards
    John
    http://obiee101.blogspot.com/
    http://obiee11g.com/

  • Assigning the role to user - not getting the page and tabs showing.

    I have a role with a page that contains 2 demo iviews.  They preview ok. but when I assign the role to user, it does not come up.  Could some one send me a help document for SP2?

    I got it.  Need to set Entry Point - Yes.

  • R3 to CRM - user not getting transferred

    Hi,
    Please give inputs for this error u2013 u201CUser not transferred from R3 to CRMu201D
    Even little guidance will help me.
    Regards,
    Arnab

    Hi,
    If i am able to under stand your scenerion then
    these point as check points,might help you.
    1.IN CRM check in transaction u201Csu01u201D if the person is a user
    2.In CRM check transaction u201Cbpu201D if the person exists as an employee
    3.In R/3 check transaction u201Cpa20u201D if the person exists and then the object ID (personnel number) =.........
    (If the person doesnu2019t exists contact by mail u201C Support Teamu201D so that person can load the user into R/3)
    4.In R/3 and transaction u201CPFALu201D fill in following:
    Enter details in field Object ID u2013 personnel no. (Look into t code u2013 pa30)
    Select Update radio button in Transfer mode tab.
    Message type is u2013 HRMD_ABA
    5.In R/3 and transaction u201CBD87u201D to send IDoc to CRM (alt wait one hour for automatic transfer). Find the actual IDoc and process. The IDoc is now sent to CRM and need to be processed there in the same way.
    Check  in application document posted Node -  it should show  - HRMD_A
    6.In CRM and transaction u201CBD87u201D
    Now check the Idoc ready to be transfered to application Node - HRMD_ABA
    It means itu2019s a success.
    Please check these points and revert back for any explanation.
    Regards

  • Wait activity not getting expired

    Hi All,
    I have included a "wait" activity in my BPEL process. It will wait for 30 min. The time has expired, even then it is waiting in the same state and the flow is not proceeding futher. Kindly help me in resolving this issue.

    Please recheck ur wait activity. Default time which comes in wait activity is one day.
    So please make sure that u have removed that 1 while specifying the wait time

Maybe you are looking for

  • Crystal Report generating data from incorrect data source

    In dealing with a recent post about an upgrade to Crystal XI R2 mixing badly with an old VS 2003 project ( Update to CR XI R2 and service pack 4 issues with VS 2003 ), I've been attempting a few things to get past the issues with missing parameters a

  • Is it possible to search for multiple folders with the same name and...

    Is it possible to search for multiple folders with the same name and then select them all and change the permissions on just those folders .i.e. Search for the budget folders in all client folders and lock them down to just the project managers. With

  • VBA code to connect Essbase from Excel

    Hi All, I need VBA code to connect & retrive the data from Essbase trough Excel sheet ....Please advise... Regards, Prabhas

  • Printing problems, can anyone help? i feel so lost

    I upgraded to tiger then the automatic software update took it up to 10.4.3 everything seemed fine til i tried to print on my trusty canon s330 printer...i just couldnt locate a driver for it so i clicked on any of the ones in the pop up in printer s

  • Short dump on zautoclear.

    Hi All,                I am getting error "CALL_FUNCTION_NOT_FOUND" while executing tcode zautoclear.Please help. Moderator message: obvious message, please try solving problems yourself first, search for information. Message was edited by: Thomas Zl