DBA Data[Home] [Help]

APPS.IGS_PS_FEE_TRG_PKG dependencies on IGS_FI_VAL_CFT

Line 97: IF IGS_FI_VAL_CFT.finp_val_cft_ins (

93: v_message_name varchar2(30);
94: BEGIN
95: IF p_inserting THEN
96: -- Validate trigger can be defined.
97: IF IGS_FI_VAL_CFT.finp_val_cft_ins (
98: new_references.fee_type,
99: v_message_name) = FALSE THEN
100: Fnd_Message.Set_Name('IGS',v_message_name);
101: IGS_GE_MSG_STACK.ADD;

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

104: END IF;
105: IF p_inserting OR p_updating THEN
106: -- Validate IGS_AD_LOCATION not closed and of type CAMPUS.
107:
108: -- As part of the bug# 1956374 changed to the below call from IGS_FI_VAL_CFT.crsp_val_loc_cd
109: IF IGS_PS_VAL_UOO.crsp_val_loc_cd (
110: new_references.location_cd,
111: v_message_name) = FALSE THEN
112: Fnd_Message.Set_Name('IGS',v_message_name);

Line 120: -- call changed from igs_fi_val_cft.enrp_val_att_closed

116: -- Validate Attendance Type not closed.
117: --
118: -- bug id : 1956374
119: -- sjadhav, 28-aug-2001
120: -- call changed from igs_fi_val_cft.enrp_val_att_closed
121: -- to igs_en_val_pee.enrp_val_att_closed
122: --
123: IF IGS_EN_VAL_PEE.enrp_val_att_closed (
124: new_references.attendance_type,

Line 132: -- IGS_FI_VAL_CFT.enrp_val_am_closed

128: App_Exception.Raise_Exception;
129: END IF;
130: -- Validate Attendance Mode not closed.
131: -- As part of the bug 1956374 changed the following call from
132: -- IGS_FI_VAL_CFT.enrp_val_am_closed
133: IF IGS_FI_VAL_FAR.enrp_val_am_closed (
134: new_references.attendance_mode,
135: v_message_name) = FALSE THEN
136: Fnd_Message.Set_Name('IGS',v_message_name);

Line 141: IF IGS_FI_VAL_CFT.calp_val_cat_closed (

137: IGS_GE_MSG_STACK.ADD;
138: App_Exception.Raise_Exception;
139: END IF;
140: -- Validate Calendar Type not closed.
141: IF IGS_FI_VAL_CFT.calp_val_cat_closed (
142: new_references.cal_type,
143: v_message_name) = FALSE THEN
144: Fnd_Message.Set_Name('IGS',v_message_name);
145: IGS_GE_MSG_STACK.ADD;

Line 149: IF IGS_FI_VAL_CFT.finp_val_ct_academic (

145: IGS_GE_MSG_STACK.ADD;
146: App_Exception.Raise_Exception;
147: END IF;
148: -- Validate Calendar Category is 'ACADEMIC'.
149: IF IGS_FI_VAL_CFT.finp_val_ct_academic (
150: new_references.cal_type,
151: v_message_name) = FALSE THEN
152: Fnd_Message.Set_Name('IGS',v_message_name);
153: IGS_GE_MSG_STACK.ADD;

Line 157: IF IGS_FI_VAL_CFT.finp_val_cft_crs (

153: IGS_GE_MSG_STACK.ADD;
154: App_Exception.Raise_Exception;
155: END IF;
156: -- Validate IGS_PS_COURSE code.
157: IF IGS_FI_VAL_CFT.finp_val_cft_crs (
158: new_references.course_cd,
159: v_message_name) = FALSE THEN
160: Fnd_Message.Set_Name('IGS',v_message_name);
161: IGS_GE_MSG_STACK.ADD;

Line 205: IF IGS_FI_VAL_CFT.finp_val_cft_open(new_references.fee_cat,

201:
202: IF (p_inserting OR p_updating) THEN
203: -- Validate for open ended IGS_PS_FEE_TRG records.
204: IF new_references.logical_delete_dt IS NULL THEN
205: IF IGS_FI_VAL_CFT.finp_val_cft_open(new_references.fee_cat,
206: new_references.fee_cal_type,
207: new_references.fee_ci_sequence_number,
208: new_references.fee_type,
209: new_references.course_cd,

Line 226: IF IGS_FI_VAL_CFT.finp_val_cft_ftg(new_references.fee_cat,

222: END IF;
223: END IF;
224: -- Validate IGS_PS_FEE_TRG fee trigger group.
225: IF new_references.fee_trigger_group_number IS NOT NULL THEN
226: IF IGS_FI_VAL_CFT.finp_val_cft_ftg(new_references.fee_cat,
227: new_references.fee_cal_type,
228: new_references.fee_ci_sequence_number,
229: new_references.fee_type,
230: new_references.course_cd,