DBA Data[Home] [Help]

APPS.IRC_PARTY_API dependencies on FND_WEB_SEC

Line 3152: l_password_check := fnd_web_sec.validate_password(username => p_user_name

3148: end if;
3149: --
3150: -- Validate the password
3151: --
3152: l_password_check := fnd_web_sec.validate_password(username => p_user_name
3153: ,password => p_password);
3154:
3155: if (l_password_check = 'N') then
3156: fnd_message.raise_error;

Line 3301: guestUserPwd := upper(FND_WEB_SEC.GET_GUEST_USERNAME_PWD());

3297: guestEncFndPwd fnd_user.encrypted_foundation_password%type;
3298: --
3299: begin
3300: --
3301: guestUserPwd := upper(FND_WEB_SEC.GET_GUEST_USERNAME_PWD());
3302: --
3303: delim := instr(guestUserPwd,'/');
3304: --
3305: if(delim = 0) then

Line 3312: if(fnd_web_sec.validate_login(guestUserName,guestUserPwdOnly) = 'N') then

3308: guestUserName := upper(substr(guestUserPwd,1,delim-1));
3309: guestUserPwdOnly := upper(substr(guestUserPwd,delim+1));
3310: end if;
3311: --
3312: if(fnd_web_sec.validate_login(guestUserName,guestUserPwdOnly) = 'N') then
3313: raise bad_guest_user;
3314: end if;
3315: --
3316: open get_pwd(guestUserName);

Line 4869: -- note that we are passing in FND_WEB_SEC.EXTERNAL_PWD which is checked by

4865: hr_utility.set_location(l_proc, 50);
4866: --
4867: -- this case happens when user is present in SSO and applied for a job through
4868: -- HA and for this we have to create a local user who points to SSO user
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(

Line 4876: ,x_unencrypted_password => FND_WEB_SEC.EXTERNAL_PWD

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
4878: ,x_user_guid => p_user_guid
4879: );
4880: hr_utility.set_location(l_proc, 25);

Line 5239: l_user_name := fnd_web_sec.set_reencrypted_password(username => p_user_name

5235: x_employee_id => l_person_id,
5236: x_password_date => trunc(sysdate));
5237: --
5238: hr_utility.set_location(l_proc,30);
5239: l_user_name := fnd_web_sec.set_reencrypted_password(username => p_user_name
5240: ,reencpwd => fnd_web_sec.encrypt(key => 'LOADER',value => p_password)
5241: , new_key =>'LOADER' );
5242: --
5243: -- set the language profile option

Line 5240: ,reencpwd => fnd_web_sec.encrypt(key => 'LOADER',value => p_password)

5236: x_password_date => trunc(sysdate));
5237: --
5238: hr_utility.set_location(l_proc,30);
5239: l_user_name := fnd_web_sec.set_reencrypted_password(username => p_user_name
5240: ,reencpwd => fnd_web_sec.encrypt(key => 'LOADER',value => p_password)
5241: , new_key =>'LOADER' );
5242: --
5243: -- set the language profile option
5244: --

Line 5409: l_password_check := fnd_web_sec.validate_password(username => p_user_name

5405: l_customer_pwd_check := nvl(fnd_profile.value('SIGNON_PASSWORD_CUSTOM'),'N');
5406: IF l_customer_pwd_check = 'N' THEN
5407: -- Validate the password
5408: --
5409: l_password_check := fnd_web_sec.validate_password(username => p_user_name
5410: ,password => p_password);
5411:
5412: if (l_password_check = 'N') then
5413: fnd_message.raise_error;