DBA Data[Home] [Help]

APPS.IRC_PARTY_API dependencies on IRC_UTILITIES_PKG

Line 4215: l_per_type := irc_utilities_pkg.get_emp_spt_for_person(l_person_id, trunc(p_start_date));

4211: hr_utility.set_location(l_proc, 30);
4212: -- Disable Partial Registration for Employees
4213: -- we have to REVISIT after using UMX support for Registration
4214: if l_person_id is not null then
4215: l_per_type := irc_utilities_pkg.get_emp_spt_for_person(l_person_id, trunc(p_start_date));
4216: if (l_per_type = 'EMP') then
4217: fnd_message.set_name('PER','IRC_412224_EMP_PARTIAL_REG');
4218: fnd_message.raise_error;
4219: end if;

Line 4505: if irc_utilities_pkg.is_internal_person(p_user_name,trunc(sysdate)) <> 'TRUE' then

4501:
4502: if l_person_id is NULL then
4503: return 'NO_PROFILE';
4504: else
4505: if irc_utilities_pkg.is_internal_person(p_user_name,trunc(sysdate)) <> 'TRUE' then
4506: open get_bg(l_person_id);
4507: fetch get_bg into l_pers_business_group_id;
4508: close get_bg;
4509: l_ptu_person_type_id:=hr_person_type_usage_info.get_default_person_type_id

Line 4726: l_per_type := irc_utilities_pkg.get_emp_spt_for_person(l_person_id, trunc(p_start_date));

4722: fetch get_person_party_info into l_person_id, l_person_party_id;
4723: close get_person_party_info;
4724: -- Disable Partial Registration for Employees
4725: if l_person_id is not null then
4726: l_per_type := irc_utilities_pkg.get_emp_spt_for_person(l_person_id, trunc(p_start_date));
4727: end if;
4728: -- check if the User has the required responsibility
4729: l_resp_exists := fnd_user_resp_groups_api.Assignment_Exists(p_user_id,
4730: p_responsibility_id, p_resp_appl_id, p_security_group_id);