DBA Data[Home] [Help]

APPS.IGS_AD_PRCS_CAT_STEP_PKG dependencies on FND_MESSAGE

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

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

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

74: BEGIN
75: IF (p_inserting OR (p_updating AND (old_references.s_admission_step_type <> new_references.s_admission_step_type))) THEN
76: IF NOT IGS_TR_VAL_TRI.TRKP_VAL_TRI_TYPE (new_references.s_admission_step_type,
77: v_message_name) 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 106: Fnd_Message.Set_Name('IGS',v_message_name);

102: -- Validate the system admission step type closed indicator.
103: IF IGS_AD_VAL_APCS.admp_val_sasty_clsd (
104: new_references.s_admission_step_type,
105: v_message_name) = FALSE THEN
106: Fnd_Message.Set_Name('IGS',v_message_name);
107: IGS_GE_MSG_STACK.ADD;
108: App_Exception.Raise_Exception;
109: END IF;
110: END IF;

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

119: -- Validate the admission category closed indicator.
120: IF IGS_AD_VAL_ACCT.admp_val_ac_closed (
121: v_admission_cat,
122: v_message_name) = FALSE THEN
123: Fnd_Message.Set_Name('IGS',v_message_name);
124: IGS_GE_MSG_STACK.ADD;
125: App_Exception.Raise_Exception;
126: END IF;
127:

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

138: IF IGS_AD_VAL_APCS.admp_val_apcs_mndtry (
139: new_references.s_admission_step_type,
140: new_references.mandatory_step_ind,
141: v_message_name) = FALSE THEN
142: Fnd_Message.Set_Name('IGS',v_message_name);
143: IGS_GE_MSG_STACK.ADD;
144: App_Exception.Raise_Exception;
145: END IF;
146: END IF;

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

152: IF IGS_AD_VAL_APCS.admp_val_apcs_rstrct (
153: new_references.s_admission_step_type,
154: new_references.step_type_restriction_num,
155: v_message_name) = FALSE THEN
156: Fnd_Message.Set_Name('IGS',v_message_name);
157: IGS_GE_MSG_STACK.ADD;
158: App_Exception.Raise_Exception;
159: END IF;
160: END IF;

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

166: IF IGS_AD_VAL_APCS.admp_val_apcs_order (
167: new_references.s_admission_step_type,
168: new_references.step_order_num,
169: v_message_name) = FALSE THEN
170: Fnd_Message.Set_Name('IGS',v_message_name);
171: IGS_GE_MSG_STACK.ADD;
172: App_Exception.Raise_Exception;
173: END IF;
174: END IF;

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

206:
207: IF upper(column_name) = 'MANDATORY_STEP_IND' OR
208: column_name is null Then
209: IF new_references.mandatory_step_ind NOT IN ('Y','N') Then
210: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
211: IGS_GE_MSG_STACK.ADD;
212: App_Exception.Raise_Exception;
213: END IF;
214: END IF;

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

216: IF upper(column_name) = 'STEP_TYPE_RESTRICTION_NUM' OR
217: column_name is null Then
218: IF new_references.step_type_restriction_num < 1 OR
219: new_references.step_type_restriction_num > 99 Then
220: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
221: IGS_GE_MSG_STACK.ADD;
222: App_Exception.Raise_Exception;
223: END IF;
224: END IF;

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

226: IF upper(column_name) = 'STEP_ORDER_NUM' OR
227: column_name is null Then
228: IF new_references.step_order_num < 1 OR
229: new_references.step_order_num > 999 Then
230: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
231: IGS_GE_MSG_STACK.ADD;
232: App_Exception.Raise_Exception;
233: END IF;
234: END IF;

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

235: IF upper(column_name) = 'ADMISSION_CAT' OR
236: column_name is null Then
237: IF new_references.admission_cat <>
238: UPPER(new_references.admission_cat) Then
239: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
240: IGS_GE_MSG_STACK.ADD;
241: App_Exception.Raise_Exception;
242: END IF;
243: END IF;

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

244: IF upper(column_name) = 'MANDATORY_STEP_IND' OR
245: column_name is null Then
246: IF new_references.mandatory_step_ind <>
247: UPPER(new_references.mandatory_step_ind) Then
248: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
249: IGS_GE_MSG_STACK.ADD;
250: App_Exception.Raise_Exception;
251: END IF;
252: END IF;

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

253: IF upper(column_name) = 'S_ADMISSION_PROCESS_TYPE' OR
254: column_name is null Then
255: IF new_references.s_admission_process_type <>
256: UPPER(new_references.s_admission_process_type) Then
257: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
258: IGS_GE_MSG_STACK.ADD;
259: App_Exception.Raise_Exception;
260: END IF;
261: END IF;

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

262: IF upper(column_name) = 'S_ADMISSION_STEP_TYPE' OR
263: column_name is null Then
264: IF new_references.s_admission_step_type <>
265: UPPER(new_references.s_admission_step_type) Then
266: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
267: IGS_GE_MSG_STACK.ADD;
268: App_Exception.Raise_Exception;
269: END IF;
270: END IF;

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

272: IF upper(column_name) = 'STEP_GROUP_TYPE' OR
273: column_name is null Then
274: IF new_references.step_group_type <>
275: UPPER(new_references.step_group_type) Then
276: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
277: IGS_GE_MSG_STACK.ADD;
278: App_Exception.Raise_Exception;
279: END IF;
280: END IF;

Line 285: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MANDATORY_FLD');

281:
282: IF upper(column_name) = 'STEP_GROUP_TYPE' OR
283: column_name is null Then
284: IF new_references.step_group_type IS NULL Then
285: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MANDATORY_FLD');
286: IGS_GE_MSG_STACK.ADD;
287: App_Exception.Raise_Exception;
288: END IF;
289: END IF;

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

318: new_references.admission_cat,
319: new_references.s_admission_process_type,
320: 'N'
321: ) THEN
322: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
323: IGS_GE_MSG_STACK.ADD;
324: App_Exception.Raise_Exception;
325: END IF;
326: END IF;

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

338: 'ADMISSION_STEP_TYPE',
339: new_references.s_admission_step_type
340: ) THEN
341: CLOSE cur_s_tracking_type;
342: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
343: IGS_GE_MSG_STACK.ADD;
344: App_Exception.Raise_Exception;
345: END IF;
346: END IF;

Line 403: Fnd_Message.Set_Name ('IGS', 'IGS_AD_APCS_APC_FK');

399: Open cur_rowid;
400: Fetch cur_rowid INTO lv_rowid;
401: IF (cur_rowid%FOUND) THEN
402: Close cur_rowid;
403: Fnd_Message.Set_Name ('IGS', 'IGS_AD_APCS_APC_FK');
404: IGS_GE_MSG_STACK.ADD;
405: App_Exception.Raise_Exception;
406: Return;
407: END IF;

Line 430: Fnd_Message.Set_Name ('IGS', 'IGS_AD_APCS_SLV_FK');

426: Open cur_rowid;
427: Fetch cur_rowid INTO lv_rowid;
428: IF (cur_rowid%FOUND) THEN
429: Close cur_rowid;
430: Fnd_Message.Set_Name ('IGS', 'IGS_AD_APCS_SLV_FK');
431: IGS_GE_MSG_STACK.ADD;
432: App_Exception.Raise_Exception;
433: Return;
434: END IF;

Line 485: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');

481: new_references.s_admission_process_type,
482: new_references.s_admission_step_type,
483: new_references.step_group_type
484: ) THEN
485: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
486: IGS_GE_MSG_STACK.ADD;
487: App_Exception.Raise_Exception;
488: END IF;
489: Check_Constraints;

Line 505: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');

501: new_references.s_admission_process_type,
502: new_references.s_admission_step_type,
503: new_references.step_group_type
504: ) THEN
505: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
506: IGS_GE_MSG_STACK.ADD;
507: App_Exception.Raise_Exception;
508: END IF;
509: Check_Constraints;

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

564: if X_LAST_UPDATE_LOGIN is NULL then
565: X_LAST_UPDATE_LOGIN := -1;
566: end if;
567: else
568: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
569: IGS_GE_MSG_STACK.ADD;
570: app_exception.raise_exception;
571: end if;
572: Before_DML(p_action =>'INSERT',

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

651: open c1;
652: fetch c1 into tlinfo;
653: if (c1%notfound) then
654: close c1;
655: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
656: IGS_GE_MSG_STACK.ADD;
657: app_exception.raise_exception;
658: return;
659: end if;

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

668: AND (X_STEP_ORDER_NUM is null)))
669: ) then
670: null;
671: else
672: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
673: IGS_GE_MSG_STACK.ADD;
674: app_exception.raise_exception;
675: end if;
676: return;

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

711: if X_LAST_UPDATE_LOGIN is NULL then
712: X_LAST_UPDATE_LOGIN := -1;
713: end if;
714: else
715: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
716: IGS_GE_MSG_STACK.ADD;
717: app_exception.raise_exception;
718: end if;
719: Before_DML(p_action =>'UPDATE',