DBA Data[Home] [Help]

APPS.IRC_PARTY_API dependencies on IRC_UTILITIES_PKG

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

4439: hr_utility.set_location(l_proc, 30);
4440: -- Disable Partial Registration for Employees
4441: -- we have to REVISIT after using UMX support for Registration
4442: if l_person_id is not null then
4443: l_per_type := irc_utilities_pkg.get_emp_spt_for_person(l_person_id, trunc(p_start_date));
4444: if (l_per_type = 'EMP') then
4445: fnd_message.set_name('PER','IRC_412224_EMP_PARTIAL_REG');
4446: fnd_message.raise_error;
4447: end if;

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

4731:
4732: if l_person_id is NULL then
4733: return 'NO_PROFILE';
4734: else
4735: if irc_utilities_pkg.is_internal_person(p_user_name,trunc(sysdate)) <> 'TRUE' then
4736: open get_bg(l_person_id);
4737: fetch get_bg into l_pers_business_group_id;
4738: close get_bg;
4739: l_ptu_person_type_id:=hr_person_type_usage_info.get_default_person_type_id

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

4952: fetch get_person_party_info into l_person_id, l_person_party_id;
4953: close get_person_party_info;
4954: -- Disable Partial Registration for Employees
4955: if l_person_id is not null then
4956: l_per_type := irc_utilities_pkg.get_emp_spt_for_person(l_person_id, trunc(p_start_date));
4957: end if;
4958: -- check if the User has the required responsibility
4959: l_resp_exists := fnd_user_resp_groups_api.Assignment_Exists(p_user_id,
4960: p_responsibility_id, p_resp_appl_id, p_security_group_id);