DBA Data[Home] [Help]

APPS.IGS_PS_VAL_CRV dependencies on IGS_PS_VAL_CO

Line 463: IF (IGS_PS_VAL_COw.crsp_val_cow_perc(

459: END IF;
460: -- Validate the IGS_PS_FIELD_STUDY record percentage of total 100%. Removed Code
461:
462: -- Validate the IGS_PS_OWN record percentage total 100%
463: IF (IGS_PS_VAL_COw.crsp_val_cow_perc(
464: p_course_cd,
465: p_version_number,
466: p_message_name) = FALSE) THEN
467: RETURN FALSE;

Line 600: IF (IGS_PS_VAL_CO.crsp_val_co_cal_type(

596: IF (v_s_course_status = 'PLANNED') THEN
597: -- Validate that if IGS_PS_OFR records exist,
598: -- check that the IGS_CA_TYPE is not closed
599: FOR co_rec IN c_get_cal_type LOOP
600: IF (IGS_PS_VAL_CO.crsp_val_co_cal_type(
601: co_rec.cal_type,
602: p_message_name) = FALSE) THEN
603: v_terminate := TRUE;
604: EXIT; -- premature exit loop

Line 613: -- As part of the bug# 1956374 changed to the below call from IGS_PS_VAL_COO.crsp_val_loc_cd

609: END IF;
610: -- Validate IGS_PS_OFR_OPT record(s) if it exists and
611: -- the closed indicators associated with the fields of the record
612: FOR coo_rec IN c_course_offering_option LOOP
613: -- As part of the bug# 1956374 changed to the below call from IGS_PS_VAL_COO.crsp_val_loc_cd
614: IF (IGS_PS_VAL_UOO.crsp_val_loc_cd(
615: coo_rec.location_cd,
616: p_message_name) = FALSE) THEN
617: v_terminate := TRUE;

Line 620: IF (IGS_PS_VAL_COo.crsp_val_coo_am(

616: p_message_name) = FALSE) THEN
617: v_terminate := TRUE;
618: EXIT; -- premature exit loop
619: END IF;
620: IF (IGS_PS_VAL_COo.crsp_val_coo_am(
621: coo_rec.attendance_mode,
622: p_message_name) = FALSE) THEN
623: v_terminate := TRUE;
624: EXIT; -- premature exit loop

Line 626: IF (IGS_PS_VAL_COo.crsp_val_coo_att(

622: p_message_name) = FALSE) THEN
623: v_terminate := TRUE;
624: EXIT; -- premature exit loop
625: END IF;
626: IF (IGS_PS_VAL_COo.crsp_val_coo_att(
627: coo_rec.attendance_type, p_message_name) = FALSE) THEN
628: v_terminate := TRUE;
629: EXIT; -- premature exit loop
630: END IF;