DBA Data[Home] [Help]

APPS.IRC_PARTY_API dependencies on FND_USER_PKG

Line 2915: l_user_id := fnd_user_pkg.CreateUserId (

2911: hr_utility.set_location(l_proc,20);
2912: --
2913: -- Create User and set person_id to employee_id
2914: --
2915: l_user_id := fnd_user_pkg.CreateUserId (
2916: x_user_name => p_user_name,
2917: x_owner => 'CUST',
2918: x_unencrypted_password => p_password,
2919: x_email_address => p_email,

Line 3385: fnd_user_pkg.UpdateUser (

3381: l_central_registration_url:=fnd_profile.value('APPS_CENTRAL_REGISTER_URL');
3382: --
3383: if l_central_registration_url is null then
3384: --
3385: fnd_user_pkg.UpdateUser (
3386: x_user_name => p_user_name,
3387: x_owner => p_owner,
3388: x_unencrypted_password => p_unencrypted_password,
3389: x_session_number => p_session_number,

Line 3412: fnd_user_pkg.change_user_name(p_user_name,l_new_user_name);

3408: --
3409: l_new_user_name := upper(p_email_address);
3410: if p_user_name <> l_new_user_name
3411: and l_current_email_address = p_user_name then
3412: fnd_user_pkg.change_user_name(p_user_name,l_new_user_name);
3413: end if;
3414: end update_user;
3415: -- -------------------------------------------------------------------------
3416: -- |------------------------< self_register_user >-------------------------|

Line 3939: fnd_user_pkg.disableUser(user_rec.user_name);

3935: --
3936: hr_utility.set_location(l_proc,150);
3937:
3938: for user_rec in existing_emails(l_person_id,l_party_id) loop
3939: fnd_user_pkg.disableUser(user_rec.user_name);
3940: end loop;
3941: --
3942: -- Get the Password Length from the profile
3943: --

Line 3997: l_user_id := fnd_user_pkg.CreateUserId (

3993: end loop;
3994:
3995: hr_utility.set_location(l_proc,160);
3996:
3997: l_user_id := fnd_user_pkg.CreateUserId (
3998: x_user_name => upper(p_current_email_address),
3999: x_owner => 'CUST',
4000: x_unencrypted_password => l_password,
4001: x_employee_id => l_person_id);

Line 4011: fnd_user_pkg.UpdateUserParty(

4007: fetch get_party_id into l_purge_party_id;
4008: close get_party_id;
4009: hr_utility.set_location(l_proc,166);
4010: --
4011: fnd_user_pkg.UpdateUserParty(
4012: x_user_name => p_user_name,
4013: x_owner => 'CUST',
4014: x_person_party_id => l_party_id);
4015: --

Line 4016: fnd_user_pkg.UpdateUser(

4012: x_user_name => p_user_name,
4013: x_owner => 'CUST',
4014: x_person_party_id => l_party_id);
4015: --
4016: fnd_user_pkg.UpdateUser(
4017: x_user_name => p_user_name,
4018: x_owner => 'CUST',
4019: x_employee_id => l_person_id);
4020: --

Line 4474: fnd_user_pkg.UpdateUser

4470: );
4471: --
4472: hr_utility.set_location(l_proc, 50);
4473: --
4474: fnd_user_pkg.UpdateUser
4475: (x_user_name => p_user_name
4476: ,x_owner => 'CUST'
4477: ,x_employee_id => l_person_id);
4478: --

Line 4854: l_bool := fnd_user_pkg.setreencryptedpassword(username => p_user_name,

4850: p_email => p_email,
4851: p_allow_access => p_allow_access);
4852: hr_utility.set_location(' Entering: '||l_proc, 30);
4853: -- update the user password
4854: l_bool := fnd_user_pkg.setreencryptedpassword(username => p_user_name,
4855: reencpwd => p_password,
4856: newkey => 'LOADER');
4857: if NOT l_bool then
4858: raise PASSWORD_UPDATE_FAILED;

Line 4873: l_user_id := fnd_user_pkg.CreateUserId(

4869: -- note that we are passing in FND_WEB_SEC.EXTERNAL_PWD which is checked by
4870: -- ATG routine and treats this as an SSO user
4871: elsif l_num = 3 then
4872: hr_utility.set_location(l_proc, 15);
4873: l_user_id := fnd_user_pkg.CreateUserId(
4874: x_user_name => p_user_name
4875: ,x_owner => 'CUST'
4876: ,x_unencrypted_password => FND_WEB_SEC.EXTERNAL_PWD
4877: ,x_email_address => p_email

Line 5054: return fnd_user_pkg.testusername(x_user_name=>p_user_name);

5050: p_user_name IN varchar2
5051: ) return NUMBER
5052: is
5053: begin
5054: return fnd_user_pkg.testusername(x_user_name=>p_user_name);
5055: end TestUserName;
5056: --
5057: -- -------------------------------------------------------------------------
5058: -- |------------------------< assign_responsibility >----------------------|

Line 5230: l_user_id := fnd_user_pkg.CreateUserId (

5226: hr_utility.set_location(l_proc,20);
5227: --
5228: -- Create User and set person_id to employee_id
5229: --
5230: l_user_id := fnd_user_pkg.CreateUserId (
5231: x_user_name => p_user_name,
5232: x_owner => 'CUST',
5233: x_unencrypted_password => null,
5234: x_email_address => p_email,

Line 5577: fnd_user_pkg.disableUser(user_rec.user_name);

5573: --
5574: hr_utility.set_location(l_proc,20);
5575: --
5576: for user_rec in get_user_name(p_source_party_id) loop
5577: fnd_user_pkg.disableUser(user_rec.user_name);
5578: end loop;
5579: --
5580: hr_utility.set_location(l_proc,30);
5581: --