DBA Data[Home] [Help]

APPS.IGS_EN_ST_SPSHT_CTL_PKG dependencies on APP_EXCEPTION

Line 37: App_Exception.Raise_Exception;

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

Line 81: App_Exception.Raise_Exception;

77: v_message_name) = FALSE THEN
78:
79: Fnd_Message.Set_Name('IGS', v_message_name);
80: IGS_GE_MSG_STACK.ADD;
81: App_Exception.Raise_Exception;
82: END IF;
83: END IF;
84:
85:

Line 107: App_Exception.Raise_Exception;

103: Column_name is null THEN
104: IF new_references.delete_snapshot_ind NOT IN ( 'Y' , 'N' ) THEN
105: Fnd_Message.Set_Name ('IGS','IGS_GE_INVALID_VALUE');
106: IGS_GE_MSG_STACK.ADD;
107: App_Exception.Raise_Exception;
108: END IF;
109: END IF;
110:
111: END Check_constraints;

Line 187: App_Exception.Raise_Exception;

183: new_references.snapshot_dt_time
184: ) THEN
185: FND_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
186: IGS_GE_MSG_STACK.ADD;
187: App_Exception.Raise_Exception;
188: END if;
189: Check_constraints;
190: ELSIF (p_action = 'UPDATE') THEN
191: -- Call all the procedures related to Before Update.

Line 204: App_Exception.Raise_Exception;

200: new_references.snapshot_dt_time
201: ) THEN
202: FND_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
203: IGS_GE_MSG_STACK.ADD;
204: App_Exception.Raise_Exception;
205: END if;
206: Check_constraints;
207: ELSif (p_action = 'VALIDATE_UPDATE') THEN
208: Check_constraints;

Line 280: app_exception.raise_exception;

276: end if;
277: else
278: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
279: IGS_GE_MSG_STACK.ADD;
280: app_exception.raise_exception;
281: end if;
282: Before_DML (
283: p_action => 'INSERT',
284: x_rowid => X_ROWID,

Line 356: app_exception.raise_exception;

352: if (c1%notfound) then
353: close c1;
354: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
355: IGS_GE_MSG_STACK.ADD;
356: app_exception.raise_exception;
357: return;
358: end if;
359: close c1;
360:

Line 370: app_exception.raise_exception;

366: null;
367: else
368: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
369: IGS_GE_MSG_STACK.ADD;
370: app_exception.raise_exception;
371: end if;
372: return;
373: end LOCK_ROW;
374:

Line 406: app_exception.raise_exception;

402: end if;
403: else
404: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
405: IGS_GE_MSG_STACK.ADD;
406: app_exception.raise_exception;
407: end if;
408: Before_DML (
409: p_action => 'UPDATE',
410: x_rowid => X_ROWID,