DBA Data[Home] [Help]

APPS.IGS_OR_ORG_INST_TYPE_PKG dependencies on APP_EXCEPTION

Line 50: App_Exception.Raise_Exception;

46: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
47: Close cur_old_ref_values;
48: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
49: IGS_GE_MSG_STACK.ADD;
50: App_Exception.Raise_Exception;
51: Return;
52: END IF;
53: Close cur_old_ref_values;
54:

Line 105: App_Exception.Raise_Exception;

101: Column_Name IS NULL THEN
102: IF NOT (new_references.close_ind IN ('Y','N')) THEN
103: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
104: IGS_GE_MSG_STACK.ADD;
105: App_Exception.Raise_Exception;
106: END IF;
107: END IF;
108:
109:

Line 222: App_Exception.Raise_Exception;

218: IF Get_Pk_For_Validation(
219: new_references.institution_type) THEN
220: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
221: IGS_GE_MSG_STACK.ADD;
222: App_Exception.Raise_Exception;
223: END IF;
224: Check_Constraints;
225: ELSIF (p_action = 'UPDATE') THEN
226: -- Call all the procedures related to Before Update.

Line 239: App_Exception.Raise_Exception;

235: IF Get_PK_For_Validation (
236: new_references.institution_type) THEN
237: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
238: IGS_GE_MSG_STACK.ADD;
239: App_Exception.Raise_Exception;
240: END IF;
241: Check_Constraints;
242: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
243: Check_Constraints;

Line 326: app_exception.raise_exception;

322: end if;
323: else
324: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
325: IGS_GE_MSG_STACK.ADD;
326: app_exception.raise_exception;
327: end if;
328: Before_DML(
329: p_action=>'INSERT',
330: x_rowid=>X_ROWID,

Line 409: app_exception.raise_exception;

405: if (c1%notfound) then
406: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
407: IGS_GE_MSG_STACK.ADD;
408: close c1;
409: app_exception.raise_exception;
410: return;
411: end if;
412: close c1;
413: if ( ( tlinfo.DESCRIPTION = X_DESCRIPTION) AND (tlinfo.system_inst_type = x_system_inst_type)

Line 423: app_exception.raise_exception;

419: null;
420: else
421: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
422: IGS_GE_MSG_STACK.ADD;
423: app_exception.raise_exception;
424: end if;
425: return;
426: end LOCK_ROW;
427: Procedure UPDATE_ROW (

Line 466: app_exception.raise_exception;

462: end if;
463: else
464: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
465: IGS_GE_MSG_STACK.ADD;
466: app_exception.raise_exception;
467: end if;
468: Before_DML(
469: p_action=>'UPDATE',
470: x_rowid=>X_ROWID,