DBA Data[Home] [Help]

APPS.PQH_SS_WORKFLOW dependencies on PER_ALL_ASSIGNMENTS_F

Line 803: FROM per_all_assignments_f

799: --
800: -- Check if the assignment is terminated
801: CURSOR cur_term_asg (c_asgnId NUMBER, c_effective_date DATE) IS
802: SELECT 'X'
803: FROM per_all_assignments_f
804: WHERE assignment_id = c_asgnId
805: AND effective_end_date <= trunc(c_effective_date)
806: AND assignment_status_type_id in (
807: SELECT assignment_status_type_id

Line 815: per_all_assignments_f ass

811: -- Check if assignment is terminated in future
812: CURSOR cur_fut_term_asg (c_asgnId NUMBER, c_effective_date DATE) IS
813: SELECT to_char(ser.actual_termination_date,g_date_format)
814: FROM per_periods_of_service ser,
815: per_all_assignments_f ass
816: where ass.period_of_service_id = ser.period_of_service_id
817: AND ass.assignment_id = c_asgnId
818: AND TRUNC(c_effective_date) between ass.effective_start_date AND ass.effective_end_date ;
819: