DBA Data[Home] [Help]

APPS.IGS_PS_NOTE_TYPE_PKG dependencies on APP_EXCEPTION

Line 38: App_Exception.Raise_Exception;

34: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT')) THEN
35: Close cur_old_ref_values;
36: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
37: IGS_GE_MSG_STACK.ADD;
38: App_Exception.Raise_Exception;
39: Return;
40: END IF;
41: Close cur_old_ref_values;
42:

Line 75: App_Exception.Raise_Exception;

71: IF new_references.crs_note_type<> UPPER(new_references.crs_note_type)
72: THEN
73: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
74: IGS_GE_MSG_STACK.ADD;
75: App_Exception.Raise_Exception;
76: END IF;
77: END IF;
78: END Check_Constraints;
79:

Line 181: App_Exception.Raise_Exception;

177: new_references.crs_note_type
178: ) THEN
179: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
180: IGS_GE_MSG_STACK.ADD;
181: App_Exception.Raise_Exception;
182: END IF;
183: Check_Constraints;
184: ELSIF (p_action = 'UPDATE') THEN
185: -- Call all the procedures related to Before Update.

Line 198: App_Exception.Raise_Exception;

194: new_references.crs_note_type
195: ) THEN
196: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
197: IGS_GE_MSG_STACK.ADD;
198: App_Exception.Raise_Exception;
199: END IF;
200: Check_Constraints;
201: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
202: Check_Constraints;

Line 248: app_exception.raise_exception;

244: end if;
245: else
246: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
247: IGS_GE_MSG_STACK.ADD;
248: app_exception.raise_exception;
249: end if;
250:
251: Before_DML (p_action => 'INSERT',
252: x_rowid => X_ROWID,

Line 314: app_exception.raise_exception;

310: if (c1%notfound) then
311: close c1;
312: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
313: IGS_GE_MSG_STACK.ADD;
314: app_exception.raise_exception;
315: return;
316: end if;
317: close c1;
318:

Line 325: app_exception.raise_exception;

321: null;
322: else
323: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
324: IGS_GE_MSG_STACK.ADD;
325: app_exception.raise_exception;
326: end if;
327: return;
328: end LOCK_ROW;
329:

Line 356: app_exception.raise_exception;

352: end if;
353: else
354: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
355: IGS_GE_MSG_STACK.ADD;
356: app_exception.raise_exception;
357: end if;
358:
359: Before_DML (p_action => 'UPDATE',
360: x_rowid => X_ROWID,