DBA Data[Home] [Help]

APPS.IGS_RE_THESIS_EXAM_PKG dependencies on IGS_RE_VAL_TEX

Line 6: --Nishikant 19NOV2002 Bug#2661533. The call to the function IGS_RE_VAL_TEX.resp_val_tex_sbmsn got

2: /* $Header: IGSRI16B.pls 120.1 2005/07/04 00:42:30 appldev ship $ */
3: -------------------------------------------------------------------------------------------
4: --Change History:
5: --Who When What
6: --Nishikant 19NOV2002 Bug#2661533. The call to the function IGS_RE_VAL_TEX.resp_val_tex_sbmsn got
7: -- modified to add two more parameters p_legacy, p_final_title_ind.
8: --smadathi 24-AUG-2001 Bug No. 1956374 .The call to igs_re_val_tex.genp_val_sdtt_sess
9: -- is changed to igs_as_val_suaap.genp_val_sdtt_sess
10: -------------------------------------------------------------------------------------------

Line 8: --smadathi 24-AUG-2001 Bug No. 1956374 .The call to igs_re_val_tex.genp_val_sdtt_sess

4: --Change History:
5: --Who When What
6: --Nishikant 19NOV2002 Bug#2661533. The call to the function IGS_RE_VAL_TEX.resp_val_tex_sbmsn got
7: -- modified to add two more parameters p_legacy, p_final_title_ind.
8: --smadathi 24-AUG-2001 Bug No. 1956374 .The call to igs_re_val_tex.genp_val_sdtt_sess
9: -- is changed to igs_as_val_suaap.genp_val_sdtt_sess
10: -------------------------------------------------------------------------------------------
11: l_rowid VARCHAR2(25);
12: old_references IGS_RE_THESIS_EXAM%RowType;

Line 94: IF IGS_RE_VAL_TEX.resp_val_tex_tpt( new_references.thesis_panel_type,

90: IF p_inserting OR
91: ( p_updating AND
92: old_references.thesis_panel_type <> new_references.thesis_panel_type) THEN
93: -- Validate the IGS_RE_THESIS panel type
94: IF IGS_RE_VAL_TEX.resp_val_tex_tpt( new_references.thesis_panel_type,
95: v_message_name) = FALSE THEN
96: Fnd_Message.Set_Name ('IGS', v_message_name);
97: IGS_GE_MSG_STACK.ADD;
98: App_Exception.Raise_Exception;

Line 105: IF IGS_RE_VAL_TEX.resp_val_tex_tet( new_references.thesis_exam_type,

101: IF p_inserting OR
102: ( p_updating AND
103: old_references.thesis_exam_type <> new_references.thesis_exam_type) THEN
104: -- Validate the IGS_RE_THESIS examination type
105: IF IGS_RE_VAL_TEX.resp_val_tex_tet( new_references.thesis_exam_type,
106: v_message_name) = FALSE THEN
107: Fnd_Message.Set_Name ('IGS', v_message_name);
108: IGS_GE_MSG_STACK.ADD;
109: App_Exception.Raise_Exception;

Line 229: IF IGS_RE_VAL_TEX.resp_val_tex_upd( new_references.person_id,

225: ELSE
226: v_transaction_type := 'UPDATE';
227: END IF;
228: -- Validate update transactions against the IGS_RE_THESIS examination.
229: IF IGS_RE_VAL_TEX.resp_val_tex_upd( new_references.person_id,
230: new_references.ca_sequence_number,
231: new_references.the_sequence_number,
232: v_transaction_type,
233: new_references.submission_dt,

Line 246: IF IGS_RE_VAL_TEX.resp_val_tex_sbmsn( new_references.person_id,

242: -- Validate the submission date.
243:
244: --Nishikant-19NOV2002-Bug#2661533. The signature of the functions resp_val_tex_sbmsn got modified to add
245: --two more parameer p_legacy and p_final_title_ind.
246: IF IGS_RE_VAL_TEX.resp_val_tex_sbmsn( new_references.person_id,
247: new_references.ca_sequence_number,
248: new_references.the_sequence_number,
249: new_references.creation_dt,
250: new_references.thesis_result_cd,

Line 261: IF IGS_RE_VAL_TEX.resp_val_tex_thr( new_references.person_id,

257: App_Exception.Raise_Exception;
258: END IF;
259: END IF;
260: -- Validate the IGS_RE_THESIS result code
261: IF IGS_RE_VAL_TEX.resp_val_tex_thr( new_references.person_id,
262: new_references.ca_sequence_number,
263: new_references.the_sequence_number,
264: new_references.creation_dt,
265: new_references.submission_dt,

Line 275: IF IGS_RE_VAL_TEX.resp_val_tex_upd( old_references.person_id,

271: App_Exception.Raise_Exception;
272: END IF;
273: ELSE -- Deleting!
274: -- Validate for deletion of IGS_RE_THESIS examination details.
275: IF IGS_RE_VAL_TEX.resp_val_tex_upd( old_references.person_id,
276: old_references.ca_sequence_number,
277: old_references.the_sequence_number,
278: 'DELETE',
279: old_references.submission_dt,