DBA Data[Home] [Help]

APPS.IGS_RE_CDT_ATT_HIST_PKG dependencies on IGS_RE_VAL_CAH

Line 6: --smadathi 24-AUG-2001 Bug No. 1956374 .The call to igs_re_val_cah.genp_val_sdtt_sess

2: /* $Header: IGSRI03B.pls 120.1 2005/07/04 00:41:15 appldev ship $ */
3: -------------------------------------------------------------------------------------------
4: --Change History:
5: --Who When What
6: --smadathi 24-AUG-2001 Bug No. 1956374 .The call to igs_re_val_cah.genp_val_sdtt_sess
7: -- is changed to igs_as_val_suaap.genp_val_sdtt_sess
8: --svanukur 17-feb-2004 added logic after call to IGS_RE_VAL_CAH.resp_val_cah_hist_dt to
9: -- not raise an exceptio if the message is IGS_RE_ATND_HIST_STRT_CRS_ATM
10: --svanukur 13-APR-2004 removed the call to resp_val_cah_strt_dt since this procedure was modified

Line 8: --svanukur 17-feb-2004 added logic after call to IGS_RE_VAL_CAH.resp_val_cah_hist_dt to

4: --Change History:
5: --Who When What
6: --smadathi 24-AUG-2001 Bug No. 1956374 .The call to igs_re_val_cah.genp_val_sdtt_sess
7: -- is changed to igs_as_val_suaap.genp_val_sdtt_sess
8: --svanukur 17-feb-2004 added logic after call to IGS_RE_VAL_CAH.resp_val_cah_hist_dt to
9: -- not raise an exceptio if the message is IGS_RE_ATND_HIST_STRT_CRS_ATM
10: --svanukur 13-APR-2004 removed the call to resp_val_cah_strt_dt since this procedure was modified
11: -- to return true in all cases. as part of bug 3544986
12: -------------------------------------------------------------------------------------------

Line 94: IF IGS_RE_VAL_CAH.resp_val_cah_ca_ins (

90: -- as a result of IGS_PS_COURSE transfer
91: IF igs_as_val_suaap.genp_val_sdtt_sess('ENRP_INS_CA_TRNSFR') THEN
92: IF p_inserting THEN
93: -- Validate insert against IGS_RE_CANDIDATURE
94: IF IGS_RE_VAL_CAH.resp_val_cah_ca_ins (
95: new_references.person_id,
96: new_references.ca_sequence_number,
97: NULL, -- ca.sca_course_cd
98: v_commencement_dt,

Line 110: IF IGS_RE_VAL_CAH.resp_val_ca_childupd (

106: IF p_inserting OR
107: p_updating OR
108: p_deleting THEN
109: -- Validate updates are allowed
110: IF IGS_RE_VAL_CAH.resp_val_ca_childupd (
111: new_references.person_id,
112: new_references.ca_sequence_number,
113: v_message_name) = FALSE THEN
114: Fnd_Message.Set_Name ('IGS', v_message_name);

Line 127: IF IGS_RE_VAL_CAH.resp_val_cah_end_dt (

123: IF p_inserting OR
124: (p_updating AND
125: (new_references.hist_end_dt <> old_references.hist_end_dt) OR
126: (new_references.hist_start_dt <> old_references.hist_start_dt)) THEN
127: IF IGS_RE_VAL_CAH.resp_val_cah_end_dt (
128: new_references.person_id,
129: new_references.ca_sequence_number,
130: new_references.hist_start_dt,
131: new_references.hist_end_dt,

Line 152: IF IGS_RE_VAL_CAH.resp_val_cah_hist_dt(

148: v_ca_sequence_number := old_references.ca_sequence_number;
149: END IF;
150:
151: IF igs_as_val_suaap.genp_val_sdtt_sess('ENRP_INS_CA_TRNSFR') THEN
152: IF IGS_RE_VAL_CAH.resp_val_cah_hist_dt(
153: v_person_id,
154: v_ca_sequence_number,
155: 'Y', -- validate first history start date
156: v_message_name) = FALSE THEN