DBA Data[Home] [Help]

APPS.IGS_OR_ORG_NOTE_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 109: App_Exception.Raise_Exception;

105: Column_Name IS NULL THEN
106: IF NOT (new_references.unit_flag IN ('Y', 'N')) THEN
107: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
108: IGS_GE_MSG_STACK.ADD;
109: App_Exception.Raise_Exception;
110: END IF;
111: END IF;
112:
113: -- The following code checks for check constraints on the Columns.

Line 119: App_Exception.Raise_Exception;

115: Column_Name IS NULL THEN
116: IF NOT (new_references.location_flag IN ('Y', 'N')) THEN
117: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
118: IGS_GE_MSG_STACK.ADD;
119: App_Exception.Raise_Exception;
120: END IF;
121: END IF;
122:
123: -- The following code checks for check constraints on the Columns.

Line 129: App_Exception.Raise_Exception;

125: Column_Name IS NULL THEN
126: IF NOT (new_references.inst_flag IN ('Y', 'N')) THEN
127: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
128: IGS_GE_MSG_STACK.ADD;
129: App_Exception.Raise_Exception;
130: END IF;
131: END IF;
132:
133:

Line 242: App_Exception.Raise_Exception;

238: IF Get_Pk_For_Validation(
239: new_references.org_notes_type) THEN
240: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
241: IGS_GE_MSG_STACK.ADD;
242: App_Exception.Raise_Exception;
243: END IF;
244: Check_Constraints;
245: ELSIF (p_action = 'UPDATE') THEN
246: -- Call all the procedures related to Before Update.

Line 259: App_Exception.Raise_Exception;

255: IF Get_PK_For_Validation (
256: new_references.org_notes_type) THEN
257: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
258: IGS_GE_MSG_STACK.ADD;
259: App_Exception.Raise_Exception;
260: END IF;
261: Check_Constraints;
262: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
263: Check_Constraints;

Line 345: app_exception.raise_exception;

341: end if;
342: else
343: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
344: IGS_GE_MSG_STACK.ADD;
345: app_exception.raise_exception;
346: end if;
347: Before_DML(
348: p_action=>'INSERT',
349: x_rowid=>X_ROWID,

Line 428: app_exception.raise_exception;

424: if (c1%notfound) then
425: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
426: IGS_GE_MSG_STACK.ADD;
427: close c1;
428: app_exception.raise_exception;
429: return;
430: end if;
431: close c1;
432: if ( ( (tlinfo.NOTE_TYPE_DESCRIPTION = X_NOTE_TYPE_DESCRIPTION)

Line 449: app_exception.raise_exception;

445: null;
446: else
447: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
448: IGS_GE_MSG_STACK.ADD;
449: app_exception.raise_exception;
450: end if;
451: return;
452: end LOCK_ROW;
453: Procedure UPDATE_ROW (

Line 493: app_exception.raise_exception;

489: end if;
490: else
491: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
492: IGS_GE_MSG_STACK.ADD;
493: app_exception.raise_exception;
494: end if;
495: Before_DML(
496: p_action=>'UPDATE',
497: x_rowid=>X_ROWID,