DBA Data[Home] [Help]

APPS.IGS_EN_CAT_MAPPING_PKG dependencies on FND_MESSAGE

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

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

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

74: -- Validate the enrolment category closed indicator.
75: IF IGS_AD_VAL_ECM.enrp_val_ec_closed (
76: new_references.enrolment_cat,
77: v_message_name) = FALSE THEN
78: fnd_message.set_name('IGS',v_message_name);
79: IGS_GE_MSG_STACK.ADD;
80: app_exception.raise_exception;
81: END IF;
82: END IF;

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

89: -- Validate the admission category closed indicator.
90: IF IGS_AD_VAL_ACCT.admp_val_ac_closed (
91: v_admission_cat,
92: v_message_name) = FALSE THEN
93: fnd_message.set_name('IGS',v_message_name);
94: IGS_GE_MSG_STACK.ADD;
95: app_exception.raise_exception;
96: END IF;
97:

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

116: IF upper(column_name) = 'DFLT_CAT_IND' OR
117: column_name is null then
118: if new_references.dflt_cat_ind NOT IN ('Y','N') OR
119: new_references.dflt_cat_ind <> upper(new_references.dflt_cat_ind) then
120: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
121: IGS_GE_MSG_STACK.ADD;
122: App_Exception.Raise_Exception;
123: end if;
124: end if;

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

124: end if;
125: IF upper(column_name) = 'ADMISSION_CAT' OR
126: column_name is null then
127: if new_references.admission_cat <> upper(new_references.admission_cat) then
128: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
129: IGS_GE_MSG_STACK.ADD;
130: App_Exception.Raise_Exception;
131: end if;
132: end if;

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

132: end if;
133: IF upper(column_name) = 'ENROLMENT_CAT' OR
134: column_name is null then
135: if new_references.enrolment_cat <> upper(new_references.enrolment_cat) then
136: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
137: IGS_GE_MSG_STACK.ADD;
138: App_Exception.Raise_Exception;
139: end if;
140: end if;

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

150: if not IGS_AD_CAT_PKG.Get_PK_For_Validation (
151: new_references.admission_cat ,
152: 'N'
153: )then
154: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
155: IGS_GE_MSG_STACK.ADD;
156: App_Exception.Raise_Exception;
157: end if;
158: END IF;

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

163: ELSE
164: if not IGS_EN_ENROLMENT_CAT_PKG.Get_PK_For_Validation (
165: new_references.enrolment_cat
166: ) then
167: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
168: IGS_GE_MSG_STACK.ADD;
169: App_Exception.Raise_Exception;
170: end if;
171: END IF;

Line 220: Fnd_Message.Set_Name ('IGS', 'IGS_EN_ECM_AC_FK');

216: Open cur_rowid;
217: Fetch cur_rowid INTO lv_rowid;
218: IF (cur_rowid%FOUND) THEN
219: Close cur_rowid;
220: Fnd_Message.Set_Name ('IGS', 'IGS_EN_ECM_AC_FK');
221: IGS_GE_MSG_STACK.ADD;
222: App_Exception.Raise_Exception;
223: Return;
224: END IF;

Line 246: Fnd_Message.Set_Name ('IGS', 'IGS_EN_ECM_EC_FK');

242: Open cur_rowid;
243: Fetch cur_rowid INTO lv_rowid;
244: IF (cur_rowid%FOUND) THEN
245: Close cur_rowid;
246: Fnd_Message.Set_Name ('IGS', 'IGS_EN_ECM_EC_FK');
247: IGS_GE_MSG_STACK.ADD;
248: App_Exception.Raise_Exception;
249: Return;
250: END IF;

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

286: new_references.enrolment_cat,
287: new_references.admission_cat
288: ) then
289:
290: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
291: IGS_GE_MSG_STACK.ADD;
292: App_Exception.Raise_Exception;
293: end if;
294: Check_constraints;

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

306: new_references.enrolment_cat,
307: new_references.admission_cat
308: ) then
309:
310: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
311: IGS_GE_MSG_STACK.ADD;
312: App_Exception.Raise_Exception;
313: end if;
314: Check_constraints;

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

367: if X_LAST_UPDATE_LOGIN is NULL then
368: X_LAST_UPDATE_LOGIN := -1;
369: end if;
370: else
371: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
372: IGS_GE_MSG_STACK.ADD;
373: app_exception.raise_exception;
374: end if;
375: Before_DML (

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

434: open c1;
435: fetch c1 into tlinfo;
436: if (c1%notfound) then
437: close c1;
438: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
439: IGS_GE_MSG_STACK.ADD;
440: app_exception.raise_exception;
441: return;
442: end if;

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

445: if ( (tlinfo.DFLT_CAT_IND = X_DFLT_CAT_IND)
446: ) then
447: null;
448: else
449: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
450: IGS_GE_MSG_STACK.ADD;
451: app_exception.raise_exception;
452: end if;
453: return;

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

477: if X_LAST_UPDATE_LOGIN is NULL then
478: X_LAST_UPDATE_LOGIN := -1;
479: end if;
480: else
481: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
482: IGS_GE_MSG_STACK.ADD;
483: app_exception.raise_exception;
484: end if;
485: Before_DML (