DBA Data[Home] [Help]

APPS.FND_LDAP_USER dependencies on FND_USER

Line 150: ** Desc : This procedure unsubscribes the user in OID if there is no other FND user linked

146: -------------------------------------------------------------------------------
147: /*
148: ** Name : unlink_user
149: ** Type : Public, FND Internal
150: ** Desc : This procedure unsubscribes the user in OID if there is no other FND user linked
151: ** to the same OID user
152: ** If no user exists with the same name, it returns with G_FAILURE.
153: ** If application is not SSO enabled, it
154: ** simply returns G_SUCCESS without unlinking the user in OID

Line 168: procedure unlink_user(p_user_guid in fnd_user.user_guid%type,

164: ** FND_LDAP_WRAPPER.G_FAILURE if
165: ** - application is SSO enabled and user unlinking fails
166: ** Notes :
167: */
168: procedure unlink_user(p_user_guid in fnd_user.user_guid%type,
169: p_user_name in varchar2,
170: x_result out nocopy pls_integer);
171: --
172: -------------------------------------------------------------------------------

Line 194: ** fnd_user is now being rejected/released, *and* the OID user is

190: /*
191: ** Name : delete_user
192: ** Type : Public, FND Internal
193: ** Desc : If the OID user was created from the same instance where the
194: ** fnd_user is now being rejected/released, *and* the OID user is
195: ** still inactive, then we will delete it.If either of these
196: ** criteria is not fulfilled, we can't touch the OID user even if
197: ** we delete the pending FND_USER record.
198: ** Pre-Reqs :

Line 197: ** we delete the pending FND_USER record.

193: ** Desc : If the OID user was created from the same instance where the
194: ** fnd_user is now being rejected/released, *and* the OID user is
195: ** still inactive, then we will delete it.If either of these
196: ** criteria is not fulfilled, we can't touch the OID user even if
197: ** we delete the pending FND_USER record.
198: ** Pre-Reqs :
199: ** Parameters: p_user_name : user name to be deleted
200: ** p_result :
201: ** FND_LDAP_UTIL.G_SUCCESS if

Line 207: procedure delete_user(p_user_guid in fnd_user.user_guid%type,

203: ** FND_LDAP_UTIL.G_FAILURE if
204: ** - if user deletion fails
205: ** Notes :
206: */
207: procedure delete_user(p_user_guid in fnd_user.user_guid%type,
208: x_result out nocopy pls_integer);
209: --
210: -------------------------------------------------------------------------------
211: /*

Line 355: ** FND_SSO_USER_NOT_FOUND: FND_USER.USER_GUID is invalid or corrupted

351: ** FND_SSO_INV_AUTH_MODE: OiD SSL setup is incorrect
352: ** FND_SSO_SYSTEM_NOT_AVAIL: Cannot connect to OiD
353: ** FND-9914: Unexpected error connecting to OiD
354: ** FND_SSO_NOT_LINKED: the given user name has no SSO associated
355: ** FND_SSO_USER_NOT_FOUND: FND_USER.USER_GUID is invalid or corrupted
356: ** FND_APPL_LOGIN_FAILED: Invalid Passowrd or unmanaged error validing password.
357: ** FND_SSO_LOCKED: SSO Account is locked
358: **
359: **