DBA Data[Home] [Help]

APPS.HXC_FIND_NOTIFY_APRS_PKG dependencies on PER_PEOPLE_F

Line 151: select p.full_name from per_people_f p

147: p_effective_date in DATE)
148: return varchar2
149: is
150: cursor csr_name(b_person_id NUMBER, b_effective_date DATE) is
151: select p.full_name from per_people_f p
152: where p.person_id=b_person_id
153: and b_effective_date between p.effective_start_date and p.effective_end_date;
154:
155: cursor csr_closest_name1

Line 2131: --Changed for 115.60; used per_all_people_f instead of per_people_f

2127: raise;
2128: end person_approval;
2129:
2130: --Function to check if a given approver is terminated (Bug#3160848)
2131: --Changed for 115.60; used per_all_people_f instead of per_people_f
2132: FUNCTION validate_person(
2133: p_person_id in number,
2134: p_effective_date in date)
2135: RETURN BOOLEAN