DBA Data[Home] [Help]

APPS.IGS_OR_ORG_INST_TYPE_PKG dependencies on IGS_GE_MSG_STACK

Line 49: IGS_GE_MSG_STACK.ADD;

45: Fetch cur_old_ref_values INTO old_references;
46: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
47: Close cur_old_ref_values;
48: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
49: IGS_GE_MSG_STACK.ADD;
50: App_Exception.Raise_Exception;
51: Return;
52: END IF;
53: Close cur_old_ref_values;

Line 104: IGS_GE_MSG_STACK.ADD;

100: IF Upper(Column_Name) = 'CLOSE_IND' OR
101: Column_Name IS NULL THEN
102: IF NOT (new_references.close_ind IN ('Y','N')) THEN
103: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
104: IGS_GE_MSG_STACK.ADD;
105: App_Exception.Raise_Exception;
106: END IF;
107: END IF;
108:

Line 221: IGS_GE_MSG_STACK.ADD;

217: Null;
218: IF Get_Pk_For_Validation(
219: new_references.institution_type) THEN
220: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
221: IGS_GE_MSG_STACK.ADD;
222: App_Exception.Raise_Exception;
223: END IF;
224: Check_Constraints;
225: ELSIF (p_action = 'UPDATE') THEN

Line 238: IGS_GE_MSG_STACK.ADD;

234: -- Call all the procedures related to Before Insert.
235: IF Get_PK_For_Validation (
236: new_references.institution_type) THEN
237: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
238: IGS_GE_MSG_STACK.ADD;
239: App_Exception.Raise_Exception;
240: END IF;
241: Check_Constraints;
242: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 325: IGS_GE_MSG_STACK.ADD;

321: X_LAST_UPDATE_LOGIN := -1;
322: end if;
323: else
324: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
325: IGS_GE_MSG_STACK.ADD;
326: app_exception.raise_exception;
327: end if;
328: Before_DML(
329: p_action=>'INSERT',

Line 407: IGS_GE_MSG_STACK.ADD;

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

Line 422: IGS_GE_MSG_STACK.ADD;

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

Line 465: IGS_GE_MSG_STACK.ADD;

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