DBA Data[Home] [Help]

APPS.IGS_PS_MEDIA_EQUIP_PKG dependencies on APP_EXCEPTION

Line 49: App_Exception.Raise_Exception;

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

Line 102: App_Exception.Raise_Exception;

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

Line 216: App_Exception.Raise_Exception;

212: IF Get_Pk_For_Validation(
213: new_references.media_code) THEN
214: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
215: IGS_GE_MSG_STACK.ADD;
216: App_Exception.Raise_Exception;
217: END IF;
218: Check_Constraints;
219: ELSIF (p_action = 'UPDATE') THEN
220: -- Call all the procedures related to Before Update.

Line 233: App_Exception.Raise_Exception;

229: IF Get_PK_For_Validation (
230: new_references.media_code) THEN
231: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
232: IGS_GE_MSG_STACK.ADD;
233: App_Exception.Raise_Exception;
234: END IF;
235: Check_Constraints;
236: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
237: Check_Constraints;

Line 318: app_exception.raise_exception;

314: end if;
315: else
316: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
317: IGS_GE_MSG_STACK.ADD;
318: app_exception.raise_exception;
319: end if;
320: Before_DML(
321: p_action=>'INSERT',
322: x_rowid=>X_ROWID,

Line 394: app_exception.raise_exception;

390: if (c1%notfound) then
391: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
392: IGS_GE_MSG_STACK.ADD;
393: close c1;
394: app_exception.raise_exception;
395: return;
396: end if;
397: close c1;
398: if ( ( tlinfo.MEDIA_DESCRIPTION = X_MEDIA_DESCRIPTION)

Line 405: app_exception.raise_exception;

401: null;
402: else
403: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
404: IGS_GE_MSG_STACK.ADD;
405: app_exception.raise_exception;
406: end if;
407: return;
408: end LOCK_ROW;
409: Procedure UPDATE_ROW (

Line 447: app_exception.raise_exception;

443: end if;
444: else
445: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
446: IGS_GE_MSG_STACK.ADD;
447: app_exception.raise_exception;
448: end if;
449: Before_DML(
450: p_action=>'UPDATE',
451: x_rowid=>X_ROWID,