DBA Data[Home] [Help]

APPS.PER_PER_BUS dependencies on FND_PROFILE

Line 1592: if fnd_profile.value('PER_NATIONAL_IDENTIFIER_VALIDATION') <> 'NONE' and fnd_profile.value('PER_NATIONAL_IDENTIFIER_VALIDATION') <> 'WARN' then

1588: -- 3807899 - Modified the 'or' condition to 'and'
1589: -- Also modified the value used to set the token 'RETURNED_VALUE' to l_valid_ni
1590: -- instead of '123-45-789'
1591: --
1592: if fnd_profile.value('PER_NATIONAL_IDENTIFIER_VALIDATION') <> 'NONE' and fnd_profile.value('PER_NATIONAL_IDENTIFIER_VALIDATION') <> 'WARN' then
1593: -- #932657
1594: if l_valid_ni <> p_national_identifier then
1595: hr_utility.set_message(800, 'HR_52765_PER_INV_NI_FORMAT');
1596: hr_utility.set_message_token('P_N_I', p_national_identifier);

Line 1602: l_prof_val := fnd_profile.value ('PER_NI_UNIQUE_ERROR_WARNING');

1598: hr_utility.raise_error;
1599: end if;
1600: end if;
1601: -- 4069243 start
1602: l_prof_val := fnd_profile.value ('PER_NI_UNIQUE_ERROR_WARNING');
1603:
1604: hr_ni_chk_pkg.check_ni_unique
1605: (p_national_identifier => p_national_identifier
1606: ,p_person_id => p_person_id

Line 2010: and nvl(fnd_profile.value('PER_GLOBAL_EMP_NUM'),'N') = 'Y'

2006: --
2007: -- Call number generation routine.
2008: --
2009: if l_gen_method = 'A'
2010: and nvl(fnd_profile.value('PER_GLOBAL_EMP_NUM'),'N') = 'Y'
2011: and ( PER_BG_NUMBERING_METHOD_PKG.Get_PersonNumber_Formula
2012: ('EMP',p_effective_date)) is null
2013: and p_employee_number is not null
2014: and g_global_transfer_in_process then