DBA Data[Home] [Help]

APPS.HR_PERSON dependencies on PER_PERIODS_OF_SERVICE

Line 2033: from per_periods_of_service pps

2029: and ppt.system_person_type <> pst.system_person_type
2030: and pst.system_person_type = p_system_person_type
2031: union
2032: select 'Future Person Type exists'
2033: from per_periods_of_service 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'

Line 2110: from per_periods_of_service pps

2106: /* and p_effective_start_date between
2107: ptu.effective_start_date and ptu.effective_end_date --- fix for bug 6161469 */
2108: union
2109: select 'Previous Person type exists'
2110: from per_periods_of_service pps
2111: where pps.person_id = p_person_id
2112: and p_effective_start_date > nvl(pps.actual_termination_date,
2113: p_effective_start_date)
2114: union

Line 2136: from per_periods_of_service pps

2132: and ppt.system_person_type <> pst.system_person_type
2133: and pst.system_person_type = p_system_person_type
2134: union
2135: select 'Previous Person type exists'
2136: from per_periods_of_service pps
2137: where pps.person_id = p_person_id
2138: and p_effective_start_date > nvl(pps.actual_termination_date,
2139: p_effective_start_date));
2140: */