FND User Exit references [message #183779] |
Sun, 23 July 2006 15:21 |
gjones30
Messages: 5 Registered: July 2006
|
Junior Member |
|
|
I was recently reviewing the Oracle Applications form used to create and manage application users (FNDSCAUS.fmb) to get an idea of the code method they use to encrypt the user password field whenever creating or changing the password. In the 'When-Validate-Item' trigger of the password field the following call is made to encrypt the password
User_Exit('FND PWD TYPE="USER" '||
'USERNAME=":USER.USER_NAME" '||
'PASSWORD=":USER.USER_PASSWORD" '||
'OUT_E_USER_PWD=":USER.ENCRYPTED_USER_PASSWORD" '||
'OUT_E_ORCL_PWD=":USER.ENCRYPTED_FOUNDATION_PASSWORD" '||
'DECRYPT="N"');
Anyone have any idea on how I can gain access or find the code that this user exit is calling? I am not familiar with the FND PWD reference. Thanks in advance.
|
|
|