DBA Data[Home] [Help]

APPS.IGS_PS_NOTE_TYPE_PKG dependencies on IGS_GE_MSG_STACK

Line 37: IGS_GE_MSG_STACK.ADD;

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

Line 74: IGS_GE_MSG_STACK.ADD;

70: column_name is null THEN
71: IF new_references.crs_note_type<> UPPER(new_references.crs_note_type)
72: THEN
73: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
74: IGS_GE_MSG_STACK.ADD;
75: App_Exception.Raise_Exception;
76: END IF;
77: END IF;
78: END Check_Constraints;

Line 180: IGS_GE_MSG_STACK.ADD;

176: IF Get_PK_For_Validation(
177: new_references.crs_note_type
178: ) THEN
179: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
180: IGS_GE_MSG_STACK.ADD;
181: App_Exception.Raise_Exception;
182: END IF;
183: Check_Constraints;
184: ELSIF (p_action = 'UPDATE') THEN

Line 197: IGS_GE_MSG_STACK.ADD;

193: IF Get_PK_For_Validation(
194: new_references.crs_note_type
195: ) THEN
196: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
197: IGS_GE_MSG_STACK.ADD;
198: App_Exception.Raise_Exception;
199: END IF;
200: Check_Constraints;
201: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 247: IGS_GE_MSG_STACK.ADD;

243: X_LAST_UPDATE_LOGIN := -1;
244: end if;
245: else
246: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
247: IGS_GE_MSG_STACK.ADD;
248: app_exception.raise_exception;
249: end if;
250:
251: Before_DML (p_action => 'INSERT',

Line 313: IGS_GE_MSG_STACK.ADD;

309: fetch c1 into tlinfo;
310: if (c1%notfound) then
311: close c1;
312: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
313: IGS_GE_MSG_STACK.ADD;
314: app_exception.raise_exception;
315: return;
316: end if;
317: close c1;

Line 324: IGS_GE_MSG_STACK.ADD;

320: ) then
321: null;
322: else
323: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
324: IGS_GE_MSG_STACK.ADD;
325: app_exception.raise_exception;
326: end if;
327: return;
328: end LOCK_ROW;

Line 355: IGS_GE_MSG_STACK.ADD;

351: X_LAST_UPDATE_LOGIN := -1;
352: end if;
353: else
354: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
355: IGS_GE_MSG_STACK.ADD;
356: app_exception.raise_exception;
357: end if;
358:
359: Before_DML (p_action => 'UPDATE',