DBA Data[Home] [Help]

APPS.IGS_PR_RU_CAT_PKG dependencies on FND_MESSAGE

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

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

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

81: new_references.progression_rule_cat,
82: old_references.s_rule_call_cd,
83: new_references.s_rule_call_cd,
84: v_message_name) = FALSE THEN
85: Fnd_Message.Set_Name('IGS',v_message_name);
86: IGS_GE_MSG_STACK.ADD;
87: App_Exception.Raise_Exception;
88: END IF;
89: END IF;

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

92: (p_updating AND new_references.s_rule_call_cd <> old_references.s_rule_call_cd) THEN
93: IF IGS_PR_VAL_PRGC.prgp_val_src_prg (
94: new_references.s_rule_call_cd,
95: v_message_name) = FALSE THEN
96: Fnd_Message.Set_Name('IGS',v_message_name);
97: IGS_GE_MSG_STACK.ADD;
98: App_Exception.Raise_Exception;
99: END IF;
100: END IF;

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

110: ELSE
111: IF NOT IGS_RU_CALL_PKG.Get_PK_For_Validation (
112: new_references.s_rule_call_cd
113: ) THEN
114: Fnd_Message.Set_Name('FND','FORM_RECORD_DELETED');
115: IGS_GE_MSG_STACK.ADD;
116: App_Exception.Raise_Exception;
117:
118: END IF;

Line 179: Fnd_Message.Set_Name ('IGS', 'IGS_PR_PRGC_SRC_FK');

175:
176: Open cur_rowid;
177: Fetch cur_rowid INTO lv_rowid;
178: IF (cur_rowid%FOUND) THEN
179: Fnd_Message.Set_Name ('IGS', 'IGS_PR_PRGC_SRC_FK');
180: IGS_GE_MSG_STACK.ADD;
181: Close cur_rowid;
182: App_Exception.Raise_Exception;
183: Return;

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

225: BeforeRowInsertUpdate1 ( p_inserting => TRUE );
226: Check_Parent_Existance;
227: IF GET_PK_FOR_VALIDATION(
228: new_references.progression_rule_cat) THEN
229: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
230: IGS_GE_MSG_STACK.ADD;
231: App_Exception.Raise_Exception;
232:
233: END IF;

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

243:
244: ELSIF (p_action = 'VALIDATE_INSERT') THEN
245: IF GET_PK_FOR_VALIDATION(
246: new_references.progression_rule_cat) THEN
247: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
248: IGS_GE_MSG_STACK.ADD;
249: App_Exception.Raise_Exception;
250:
251: END IF;

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

294: if X_LAST_UPDATE_LOGIN is NULL then
295: X_LAST_UPDATE_LOGIN := -1;
296: end if;
297: else
298: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
299: IGS_GE_MSG_STACK.ADD;
300: app_exception.raise_exception;
301: end if;
302:

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

373: begin
374: open c1;
375: fetch c1 into tlinfo;
376: if (c1%notfound) then
377: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
378: IGS_GE_MSG_STACK.ADD;
379: close c1;
380: app_exception.raise_exception;
381: return;

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

392: OR (( tlinfo.POSITIVE_RULE_IND IS NULL) AND (X_POSITIVE_RULE_IND IS NULL)))
393: ) then
394: null;
395: else
396: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
397: IGS_GE_MSG_STACK.ADD;
398: app_exception.raise_exception;
399: end if;
400: return;

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

427: if X_LAST_UPDATE_LOGIN is NULL then
428: X_LAST_UPDATE_LOGIN := -1;
429: end if;
430: else
431: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
432: IGS_GE_MSG_STACK.ADD;
433: app_exception.raise_exception;
434: end if;
435:

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

541:
542: IF UPPER(column_name) = 'CLOSED_IND' OR column_name IS NULL THEN
543:
544: IF new_references.closed_ind NOT IN ('Y','N') THEN
545: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
546: IGS_GE_MSG_STACK.ADD;
547: App_Exception.Raise_Exception;
548: END IF;
549: END IF;

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

551:
552:
553: IF UPPER(column_name) = 'PROGRESSION_RULE_CAT' OR column_name IS NULL THEN
554: IF new_references.progression_rule_cat <> UPPER(new_references.progression_rule_cat) THEN
555: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
556: IGS_GE_MSG_STACK.ADD;
557: App_Exception.Raise_Exception;
558: END IF;
559: END IF;

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

559: END IF;
560:
561: IF UPPER(column_name) = 'S_RULE_CALL_CD' OR column_name IS NULL THEN
562: IF new_references.s_rule_call_cd <> UPPER(new_references.s_rule_call_cd) THEN
563: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
564: IGS_GE_MSG_STACK.ADD;
565: App_Exception.Raise_Exception;
566: END IF;
567: END IF;