DBA Data[Home] [Help]

APPS.IGR_I_PKG_ITEM_PKG dependencies on FND_MESSAGE

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

31: -- Populate Old Values.
32: Open cur_old_ref_values;
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: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
36: IGS_GE_MSG_STACK.ADD;
37: Close cur_old_ref_values;
38: App_Exception.Raise_Exception;
39: Return;

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

77:
78:
79: IF ((UPPER (column_name) = 'PACKAGE_ITEM_ID') OR (column_name IS NULL)) THEN
80: IF (new_references.package_item_id <> UPPER (new_references.package_item_id)) THEN
81: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
82: IGS_GE_MSG_STACK.ADD;
83: App_Exception.Raise_Exception;
84: END IF;
85: END IF;

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

85: END IF;
86:
87: IF ((UPPER (column_name) = 'PUBLISH_SS_IND') OR (column_name IS NULL)) THEN
88: IF new_references.publish_ss_ind NOT IN ( 'Y' , 'N' ) THEN
89: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
90: IGS_GE_MSG_STACK.ADD;
91: App_Exception.Raise_Exception;
92: END IF;
93: END IF;

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

113: OPEN c_ams_deliverables(new_references.package_item_id);
114: FETCH c_ams_deliverables INTO l_deliverable_id;
115: CLOSE c_ams_deliverables;
116: IF c_ams_deliverables%NOTFOUND THEN
117: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
118: IGS_GE_MSG_STACK.ADD;
119: App_Exception.Raise_Exception;
120: END IF;
121: END IF;

Line 183: Fnd_Message.Set_Name ('IGS', 'IGS_IN_EPI_AM_FK');

179:
180: Open cur_rowid;
181: Fetch cur_rowid INTO lv_rowid;
182: IF (cur_rowid%FOUND) THEN
183: Fnd_Message.Set_Name ('IGS', 'IGS_IN_EPI_AM_FK');
184: IGS_GE_MSG_STACK.ADD;
185: Close cur_rowid;
186: App_Exception.Raise_Exception;
187: Return;

Line 220: Fnd_message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');

216:
217: IF (p_action = 'INSERT') THEN
218: -- Call all the procedures related to Before Insert.
219: IF get_pk_for_validation(new_references.package_item_id) THEN
220: Fnd_message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
221: IGS_GE_MSG_STACK.ADD;
222: App_Exception.Raise_Exception;
223: END IF;
224:

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

231: -- Call all the procedures related to Before Delete.
232: Check_Child_Existance;
233: ELSIF (p_action = 'VALIDATE_INSERT') THEN
234: IF get_pk_for_validation (new_references.package_item_id) THEN
235: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
236: IGS_GE_MSG_STACK.ADD;
237: App_Exception.Raise_Exception;
238: END IF;
239: check_constraints;

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

270: if x_last_update_login is NULL then
271: x_last_update_login := -1;
272: end if;
273: else
274: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
275: IGS_GE_MSG_STACK.ADD;
276: app_exception.raise_exception;
277: end if;
278:

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

330: BEGIN
331: OPEN c1;
332: FETCH c1 INTO tlinfo;
333: IF (c1%NOTFOUND) THEN
334: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
335: IGS_GE_MSG_STACK.ADD;
336: CLOSE c1;
337: app_exception.raise_exception;
338: RETURN;

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

345: AND (X_PUBLISH_SS_IND is null)))
346: ) THEN
347: NULL;
348: ELSE
349: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
350: IGS_GE_MSG_STACK.ADD;
351: app_exception.raise_exception;
352: END IF;
353: RETURN;

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

376: IF x_last_update_login IS NULL THEN
377: x_last_update_login := -1;
378: END IF;
379: ELSE
380: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
381: IGS_GE_MSG_STACK.ADD;
382: app_exception.raise_exception;
383: END IF;
384: