DBA Data[Home] [Help]

APPS.IGS_GE_S_LOG_PKG dependencies on APP_EXCEPTION

Line 42: App_Exception.Raise_Exception;

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

Line 80: App_Exception.Raise_Exception;

76: IF upper(Column_name) = 'KEY' OR column_name is null then
77: IF new_references.key <> UPPER(new_references.key ) then
78: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
79: IGS_GE_MSG_STACK.ADD;
80: App_Exception.Raise_Exception;
81: END IF;
82: END IF;
83: IF upper(Column_name) = 'S_LOG_TYPE' OR column_name is null then
84: IF new_references.s_log_type <> UPPER(new_references.s_log_type) then

Line 87: App_Exception.Raise_Exception;

83: IF upper(Column_name) = 'S_LOG_TYPE' OR column_name is null then
84: IF new_references.s_log_type <> UPPER(new_references.s_log_type) then
85: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
86: IGS_GE_MSG_STACK.ADD;
87: App_Exception.Raise_Exception;
88: END IF;
89: END IF;
90: END Check_Constraints;
91:

Line 103: App_Exception.Raise_Exception;

99: ELSE
100: IF NOT IGS_LOOKUPS_VIEW_PKG.Get_PK_For_Validation ( 'LOG_TYPE',new_references.s_log_type ) THEN
101: Fnd_Message.Set_Name('FND','FORM_RECORD_DELETED');
102: IGS_GE_MSG_STACK.ADD;
103: App_Exception.Raise_Exception;
104: END IF;
105: END IF;
106:
107: END Check_Parent_Existance;

Line 182: App_Exception.Raise_Exception;

178: new_references.creation_dt
179: )THEN
180: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
181: IGS_GE_MSG_STACK.ADD;
182: App_Exception.Raise_Exception;
183: END IF;
184: Check_Constraints;
185: Check_Parent_Existance;
186: ELSIF (p_action = 'UPDATE') THEN

Line 200: App_Exception.Raise_Exception;

196: new_references.creation_dt
197: )THEN
198: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
199: IGS_GE_MSG_STACK.ADD;
200: App_Exception.Raise_Exception;
201: END IF;
202: Check_Constraints;
203: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
204: Check_Constraints;

Line 278: app_exception.raise_exception;

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

Line 353: app_exception.raise_exception;

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

Line 366: app_exception.raise_exception;

362: null;
363: else
364: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
365: IGS_GE_MSG_STACK.ADD;
366: app_exception.raise_exception;
367: end if;
368: return;
369: end LOCK_ROW;
370:

Line 402: app_exception.raise_exception;

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