DBA Data[Home] [Help]

APPS.IGS_TR_STP_CTL_TYPE_PKG dependencies on APP_EXCEPTION

Line 47: app_exception.raise_exception;

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

Line 92: App_Exception.Raise_Exception;

88: new_references.step_catalog_id
89: )THEN
90: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
91: IGS_GE_MSG_STACK.ADD;
92: App_Exception.Raise_Exception;
93: END IF;
94:
95: IF (((old_references.s_tracking_type = new_references.s_tracking_type)) OR
96: ((new_references.s_tracking_type IS NULL))) THEN

Line 104: App_Exception.Raise_Exception;

100: new_references.s_tracking_type
101: )THEN
102: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
103: IGS_GE_MSG_STACK.ADD;
104: App_Exception.Raise_Exception;
105: END IF;
106: END check_parent_existance;
107:
108: FUNCTION get_pk_for_validation (

Line 190: app_exception.raise_exception;

186: )
187: ) THEN
188: fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
189: igs_ge_msg_stack.add;
190: app_exception.raise_exception;
191: END IF;
192: check_parent_existance;
193: ELSIF (p_action = 'UPDATE') THEN
194: -- Call all the procedures related to Before Update.

Line 241: app_exception.raise_exception;

237: ELSE
238: fnd_message.set_name ('FND', 'SYSTEM-INVALID ARGS');
239: fnd_message.set_token ('ROUTINE', 'IGS_TR_STP_CTL_TYPE_PKG.INSERT_ROW');
240: igs_ge_msg_stack.add;
241: app_exception.raise_exception;
242: END IF;
243:
244: before_dml(
245: p_action => 'INSERT',

Line 312: app_exception.raise_exception;

308: IF (c1%notfound) THEN
309: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
310: igs_ge_msg_stack.add;
311: CLOSE c1;
312: app_exception.raise_exception;
313: RETURN;
314: END IF;
315: CLOSE c1;
316:

Line 324: app_exception.raise_exception;

320: NULL;
321: ELSE
322: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
323: igs_ge_msg_stack.add;
324: app_exception.raise_exception;
325: END IF;
326:
327: RETURN;
328:

Line 371: app_exception.raise_exception;

367: ELSE
368: fnd_message.set_name( 'FND', 'SYSTEM-INVALID ARGS');
369: fnd_message.set_token ('ROUTINE', 'IGS_TR_STP_CTL_TYPE_PKG.UPDATE_ROW');
370: igs_ge_msg_stack.add;
371: app_exception.raise_exception;
372: END IF;
373:
374: before_dml(
375: p_action => 'UPDATE',