DBA Data[Home] [Help]

APPS.IGS_PS_VALIDATE_LGCY_PKG dependencies on IGS_PS_VAL_UV

Line 205: IF (NOT igs_ps_val_uv.crsp_val_uv_end_sts(p_unit_ver_rec.end_dt,

201: p_unit_ver_rec.status:='E';
202: END IF;
203:
204: --Validate end date cannot be set for non inactive status
205: IF (NOT igs_ps_val_uv.crsp_val_uv_end_sts(p_unit_ver_rec.end_dt,
206: p_unit_ver_rec.unit_status,
207: l_c_message_name)) THEN
208: igs_ps_validate_lgcy_pkg.set_msg(l_c_message_name,NULL,NULL,FALSE);
209: p_unit_ver_rec.status:='E';

Line 215: IF (NOT igs_ps_val_uv.crsp_val_uv_sup_exam(p_unit_ver_rec.supp_exam_permitted_ind,

211:
212: --Removed the validation to check unit coordinator is a staff person.As a part of bug # 3121311
213:
214: --Validate if unit version has the assessable indicator checked then it must have supplementary exam checked
215: IF (NOT igs_ps_val_uv.crsp_val_uv_sup_exam(p_unit_ver_rec.supp_exam_permitted_ind,
216: p_unit_ver_rec.assessable_ind,
217: l_c_message_name)) THEN
218:
219: igs_ps_validate_lgcy_pkg.set_msg(l_c_message_name,NULL,NULL,FALSE);

Line 231: IF (NOT igs_ps_val_uv.crsp_val_uv_exp_sts(p_unit_ver_rec.unit_cd,

227: p_unit_ver_rec.status :='E';
228: END IF;
229:
230: --Validate only one version of unit can exist with active status and expiry date not set
231: IF (NOT igs_ps_val_uv.crsp_val_uv_exp_sts(p_unit_ver_rec.unit_cd,
232: p_unit_ver_rec.version_number,
233: p_unit_ver_rec.expiry_dt,
234: p_unit_ver_rec.unit_status,
235: l_c_message_name)) THEN

Line 242: IF (NOT igs_ps_val_uv.crsp_val_uv_unit_sts(p_unit_ver_rec.unit_cd,

238: p_unit_ver_rec.status :='E';
239: END IF;
240:
241: --Validate status with respect to superior and subordinate units
242: IF (NOT igs_ps_val_uv.crsp_val_uv_unit_sts(p_unit_ver_rec.unit_cd,
243: p_unit_ver_rec.version_number,
244: p_unit_ver_rec.unit_status,
245: NULL,
246: l_c_message_name,

Line 273: IF (NOT igs_ps_val_uv.crsp_val_uv_pnt_ovrd(p_unit_ver_rec.points_override_ind,

269: p_unit_ver_rec.status :='E';
270: END IF;
271:
272: --Validate the credit points related validations using generic function
273: IF (NOT igs_ps_val_uv.crsp_val_uv_pnt_ovrd(p_unit_ver_rec.points_override_ind,
274: p_unit_ver_rec.points_increment,
275: p_unit_ver_rec.points_min,
276: p_unit_ver_rec.points_max,
277: p_unit_ver_rec.enrolled_credit_points,

Line 1358: IF NOT igs_ps_val_uv.crsp_val_uv_pnt_ovrd ( l_c_override_ind,

1354: igs_ps_validate_lgcy_pkg.set_msg('IGS_PS_BILL_CRD_PTS_ERROR',NULL,NULL,FALSE);
1355: p_usec_rec.status :='E';
1356: END IF;
1357:
1358: IF NOT igs_ps_val_uv.crsp_val_uv_pnt_ovrd ( l_c_override_ind,
1359: p_usec_rec.variable_increment,
1360: p_usec_rec.minimum_credit_points,
1361: p_usec_rec.maximum_credit_points,
1362: p_usec_rec.enrolled_credit_points,