DBA Data[Home] [Help]

APPS.PER_ASG_BUS1 dependencies on PER_PERIODS_OF_SERVICE

Line 5006: , per_periods_of_service ppos

5002: select null
5003: from sys.dual
5004: where exists(select null
5005: from per_all_assignments_f pas
5006: , per_periods_of_service ppos
5007: where pas.effective_start_date <= p_effective_date
5008: and ppos.period_of_service_id = pas.period_of_service_id
5009: and pas.person_id = p_person_id
5010: and pas.primary_flag = 'N'

Line 5013: , per_periods_of_service ppos2

5009: and pas.person_id = p_person_id
5010: and pas.primary_flag = 'N'
5011: and (exists(select null
5012: from per_all_assignments_f pas2
5013: , per_periods_of_service ppos2
5014: where pas2.effective_end_date =
5015: nvl(ppos2.actual_termination_date, hr_api.g_eot)
5016: and pas.assignment_id = pas2.assignment_id
5017: and pas2.period_of_service_id = ppos2.period_of_service_id ))); -- Added this last filter for Bug 4300591.