DBA Data[Home] [Help]

APPS.HR_PERSON dependencies on PER_PERIODS_OF_PLACEMENT

Line 2038: from per_periods_of_placement pps

2034: where pps.person_id = p_person_id
2035: and p_effective_start_date < pps.date_start
2036: union --fix for bug 6730008
2037: select 'Future Person Type exists'
2038: from per_periods_of_placement pps
2039: where p_system_person_type='OTHER'
2040: and pps.person_id = p_person_id
2041: and p_effective_start_date < nvl(pps.actual_termination_date,p_effective_start_date)
2042: );

Line 2116: from per_periods_of_placement ppp

2112: and p_effective_start_date > nvl(pps.actual_termination_date,
2113: p_effective_start_date)
2114: union
2115: select 'Previous Person type exists'
2116: from per_periods_of_placement ppp
2117: where ppp.person_id = p_person_id
2118: and p_effective_start_date > nvl(ppp.actual_termination_date,
2119: p_effective_start_date)); --fix for bug 5961371.
2120: