DBA Data[Home] [Help]

APPS.HR_PERSON dependencies on PER_PERIODS_OF_PLACEMENT

Line 2167: from per_periods_of_placement pps

2163: where pps.person_id = p_person_id
2164: and p_effective_start_date < pps.date_start
2165: union --fix for bug 6730008
2166: select 'Future Person Type exists'
2167: from per_periods_of_placement pps
2168: where p_system_person_type='OTHER'
2169: and pps.person_id = p_person_id
2170: and ( p_effective_start_date < nvl(pps.actual_termination_date,p_effective_start_date)
2171: or p_effective_start_date

Line 2267: from per_periods_of_placement ppp

2263: and p_effective_start_date > nvl(pps.actual_termination_date,
2264: p_effective_start_date)
2265: union
2266: select 'Previous Person type exists'
2267: from per_periods_of_placement ppp
2268: where ppp.person_id = p_person_id
2269: and p_effective_start_date > nvl(ppp.actual_termination_date,
2270: p_effective_start_date)); --fix for bug 5961371.
2271: