DBA Data[Home] [Help]

APPS.IGS_FI_BILL_INSTLS_PKG dependencies on APP_EXCEPTION

Line 51: app_exception.raise_exception;

47: IF ((cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT'))) THEN
48: CLOSE cur_old_ref_values;
49: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
50: igs_ge_msg_stack.add;
51: app_exception.raise_exception;
52: RETURN;
53: END IF;
54: CLOSE cur_old_ref_values;
55:

Line 100: app_exception.raise_exception;

96: new_references.student_plan_id
97: ) THEN
98: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
99: igs_ge_msg_stack.add;
100: app_exception.raise_exception;
101: END IF;
102:
103: IF (((old_references.student_plan_id = new_references.student_plan_id) AND
104: (old_references.bill_id = new_references.bill_id)) OR

Line 114: app_exception.raise_exception;

110: new_references.bill_id
111: ) THEN
112: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
113: igs_ge_msg_stack.add;
114: app_exception.raise_exception;
115: END IF;
116:
117: IF (((old_references.installment_id = new_references.installment_id)) OR
118: ((new_references.installment_id IS NULL))) THEN

Line 125: app_exception.raise_exception;

121: new_references.installment_id
122: ) THEN
123: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
124: igs_ge_msg_stack.add;
125: app_exception.raise_exception;
126: END IF;
127:
128: END check_parent_existance;
129:

Line 223: app_exception.raise_exception;

219: )
220: ) THEN
221: fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
222: igs_ge_msg_stack.add;
223: app_exception.raise_exception;
224: END IF;
225: check_parent_existance;
226: ELSIF (p_action = 'UPDATE') THEN
227: -- Call all the procedures related to Before Update.

Line 239: app_exception.raise_exception;

235: )
236: ) THEN
237: fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
238: igs_ge_msg_stack.add;
239: app_exception.raise_exception;
240: END IF;
241: END IF;
242:
243: END before_dml;

Line 306: app_exception.raise_exception;

302: ELSE
303: fnd_message.set_name ('FND', 'SYSTEM-INVALID ARGS');
304: fnd_message.set_token ('ROUTINE', 'IGS_FI_BILL_INSTLS_PKG.INSERT_ROW');
305: igs_ge_msg_stack.add;
306: app_exception.raise_exception;
307: END IF;
308:
309: before_dml(
310: p_action => 'INSERT',

Line 404: app_exception.raise_exception;

400: IF (c1%notfound) THEN
401: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
402: igs_ge_msg_stack.add;
403: CLOSE c1;
404: app_exception.raise_exception;
405: RETURN;
406: END IF;
407: CLOSE c1;
408:

Line 419: app_exception.raise_exception;

415: NULL;
416: ELSE
417: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
418: igs_ge_msg_stack.add;
419: app_exception.raise_exception;
420: END IF;
421:
422: RETURN;
423:

Line 474: app_exception.raise_exception;

470: ELSE
471: fnd_message.set_name( 'FND', 'SYSTEM-INVALID ARGS');
472: fnd_message.set_token ('ROUTINE', 'IGS_FI_BILL_INSTLS_PKG.UPDATE_ROW');
473: igs_ge_msg_stack.add;
474: app_exception.raise_exception;
475: END IF;
476:
477: before_dml(
478: p_action => 'UPDATE',