[Home] [Help]
243: CURSOR student_check_cur (cp_person_id NUMBER,
244: cp_system_type VARCHAR2)
245: IS
246: SELECT 1
247: FROM igs_pe_typ_instances_all inst,
248: igs_pe_person_types typ
249: WHERE inst.person_type_code = typ.person_type_code AND
250: inst.person_id = cp_person_id AND
251: typ.system_type = cp_system_type AND