DBA Data[Home] [Help]

APPS.IGS_PS_UNIT_OFR_MODE_PKG dependencies on APP_EXCEPTION

Line 48: App_Exception.Raise_Exception;

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

Line 121: App_Exception.Raise_Exception;

117: new_references.version_number
118: ) THEN
119: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
120: IGS_GE_MSG_STACK.ADD;
121: App_Exception.Raise_Exception;
122: END IF;
123:
124: END Check_Parent_Existance;
125:

Line 198: App_Exception.Raise_Exception;

194: IF (cur_rowid%FOUND) THEN
195: Close cur_rowid;
196: Fnd_Message.Set_Name ('IGS', 'IGS_PS_UOM_UV_FK');
197: IGS_GE_MSG_STACK.ADD;
198: App_Exception.Raise_Exception;
199: Return;
200: END IF;
201: Close cur_rowid;
202:

Line 252: App_Exception.Raise_Exception;

248: new_references.offering_mode,
249: new_references.unit_cd) THEN
250: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
251: IGS_GE_MSG_STACK.ADD;
252: App_Exception.Raise_Exception;
253: END IF;
254: Check_Constraints;
255: Check_Parent_Existance;
256: ELSIF (p_action = 'UPDATE') THEN

Line 272: App_Exception.Raise_Exception;

268: new_references.offering_mode,
269: new_references.unit_cd) THEN
270: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
271: IGS_GE_MSG_STACK.ADD;
272: App_Exception.Raise_Exception;
273: END IF;
274: Check_Constraints;
275: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
276: Check_Constraints;

Line 358: app_exception.raise_exception;

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

Line 430: app_exception.raise_exception;

426: if (c1%notfound) then
427: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
428: IGS_GE_MSG_STACK.ADD;
429: close c1;
430: app_exception.raise_exception;
431: return;
432: end if;
433: close c1;
434: return;