DBA Data[Home] [Help]

APPS.FND_OID_BULKLOAD dependencies on FND_USER_PKG

Line 69: fnd_user_pkg.CreateUser(x_user_name => l_user_name,

65: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source, 'user count for ' || l_user_name || ' = ' || l_user_count);
66: end if;
67:
68: if (l_user_count = 0) then
69: fnd_user_pkg.CreateUser(x_user_name => l_user_name,
70: x_owner => 'CUST',
71: x_unencrypted_password => fnd_web_sec.EXTERNAL_PWD,
72: x_description => l_description,
73: x_fax => l_fax,

Line 76: x_change_source => fnd_user_pkg.change_source_oid);

72: x_description => l_description,
73: x_fax => l_fax,
74: x_email_address => l_email_address,
75: x_user_guid => l_user_guid,
76: x_change_source => fnd_user_pkg.change_source_oid);
77:
78: /* Set the APPS_SSO_LOCAL_LOGIN to have consistency when creating a new FND
79: * user from OID */
80: select user_id into l_user_id from fnd_user where user_name = l_user_name;

Line 128: fnd_user_pkg.UpdateUser(x_user_name => l_user_name,

124:
125: -- Updating the user_guid if the duplicate option is explicitly passed.
126: -- APPS_SSO_LOCAL_LOGIN is not being set to SSO - consistent with the
127: -- APPS_SSO_LINK_SAME_NAMES flow
128: fnd_user_pkg.UpdateUser(x_user_name => l_user_name,
129: x_owner => 'CUST',
130: x_description => l_description,
131: x_fax => l_fax,
132: x_email_address => l_email_address,

Line 134: x_change_source => fnd_user_pkg.change_source_oid);

130: x_description => l_description,
131: x_fax => l_fax,
132: x_email_address => l_email_address,
133: x_user_guid => l_user_guid,
134: x_change_source => fnd_user_pkg.change_source_oid);
135: x_ret_status := G_LINKED;
136: else
137: x_ret_status := G_NOT_LINKED;
138: end if;