DBA Data[Home] [Help]

APPS.IGR_I_PKG_ITEM_CRM_PKG dependencies on FND_MESSAGE

Line 55: fnd_message.set_name ('FND', 'SYSTEM-INVALID ARGS');

51: IF (x_last_update_login IS NULL) THEN
52: x_last_update_login := -1;
53: END IF;
54: ELSE
55: fnd_message.set_name ('FND', 'SYSTEM-INVALID ARGS');
56: igs_ge_msg_stack.add;
57: app_exception.raise_exception;
58: END IF;
59: -- The following code would ensure the profiles IGS: AMS Categeory, IGS: AMS Category Sub Type

Line 63: fnd_message.set_name('IGS','IGR_NO_DEF_PROF');

59: -- The following code would ensure the profiles IGS: AMS Categeory, IGS: AMS Category Sub Type
60: -- are IGS: JTF Resource are set before the user tries to insert a new record.
61: IF(fnd_profile.value('IGR_AMS_DEFAULT_CAT') IS NULL OR fnd_profile.value('IGR_AMS_DEFAULT_SUBCAT') IS NULL
62: OR fnd_profile.value('IGR_JTF_DEFAULT_RESOURCE') IS NULL)THEN
63: fnd_message.set_name('IGS','IGR_NO_DEF_PROF');
64: igs_ge_msg_stack.add;
65: app_exception.raise_exception;
66: END IF;
67: --Test for Uniqueness on Information Type and Package Item associated to the

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

68: --Information Type.
69: OPEN c; FETCH c INTO l_var;
70: IF(c%FOUND)THEN
71: CLOSE c;
72: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
73: igs_ge_msg_stack.add;
74: app_Exception.Raise_Exception;
75: ELSE
76: CLOSE c;

Line 237: fnd_message.set_name( 'FND', 'SYSTEM-INVALID ARGS');

233: IF (x_last_update_login IS NULL) THEN
234: x_last_update_login := -1;
235: END IF;
236: ELSE
237: fnd_message.set_name( 'FND', 'SYSTEM-INVALID ARGS');
238: igs_ge_msg_stack.add;
239: app_exception.raise_exception;
240: END IF;
241: ams_deliverable_pvt.init_deliv_rec(l_deliv_rec);