DBA Data[Home] [Help]

APPS.IGS_EN_ENROLMENT_CAT_PKG dependencies on FND_MESSAGE

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

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

Line 80: fnd_message.set_name('IGS',v_message_name);

76: IF IGS_EN_VAL_EC.enrp_val_ec_clsd_upd (
77: new_references.enrolment_cat,
78: new_references.closed_ind,
79: v_message_name) = FALSE THEN
80: fnd_message.set_name('IGS',v_message_name);
81: IGS_GE_MSG_STACK.ADD;
82: app_exception.raise_exception;
83: END IF;
84: END IF;

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

102: IF upper(column_name) = 'CLOSED_IND' OR
103: column_name is null then
104: if new_references.closed_ind NOT IN ('Y','N') OR
105: new_references.closed_ind <> upper(new_references.closed_ind) then
106: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
107: IGS_GE_MSG_STACK.ADD;
108: App_Exception.Raise_Exception;
109: end if;
110: end if;

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

111:
112: IF upper(column_name) = 'ENROLMENT_CAT' OR
113: column_name is null then
114: if new_references.enrolment_cat <> upper(new_references.enrolment_cat) then
115: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
116: IGS_GE_MSG_STACK.ADD;
117: App_Exception.Raise_Exception;
118: end if;
119: end if;

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

203: -- Call all the procedures related to Before Insert.
204: IF Get_PK_For_Validation (
205: new_references.enrolment_cat
206: ) then
207: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
208: IGS_GE_MSG_STACK.ADD;
209: App_Exception.Raise_Exception;
210: end if;
211: Check_constraints;

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

220: ELSIF (p_action = 'VALIDATE_INSERT') then
221: IF Get_PK_For_Validation (
222: new_references.enrolment_cat
223: ) then
224: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
225: IGS_GE_MSG_STACK.ADD;
226: App_Exception.Raise_Exception;
227: end if;
228: Check_constraints;

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

280: if X_LAST_UPDATE_LOGIN is NULL then
281: X_LAST_UPDATE_LOGIN := -1;
282: end if;
283: else
284: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
285: IGS_GE_MSG_STACK.ADD;
286: app_exception.raise_exception;
287: end if;
288: Before_DML (

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

348: open c1;
349: fetch c1 into tlinfo;
350: if (c1%notfound) then
351: close c1;
352: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
353: IGS_GE_MSG_STACK.ADD;
354: app_exception.raise_exception;
355: return;
356: end if;

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

360: AND (tlinfo.CLOSED_IND = X_CLOSED_IND)
361: ) then
362: null;
363: else
364: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
365: IGS_GE_MSG_STACK.ADD;
366: app_exception.raise_exception;
367: end if;
368: return;

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

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

Line 501: FND_MESSAGE.SET_NAME('IGS','IGS_FI_DEL_NOT_ALLWD');

497: -- removed. Hence to avoid data inconsistency the deletion should not
498: -- be done. The record should be closed instead by checking the closed
499: -- indicator.
500:
501: FND_MESSAGE.SET_NAME('IGS','IGS_FI_DEL_NOT_ALLWD');
502: igs_ge_msg_stack.add;
503: APP_EXCEPTION.RAISE_EXCEPTION;
504:
505: END beforerowdelete;