DBA Data[Home] [Help]

APPS.UMX_REGISTER_USER_PVT dependencies on FND_USER

Line 115: -- This API is a wrapper for fnd_user_pkg.userExists that

111: --
112: -- Function
113: -- userExists
114: -- Description
115: -- This API is a wrapper for fnd_user_pkg.userExists that
116: -- will return 'Y' if username is being used and
117: -- 'N' if username is not being used.
118: -- IN
119: -- p_user_name - User name

Line 123: function userExists (p_user_name in fnd_user.user_name%type) return varchar2;

119: -- p_user_name - User name
120: -- OUT
121: -- 'Y' - User name is being used.
122: -- 'N' - User name is not being used.
123: function userExists (p_user_name in fnd_user.user_name%type) return varchar2;
124:
125: --
126: -- Procedure
127: -- TestUserName

Line 129: -- This API is a wrapper to fnd_user_pkg.TestUserName.

125: --
126: -- Procedure
127: -- TestUserName
128: -- Description
129: -- This API is a wrapper to fnd_user_pkg.TestUserName.
130: -- "This api test whether a username exists in FND and/or in OID."
131: -- IN
132: -- p_user_name - User name to be tested.
133: -- OUT

Line 134: -- x_return_status - The following statuses are defined in fnd_user_pkg:

130: -- "This api test whether a username exists in FND and/or in OID."
131: -- IN
132: -- p_user_name - User name to be tested.
133: -- OUT
134: -- x_return_status - The following statuses are defined in fnd_user_pkg:
135: -- USER_OK_CREATE : User does not exist in either FND or OID
136: -- USER_INVALID_NAME : User name is not valid
137: -- USER_EXISTS_IN_FND : User exists in FND
138: -- USER_SYNCHED : User exists in OID and next time when this user gets created

Line 147: Procedure TestUserName (p_user_name in fnd_user.user_name%type,

143: -- x_message_name - The message name of the message in the FND message stack that
144: -- contents the detail message.
145: -- x_message_text - The detail message in the FND message stack.
146: ----------------------------------------------------------------------------
147: Procedure TestUserName (p_user_name in fnd_user.user_name%type,
148: x_return_status out nocopy pls_integer,
149: x_message_app_name out nocopy fnd_application.application_short_name%type,
150: x_message_name out nocopy fnd_new_messages.message_name%type,
151: x_message_text out nocopy fnd_new_messages.message_text%type);