DBA Data[Home] [Help]

APPS.IGS_GE_S_LOG_ENTRY_PKG dependencies on IGS_GE_MSG_STACK

Line 45: IGS_GE_MSG_STACK.ADD;

41: Fetch cur_old_ref_values INTO old_references;
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;

Line 85: IGS_GE_MSG_STACK.ADD;

81: END IF;
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:

Line 106: IGS_GE_MSG_STACK.ADD;

102: new_references.s_log_type,
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;

Line 164: IGS_GE_MSG_STACK.ADD;

160: Fetch cur_rowid INTO lv_rowid;
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;

Line 214: IGS_GE_MSG_STACK.ADD;

210: new_references.creation_dt ,
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;

Line 233: IGS_GE_MSG_STACK.ADD;

229: new_references.creation_dt ,
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

Line 316: IGS_GE_MSG_STACK.ADD;

312: end if;
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',

Line 406: IGS_GE_MSG_STACK.ADD;

402: fetch c1 into tlinfo;
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;

Line 423: IGS_GE_MSG_STACK.ADD;

419: ) then
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;

Line 462: IGS_GE_MSG_STACK.ADD;

458: X_LAST_UPDATE_LOGIN := -1;
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',