DBA Data[Home] [Help]

APPS.HR_USER_ACCT_INTERNAL dependencies on FND_USER_PKG

Line 81: -- | NOTE: The fnd api fnd_user_pkg.create_user that this api will be calling |

77: --
78: --
79: -- ----------------------------------------------------------------------------
80: -- |-------------------------- < create_fnd_user > ---------------------------|
81: -- | NOTE: The fnd api fnd_user_pkg.create_user that this api will be calling |
82: -- | does not have code to handle AK securing attributes. Thus, this |
83: -- | api will not do any inserts into ak_web_user_sec_attr_values table.|
84: -- | So, this api does not do everything that the FND Create User form |
85: -- | does. |

Line 91: -- p_password_date that could be passed to fnd_user_pkg.CreateUserId

87: -- process is not supposed to issue any savepoint or rollback. |
88: -- ----------------------------------------------------------------------------
89: --
90: -- Fix 2288014. Modified procedure create_fnd_user adding parameter
91: -- p_password_date that could be passed to fnd_user_pkg.CreateUserId
92: PROCEDURE create_fnd_user
93: (p_hire_date in date default null
94: ,p_user_name in varchar2
95: ,p_password in out nocopy varchar2

Line 299: hr_utility.set_location (l_proc || ' before fnd_user_pkg.CreateUser', 30);

295: END IF;
296: --
297: -- Now, we're ready to call fnd api to create a user name.
298: --
299: hr_utility.set_location (l_proc || ' before fnd_user_pkg.CreateUser', 30);
300: --
301: -- Fix 2288014 Start
302:
303: BEGIN

Line 304: -- Using fnd_user_pkg.CreateUserId is useful as we do not have to write another select

300: --
301: -- Fix 2288014 Start
302:
303: BEGIN
304: -- Using fnd_user_pkg.CreateUserId is useful as we do not have to write another select
305: -- query to retrieve user_id based on user_name.
306:
307: p_user_id := fnd_user_pkg.CreateUserId (
308: x_user_name => p_user_name,

Line 307: p_user_id := fnd_user_pkg.CreateUserId (

303: BEGIN
304: -- Using fnd_user_pkg.CreateUserId is useful as we do not have to write another select
305: -- query to retrieve user_id based on user_name.
306:
307: p_user_id := fnd_user_pkg.CreateUserId (
308: x_user_name => p_user_name,
309: x_owner => '',
310: x_unencrypted_password => l_password,
311: x_start_date => l_fnd_user_start_date,

Line 2498: hr_utility.set_location (l_proc || ' before fnd_user_pkg.UpdateUser', 30);

2494: END IF;
2495: --
2496: -- Now, we're ready to call fnd api to update a user account.
2497: --
2498: hr_utility.set_location (l_proc || ' before fnd_user_pkg.UpdateUser', 30);
2499: --
2500: -- Fix 2288014 Start
2501:
2502: select user_name into l_user_name from fnd_user

Line 2506: fnd_user_pkg.UpdateUser (

2502: select user_name into l_user_name from fnd_user
2503: where user_id = p_user_id;
2504:
2505:
2506: fnd_user_pkg.UpdateUser (
2507: x_user_name => l_user_name,
2508: x_owner => '',
2509: x_unencrypted_password =>l_new_password,
2510: x_description => l_description,