DBA Data[Home] [Help]

APPS.FND_OID_BULKLOAD dependencies on FND_USER_PKG

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

60: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source, 'user count for ' || l_user_name || ' = ' || l_user_count);
61: end if;
62:
63: if (l_user_count = 0) then
64: fnd_user_pkg.CreateUser(x_user_name => l_user_name,
65: x_owner => 'CUST',
66: x_unencrypted_password => fnd_web_sec.EXTERNAL_PWD,
67: x_description => l_description,
68: x_fax => l_fax,

Line 71: x_change_source => fnd_user_pkg.change_source_oid);

67: x_description => l_description,
68: x_fax => l_fax,
69: x_email_address => l_email_address,
70: x_user_guid => l_user_guid,
71: x_change_source => fnd_user_pkg.change_source_oid);
72:
73: /* fnd_oid_util.send_subscription_add_to_OID(p_orcl_guid=>l_user_guid); */
74:
75: fnd_oid_subscriptions.assign_default_resp(p_user_name => l_user_name);

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

94: if (fnd_log.LEVEL_STATEMENT >= fnd_log.G_CURRENT_RUNTIME_LEVEL) then
95: fnd_log.string(fnd_log.LEVEL_STATEMENT, l_module_source, 'user guid for ' || l_user_name || ' is null');
96: end if;
97: if (p_duplicate = G_DUP_TRUE) then
98: fnd_user_pkg.UpdateUser(x_user_name => l_user_name,
99: x_owner => 'CUST',
100: x_description => l_description,
101: x_fax => l_fax,
102: x_email_address => l_email_address,

Line 104: x_change_source => fnd_user_pkg.change_source_oid);

100: x_description => l_description,
101: x_fax => l_fax,
102: x_email_address => l_email_address,
103: x_user_guid => l_user_guid,
104: x_change_source => fnd_user_pkg.change_source_oid);
105: x_ret_status := G_LINKED;
106: else
107: x_ret_status := G_NOT_LINKED;
108: end if;