DBA Data[Home] [Help]

APPS.IRC_PARTY_API dependencies on FND_USER_PKG

Line 2798: l_user_id := fnd_user_pkg.CreateUserId (

2794: hr_utility.set_location(l_proc,20);
2795: --
2796: -- Create User and set person_id to employee_id
2797: --
2798: l_user_id := fnd_user_pkg.CreateUserId (
2799: x_user_name => p_user_name,
2800: x_owner => 'CUST',
2801: x_unencrypted_password => p_password,
2802: x_email_address => p_email,

Line 3262: fnd_user_pkg.UpdateUser (

3258: open csr_get_email(p_user_name);
3259: fetch csr_get_email into l_current_email_address;
3260: close csr_get_email;
3261: --
3262: fnd_user_pkg.UpdateUser (
3263: x_user_name => p_user_name,
3264: x_owner => p_owner,
3265: x_unencrypted_password => p_unencrypted_password,
3266: x_session_number => p_session_number,

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

3283: --
3284: l_new_user_name := upper(p_email_address);
3285: if p_user_name <> l_new_user_name
3286: and l_current_email_address = p_user_name then
3287: fnd_user_pkg.change_user_name(p_user_name,l_new_user_name);
3288: end if;
3289: end update_user;
3290: -- -------------------------------------------------------------------------
3291: -- |------------------------< self_register_user >-------------------------|

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

3732: --
3733: hr_utility.set_location(l_proc,150);
3734:
3735: for user_rec in existing_emails(l_person_id,l_party_id) loop
3736: fnd_user_pkg.disableUser(user_rec.user_name);
3737: end loop;
3738: --
3739: -- Get the Password Length from the profile
3740: --

Line 3785: l_user_id := fnd_user_pkg.CreateUserId (

3781: l_password:=l_password||mod(fnd_crypto.randomnumber,10);
3782:
3783: hr_utility.set_location(l_proc,160);
3784:
3785: l_user_id := fnd_user_pkg.CreateUserId (
3786: x_user_name => upper(p_current_email_address),
3787: x_owner => 'CUST',
3788: x_unencrypted_password => l_password,
3789: x_employee_id => l_person_id);

Line 3794: fnd_user_pkg.UpdateUser(

3790:
3791: else
3792: -- associate the previous employee record to the fnd user
3793: hr_utility.set_location(l_proc,165);
3794: fnd_user_pkg.UpdateUser(
3795: x_user_name => p_user_name,
3796: x_owner => 'CUST',
3797: x_employee_id => l_person_id);
3798: -- get the user ID for the given user name

Line 4244: fnd_user_pkg.UpdateUser

4240: );
4241: --
4242: hr_utility.set_location(l_proc, 50);
4243: --
4244: fnd_user_pkg.UpdateUser
4245: (x_user_name => p_user_name
4246: ,x_owner => 'CUST'
4247: ,x_employee_id => l_person_id);
4248: --

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

4620: p_email => p_email,
4621: p_allow_access => p_allow_access);
4622: hr_utility.set_location(' Entering: '||l_proc, 30);
4623: -- update the user password
4624: l_bool := fnd_user_pkg.setreencryptedpassword(username => p_user_name,
4625: reencpwd => p_password,
4626: newkey => 'LOADER');
4627: if NOT l_bool then
4628: raise PASSWORD_UPDATE_FAILED;

Line 4643: l_user_id := fnd_user_pkg.CreateUserId(

4639: -- note that we are passing in FND_WEB_SEC.EXTERNAL_PWD which is checked by
4640: -- ATG routine and treats this as an SSO user
4641: elsif l_num = 3 then
4642: hr_utility.set_location(l_proc, 15);
4643: l_user_id := fnd_user_pkg.CreateUserId(
4644: x_user_name => p_user_name
4645: ,x_owner => 'CUST'
4646: ,x_unencrypted_password => FND_WEB_SEC.EXTERNAL_PWD
4647: ,x_email_address => p_email

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

4820: p_user_name IN varchar2
4821: ) return NUMBER
4822: is
4823: begin
4824: return fnd_user_pkg.testusername(x_user_name=>p_user_name);
4825: end TestUserName;
4826: --
4827: -- -------------------------------------------------------------------------
4828: -- |------------------------< assign_responsibility >----------------------|

Line 5000: l_user_id := fnd_user_pkg.CreateUserId (

4996: hr_utility.set_location(l_proc,20);
4997: --
4998: -- Create User and set person_id to employee_id
4999: --
5000: l_user_id := fnd_user_pkg.CreateUserId (
5001: x_user_name => p_user_name,
5002: x_owner => 'CUST',
5003: x_unencrypted_password => p_password,
5004: x_email_address => p_email,