Chinaunix首页 | 论坛 | 博客
  • 博客访问: 678914
  • 博文数量: 41
  • 博客积分: 5070
  • 博客等级: 大校
  • 技术积分: 1265
  • 用 户 组: 普通用户
  • 注册时间: 2005-07-02 13:12
文章分类

全部博文(41)

文章存档

2013年(8)

2011年(2)

2009年(9)

2008年(22)

我的朋友

分类: Oracle

2009-03-27 15:23:56

在pub闲逛的时候发现有人问这个问题,metalink了一下,原来这个表示用户帐户被锁定了,一般的都是一些加密的字符,但是如果帐户被锁定,则显示为INVALID
帖子地址如下:
http://www.itpub.net/thread-1144702-1-1.html
Metalink上如此解释:
Subject: "Signon Password Failure Limit" Profile Option Does Not End Date User in FNDSCAUS Form
  : 332577.1 Type: PROBLEM
  Modified Date : 28-OCT-2008 Status: PUBLISHED

In this Document
  
  
  
  
  


This document is being delivered to you via Oracle Support's Rapid Visibility (RaV) process, and therefore has not been subject to an independent technical review.

Applies to:

Oracle Application Object Library - Version: 11.5.10
This problem can occur on any platform.
FNDSCAUS.fmb 11.5.78
$FND_TOP/patch/115/sql/AFSCJAVB.pls 115.66 or higher

Symptoms

Users can continue to attempt to login continually even if the "Signon Password Failure Limit" profile option is set. The end date for the user does not become end dated and there is no indication in the Users form (FNDSCAUS.fmb) that the user account is locked.

Run this SQL to verify if the user is locked:
SELECT DECODE (encrypted_user_password
             , 'INVALID', 'Account locked'
             , 'Account not locked')
  FROM fnd_user
WHERE user_name = '&username';
If the encrypted_user_password is invalid then the user the account is locked.

Steps to reproduce:
Create a user, assign a password, assign responsibilities.
Set the Signon Password Failure Limit profile option e.g. 5.
Login to applications as the user and follow the prompts for resetting the password.
Login again using an incorrect password and receive the following error message:
"Login failed.  Please verify your login information or contact the system administator."
Continue attempting to login using an incorrect password for 5 times.
The error still appears and the FNDSCAUS form shows that user is not end dated.

The user can still login using the correct password.

Changes

Applied ATG PF CU2 or .

Cause

The code has changed since ATG PF CU2 (patch 4125550.) The end date is no longer populated when a user account is locked. This caused a problem that the FND User form FNDSCAUS.fmb gives no indication of whether the user account is locked.

Development are going to update FNDSCAUS.fmb to show with a user account is locked or not. Reference:
"11.5.10 CU 2 - NO WAY OF KNOWING AN ACCOUNT IS LOCKED"

 

Solution

Please use either of these workarounds until a fix is released.

Workaround 1:
Manually run the following SQL to determine if the account is locked.
SELECT DECODE (encrypted_user_password
             , 'INVALID', 'Account locked'
             , 'Account not locked')
  FROM fnd_user
WHERE user_name = '&username';

Workaround 2:
Use the Form Personalization feature. This can be used to highlight that the account is locked based upon the user which is displayed in the form. In this case, please perform the following steps:

1. Open the Users form
2. Menu Help -> Diagnostics -> Custom Code -> Personalize
3. Create 2 rules:

a) Rule 1:
Seq 10
Desciption : Default
Level : Function

Condition :
Trigger Event : WHEN-NEW-RECORD-INSTANCE
Trigger Object : User

Actions
Seq 10
Type : Property

Object Type : Item
Target Object USER.USER_NAME
Property Name : PROMPT_TEXT
Value : User Name

b) Rule 2:
Seq 20
Desciption : Locked account
Level : Function

Condition :
Trigger Event : WHEN-NEW-RECORD-INSTANCE
Trigger Object : User
Condition : :USER.ENCRYPTED_FOUNDATION_PASSWORD = 'INVALID'

Actions
Seq 10
Type : Property

Object Type : Item
Target Object USER.USER_NAME
Property Name : PROMPT_TEXT
Value : User Name (locked)

The second rule will ensure that the form displays 'User Name (locked)' if you query a user which is locked. All other users will have the default 'User Name' prompt.


虽然说得是另外一个问题,但是这里提到了这个字段,保存下来,省得忘记了,老了.......

阅读(3761) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~