DBA Data[Home] [Help]

APPS.IGS_EN_VAL_PEE dependencies on IGS_EN_ATD_TYPE

Line 621: FROM IGS_EN_ATD_TYPE

617:
618: v_closed_ind VARCHAR2(1);
619: CURSOR c_attend_type IS
620: SELECT closed_ind
621: FROM IGS_EN_ATD_TYPE
622: WHERE attendance_type = p_attend_type;
623: BEGIN
624: -- Check if the IGS_EN_ATD_TYPE is closed
625: p_message_name := null;

Line 624: -- Check if the IGS_EN_ATD_TYPE is closed

620: SELECT closed_ind
621: FROM IGS_EN_ATD_TYPE
622: WHERE attendance_type = p_attend_type;
623: BEGIN
624: -- Check if the IGS_EN_ATD_TYPE is closed
625: p_message_name := null;
626: OPEN c_attend_type;
627: FETCH c_attend_type INTO v_closed_ind;
628: IF (c_attend_type%NOTFOUND) THEN