DBA Data[Home] [Help]

APPS.IGS_GE_S_LOG_ENTRY_PKG dependencies on APP_EXCEPTION

Line 46: App_Exception.Raise_Exception;

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

Line 86: App_Exception.Raise_Exception;

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

Line 107: App_Exception.Raise_Exception;

103: new_references.creation_dt
104: )THEN
105: Fnd_Message.Set_Name('FND','FORM_RECORD_DELETED');
106: IGS_GE_MSG_STACK.ADD;
107: App_Exception.Raise_Exception;
108: END IF;
109:
110: END IF;
111:

Line 165: App_Exception.Raise_Exception;

161: IF (cur_rowid%FOUND) THEN
162: Close cur_rowid;
163: Fnd_Message.Set_Name ('IGS', 'IGS_GE_SLE_LOG_FK');
164: IGS_GE_MSG_STACK.ADD;
165: App_Exception.Raise_Exception;
166: Return;
167: END IF;
168: Close cur_rowid;
169:

Line 215: App_Exception.Raise_Exception;

211: new_references.sequence_number
212: )THEN
213: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
214: IGS_GE_MSG_STACK.ADD;
215: App_Exception.Raise_Exception;
216: END IF ;
217: Check_Constraints;
218: Check_Parent_Existance;
219: ELSIF (p_action = 'UPDATE') THEN

Line 234: App_Exception.Raise_Exception;

230: new_references.sequence_number
231: )THEN
232: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
233: IGS_GE_MSG_STACK.ADD;
234: App_Exception.Raise_Exception;
235: END IF ;
236: Check_Constraints;
237: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
238: Check_Constraints;

Line 317: app_exception.raise_exception;

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

Line 407: app_exception.raise_exception;

403: if (c1%notfound) then
404: close c1;
405: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
406: IGS_GE_MSG_STACK.ADD;
407: app_exception.raise_exception;
408: return;
409: end if;
410: close c1;
411:

Line 424: app_exception.raise_exception;

420: null;
421: else
422: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
423: IGS_GE_MSG_STACK.ADD;
424: app_exception.raise_exception;
425: end if;
426: return;
427: end LOCK_ROW;
428:

Line 463: app_exception.raise_exception;

459: end if;
460: else
461: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
462: IGS_GE_MSG_STACK.ADD;
463: app_exception.raise_exception;
464: end if;
465: Before_DML (
466: p_action => 'UPDATE',
467: x_rowid => X_ROWID,