DBA Data[Home] [Help]

APPS.PQH_SS_WORKFLOW dependencies on PER_ALL_ASSIGNMENTS_F

Line 806: FROM per_all_assignments_f

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

Line 818: per_all_assignments_f ass

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