DBA Data[Home] [Help]

APPS.FND_OID_SUBSCRIPTIONS dependencies on FND_USER_PKG

Line 59: || 'event is handled by fnd_user_pkg.user_change().');

55: end if;
56: if (p_event_type = wf_oid.IDENTITY_MODIFY) then
57: if (fnd_log.LEVEL_STATEMENT >= fnd_log.G_CURRENT_RUNTIME_LEVEL) then
58: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source, 'IDENTITY_MODIFY '
59: || 'event is handled by fnd_user_pkg.user_change().');
60: end if;
61: return;
62: end if;
63: --Check whether this guid already exists. Don't raise alerts because we receive echo

Line 126: -- Bug 5347086 - fnd_user_pkg does not check for UNKNOWN when creating the user. Doing it here

122: end if;
123: -- WF_ENTITY_MGR returns '*UNKNOWN*' string if the value was not found in attr_cache table
124: -- we should not populate the fnd_user table with this, for fax and description.
125:
126: -- Bug 5347086 - fnd_user_pkg does not check for UNKNOWN when creating the user. Doing it here
127: if (p_description in ('*UNKNOWN*','*NULL*')) then
128: l_description := null;
129: else
130: l_description := p_description;

Line 167: x_user_id := fnd_user_pkg.CreateUserId(

163: then
164: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source, 'End_date output: ' || l_end_date);
165: end if;
166:
167: x_user_id := fnd_user_pkg.CreateUserId(
168: x_user_name => p_user_name
169: , x_owner => p_owner
170: , x_unencrypted_password => fnd_web_sec.EXTERNAL_PWD -- passowrd will be set to EXTERNAL
171: , x_description => l_description

Line 177: , x_change_source => fnd_user_pkg.change_source_oid

173: , x_start_date => l_start_date
174: , x_end_date => l_end_date
175: , x_fax => l_fax
176: , x_user_guid => p_user_guid
177: , x_change_source => fnd_user_pkg.change_source_oid
178: );
179:
180: -- API to set user profile value;
181: l_found := fnd_profile.save(x_name => 'APPS_SSO_LOCAL_LOGIN'

Line 384: --THIS SUBSCRIPTION IS NOT USED! fnd_user_pkg.user_change SUBSCRIPTION IS USED INSTEAD.

380: if (fnd_log.LEVEL_PROCEDURE >= fnd_log.G_CURRENT_RUNTIME_LEVEL)
381: then
382: fnd_log.string(fnd_log.LEVEL_PROCEDURE, l_module_source, 'Begin');
383: end if;
384: --THIS SUBSCRIPTION IS NOT USED! fnd_user_pkg.user_change SUBSCRIPTION IS USED INSTEAD.
385: --Rada, 01/31/2005
386: l_orcl_guid := p_event.GetValueForParameter(
387: fnd_oid_util.G_ORCLGUID);
388: fnd_create_update(