DBA Data[Home] [Help]

APPS.HR_PERSON dependencies on PER_PERIODS_OF_SERVICE

Line 2162: from per_periods_of_service pps

2158: and ppt.system_person_type <> pst.system_person_type
2159: and pst.system_person_type = p_system_person_type
2160: union
2161: select 'Future Person Type exists'
2162: from per_periods_of_service 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'

Line 2261: from per_periods_of_service pps

2257: /* and p_effective_start_date between
2258: ptu.effective_start_date and ptu.effective_end_date --- fix for bug 6161469 */
2259: union
2260: select 'Previous Person type exists'
2261: from per_periods_of_service pps
2262: where pps.person_id = p_person_id
2263: and p_effective_start_date > nvl(pps.actual_termination_date,
2264: p_effective_start_date)
2265: union

Line 2287: from per_periods_of_service pps

2283: and ppt.system_person_type <> pst.system_person_type
2284: and pst.system_person_type = p_system_person_type
2285: union
2286: select 'Previous Person type exists'
2287: from per_periods_of_service pps
2288: where pps.person_id = p_person_id
2289: and p_effective_start_date > nvl(pps.actual_termination_date,
2290: p_effective_start_date));
2291: */