DBA Data[Home] [Help]

APPS.IGS_PS_PAT_STUDY_UNT_PKG dependencies on IGS_PS_VAL_POSU

Line 107: IF IGS_PS_VAL_POSu.crsp_val_uv_active (

103: IF p_inserting OR p_updating THEN
104: -- Validate the UnitCode
105: IF (new_references.unit_cd IS NOT NULL AND (p_inserting OR
106: (p_updating AND new_references.unit_cd <> old_references.unit_cd))) THEN
107: IF IGS_PS_VAL_POSu.crsp_val_uv_active (
108: new_references.unit_cd,
109: v_message_name) = FALSE THEN
110: Fnd_Message.Set_Name('IGS', v_message_name);
111: IGS_GE_MSG_STACK.ADD;

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

115: -- Validate the IGS_PS_UNIT IGS_AD_LOCATION Code
116: IF (new_references.unit_location_cd IS NOT NULL AND (p_inserting OR
117: (p_updating AND new_references.unit_location_cd <> old_references.unit_location_cd))) THEN
118:
119: -- As part of the bug# 1956374 changed to the below call from IGS_PS_VAL_POSu.crsp_val_loc_cd
120: IF IGS_PS_VAL_UOO.crsp_val_loc_cd (
121: new_references.unit_location_cd,
122: v_message_name) = FALSE THEN
123: Fnd_Message.Set_Name('IGS', v_message_name);

Line 131: -- As part of the bug# 1956374 changed to the below call from IGS_PS_VAL_POSu.crsp_val_ucl_closed

127: END IF;
128: -- Validate the IGS_PS_UNIT Class
129: IF (new_references.unit_class IS NOT NULL AND (p_inserting OR
130: (p_updating AND new_references.unit_class<> old_references.unit_class))) THEN
131: -- As part of the bug# 1956374 changed to the below call from IGS_PS_VAL_POSu.crsp_val_ucl_closed
132: IF IGS_AS_VAL_UAI.crsp_val_ucl_closed (
133: new_references.unit_class,
134: v_message_name) = FALSE THEN
135: Fnd_Message.Set_Name('IGS', v_message_name);

Line 141: IF IGS_PS_VAL_POSu.crsp_val_posu_rqrd (

137: App_Exception.Raise_Exception;
138: END IF;
139: END IF;
140: -- Validate the record has the required data
141: IF IGS_PS_VAL_POSu.crsp_val_posu_rqrd (
142: new_references.unit_cd,
143: new_references.unit_location_cd,
144: new_references.unit_class,
145: new_references.description,

Line 167: IF IGS_PS_VAL_POSu.crsp_val_posu_iu(

163: v_return_type VARCHAR2(1);
164: BEGIN
165: cst_error := 'E';
166: -- Validate the pattern of study record
167: IF IGS_PS_VAL_POSu.crsp_val_posu_iu(
168: new_references.course_cd,
169: new_references.version_number,
170: new_references.cal_type,
171: new_references.pos_sequence_number,