DBA Data[Home] [Help]

APPS.HXT_UTIL dependencies on HXT_ROTATION_SCHEDULES

Line 678: FROM hxt_rotation_schedules rts

674: -- If rotation plan, get applicable work schedule id
675: -- Find rotation containing work date
676: SELECT rts.tws_id
677: INTO p_work_id
678: FROM hxt_rotation_schedules rts
679: WHERE rts.rtp_id = p_rotation_id
680: AND rts.start_date = (SELECT MAX(start_date)
681: FROM hxt_rotation_schedules
682: WHERE rtp_id = p_rotation_id

Line 681: FROM hxt_rotation_schedules

677: INTO p_work_id
678: FROM hxt_rotation_schedules rts
679: WHERE rts.rtp_id = p_rotation_id
680: AND rts.start_date = (SELECT MAX(start_date)
681: FROM hxt_rotation_schedules
682: WHERE rtp_id = p_rotation_id
683: AND start_date <= p_date
684: );
685: --ORACLE END IF;