DBA Data[Home] [Help]

APPS.IGS_PE_COURSE_EXCL_PKG dependencies on IGS_EN_VAL_PCE

Line 89: IF IGS_EN_VAL_PCE.enrp_val_encmb_dt (

85: (p_inserting OR (p_updating AND
86: (NVL(old_references.pce_start_dt, IGS_GE_DATE.IGSDATE('1900/01/01'))
87: <> new_references.pce_start_dt)))
88: THEN
89: IF IGS_EN_VAL_PCE.enrp_val_encmb_dt (
90: new_references.pce_start_dt,
91: v_message_name) = FALSE THEN
92: Fnd_Message.Set_Name('IGS', v_message_name);
93: IGS_GE_MSG_STACK.ADD;

Line 100: IF IGS_EN_VAL_PCE.enrp_val_encmb_dts (

96: END IF;
97: -- Validate that start date is not less than the parent IGS_PE_PERSON
98: -- Encumbrance Effect start date.
99: IF p_inserting THEN
100: IF IGS_EN_VAL_PCE.enrp_val_encmb_dts (
101: new_references.pee_start_dt,
102: new_references.pce_start_dt,
103: v_message_name) = FALSE THEN
104: Fnd_Message.Set_Name('IGS', v_message_name);

Line 116: IF IGS_EN_VAL_PCE.enrp_val_strt_exp_dt (

112: (p_inserting OR (p_updating AND
113: (NVL(old_references.expiry_dt, IGS_GE_DATE.IGSDATE('1900/01/01'))
114: <> new_references.expiry_dt)))
115: THEN
116: IF IGS_EN_VAL_PCE.enrp_val_strt_exp_dt (
117: new_references.pce_start_dt,
118: new_references.expiry_dt,
119: v_message_name) = FALSE THEN
120: Fnd_Message.Set_Name('IGS', v_message_name);

Line 124: IF IGS_EN_VAL_PCE.enrp_val_encmb_dt (

120: Fnd_Message.Set_Name('IGS', v_message_name);
121: IGS_GE_MSG_STACK.ADD;
122: App_Exception.Raise_Exception;
123: END IF;
124: IF IGS_EN_VAL_PCE.enrp_val_encmb_dt (
125: new_references.expiry_dt,
126: v_message_name) = FALSE THEN
127: Fnd_Message.Set_Name('IGS', v_message_name);
128: IGS_GE_MSG_STACK.ADD;

Line 135: IF IGS_EN_VAL_PCE.enrp_val_pee_table (

131: END IF;
132: -- Validate that records for this table can be created for the encumbrance
133: -- effect type.
134: IF p_inserting THEN
135: IF IGS_EN_VAL_PCE.enrp_val_pee_table (
136: new_references.s_encmb_effect_type,
137: 'IGS_PE_COURSE_EXCL',
138: v_message_name) = FALSE THEN
139: Fnd_Message.Set_Name('IGS', v_message_name);

Line 166: IF IGS_EN_VAL_PCE.enrp_val_pce_open (

162: -- Validate for open ended IGS_PE_PERSON IGS_PS_COURSE exclusion records.
163: IF new_references.expiry_dt IS NULL THEN
164: -- Validate for open ended person_crs_exclusion records.
165: IF new_references.expiry_dt IS NULL THEN
166: IF IGS_EN_VAL_PCE.enrp_val_pce_open (
167: new_references.person_id,
168: new_references.encumbrance_type,
169: new_references.pen_start_dt,
170: new_references.s_encmb_effect_type,