DBA Data[Home] [Help]

APPS.IGS_AD_TEST_TYPE_PKG dependencies on FND_MESSAGE

Line 38: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');

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

Line 73: Fnd_Message.Set_Name('IGS', v_message_name);

69: BEGIN
70: IF (p_inserting OR (p_updating AND (old_references.step_code <> new_references.step_code))) THEN
71: IF NOT IGS_TR_VAL_TRI.val_tr_step_ctlg (new_references.step_code,
72: v_message_name) THEN
73: Fnd_Message.Set_Name('IGS', v_message_name);
74: IGS_GE_MSG_STACK.ADD;
75: App_Exception.Raise_Exception;
76: END IF;
77: END IF;

Line 99: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');

95: END IF;
96:
97: IF upper(Column_Name) = 'ADMISSION_TEST_TYPE' OR Column_Name IS NULL THEN
98: IF new_references.admission_test_type <> UPPER(new_references.admission_test_type) THEN
99: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
100: IGS_GE_MSG_STACK.ADD;
101: App_Exception.Raise_Exception;
102: END IF;
103: END IF;

Line 108: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');

104:
105:
106: IF upper(Column_Name) = 'CLOSED_IND' OR Column_Name IS NULL THEN
107: IF new_references.closed_ind NOT IN ('Y','N') THEN
108: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
109: IGS_GE_MSG_STACK.ADD;
110: App_Exception.Raise_Exception;
111: END IF;
112: END IF;

Line 116: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');

112: END IF;
113:
114: IF upper(Column_Name) = 'SCORE_TYPE' OR Column_Name IS NULL THEN
115: IF new_references.score_type NOT IN ('OFFICIAL','OTHER','SELF_REPORT','UNOFFICIAL') THEN
116: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
117: IGS_GE_MSG_STACK.ADD;
118: App_Exception.Raise_Exception;
119: END IF;
120: END IF;

Line 200: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');

196: IF (p_action = 'INSERT') THEN
197: -- Call all the procedures related to Before Insert.
198: BeforeRowInsertUpdate(p_inserting => TRUE);
199: IF Get_PK_For_Validation (new_references.admission_test_type) THEN
200: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
201: IGS_GE_MSG_STACK.ADD;
202: App_Exception.Raise_Exception;
203: END IF;
204: Check_Constraints;

Line 214: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');

210: -- Call all the procedures related to Before Delete.
211: Check_Child_Existance;
212: ELSIF (p_action = 'VALIDATE_INSERT') THEN
213: IF Get_PK_For_Validation (new_references.admission_test_type) THEN
214: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
215: IGS_GE_MSG_STACK.ADD;
216: App_Exception.Raise_Exception;
217: END IF;
218: Check_Constraints;

Line 266: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');

262: if X_LAST_UPDATE_LOGIN is NULL then
263: X_LAST_UPDATE_LOGIN := -1;
264: end if;
265: else
266: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
267: IGS_GE_MSG_STACK.ADD;
268: app_exception.raise_exception;
269: end if;
270:

Line 347: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');

343: open c1;
344: fetch c1 into tlinfo;
345: if (c1%notfound) then
346: close c1;
347: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
348: IGS_GE_MSG_STACK.ADD;
349: app_exception.raise_exception;
350: return;
351: end if;

Line 363: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');

359: AND (X_STEP_CODE IS NULL)))
360: ) then
361: null;
362: else
363: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
364: IGS_GE_MSG_STACK.ADD;
365: app_exception.raise_exception;
366: end if;
367: return;

Line 397: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');

393: if X_LAST_UPDATE_LOGIN is NULL then
394: X_LAST_UPDATE_LOGIN := -1;
395: end if;
396: else
397: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
398: IGS_GE_MSG_STACK.ADD;
399: app_exception.raise_exception;
400: end if;
401: