DBA Data[Home] [Help]

APPS.IGS_PS_FACLTY_DEGRS_PKG dependencies on FND_MESSAGE

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

45: Open cur_old_ref_values;
46: Fetch cur_old_ref_values INTO old_references;
47: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
48: Close cur_old_ref_values;
49: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
50: IGS_GE_MSG_STACK.ADD;
51: App_Exception.Raise_Exception;
52: Return;
53: END IF;

Line 102: FND_MESSAGE.SET_NAME('IGS','IGS_GE_INVALID_VALUE');

98:
99: --If entered value in program column is not in upper case ,error out.
100: IF UPPER(column_name) = 'PROGRAM' OR column_name IS NULL THEN
101: IF new_references.program <> UPPER(new_references.program) THEN
102: FND_MESSAGE.SET_NAME('IGS','IGS_GE_INVALID_VALUE');
103: IGS_GE_MSG_STACK.ADD;
104: APP_EXCEPTION.RAISE_EXCEPTION;
105: END IF;
106: END IF;

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

124: new_references.degree_cd
125: ,new_references.person_id
126: ,new_references.program
127: ) THEN
128: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
129: IGS_GE_MSG_STACK.ADD;
130: app_exception.raise_exception;
131: END IF;
132: END Check_Uniqueness ;

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

149: NULL;
150: ELSIF NOT Igs_Ps_Degrees_Pkg.Get_PK_For_Validation (
151: new_references.degree_cd
152: ) THEN
153: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
154: IGS_GE_MSG_STACK.ADD;
155: App_Exception.Raise_Exception;
156: END IF;
157:

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

160: NULL;
161: ELSIF NOT Igs_Or_Institution_Pkg.Get_PK_For_Validation (
162: new_references.institution_cd
163: ) THEN
164: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
165: IGS_GE_MSG_STACK.ADD;
166: App_Exception.Raise_Exception;
167: END IF;
168:

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

171: NULL;
172: ELSIF NOT Igs_Pe_Person_Pkg.Get_PK_For_Validation (
173: new_references.person_id
174: ) THEN
175: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
176: IGS_GE_MSG_STACK.ADD;
177: App_Exception.Raise_Exception;
178: END IF;
179:

Line 287: Fnd_Message.Set_Name ('IGS', 'IGS_PS_FD_DEG_FK');

283: Open cur_rowid;
284: Fetch cur_rowid INTO lv_rowid;
285: IF (cur_rowid%FOUND) THEN
286: Close cur_rowid;
287: Fnd_Message.Set_Name ('IGS', 'IGS_PS_FD_DEG_FK');
288: IGS_GE_MSG_STACK.ADD;
289: App_Exception.Raise_Exception;
290: Return;
291: END IF;

Line 324: Fnd_Message.Set_Name ('IGS', 'IGS_PS_FD_INS_FK');

320: Open cur_rowid;
321: Fetch cur_rowid INTO lv_rowid;
322: IF (cur_rowid%FOUND) THEN
323: Close cur_rowid;
324: Fnd_Message.Set_Name ('IGS', 'IGS_PS_FD_INS_FK');
325: IGS_GE_MSG_STACK.ADD;
326: App_Exception.Raise_Exception;
327: Return;
328: END IF;

Line 361: Fnd_Message.Set_Name ('IGS', 'IGS_PS_FD_PE_FK');

357: Open cur_rowid;
358: Fetch cur_rowid INTO lv_rowid;
359: IF (cur_rowid%FOUND) THEN
360: Close cur_rowid;
361: Fnd_Message.Set_Name ('IGS', 'IGS_PS_FD_PE_FK');
362: IGS_GE_MSG_STACK.ADD;
363: App_Exception.Raise_Exception;
364: Return;
365: END IF;

Line 419: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');

415: -- Call all the procedures related to Before Insert.
416: Null;
417: IF Get_Pk_For_Validation(
418: new_references.faclty_degrd_id) THEN
419: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
420: IGS_GE_MSG_STACK.ADD;
421: App_Exception.Raise_Exception;
422: END IF;
423: Check_Uniqueness;

Line 439: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');

435: ELSIF (p_action = 'VALIDATE_INSERT') THEN
436: -- Call all the procedures related to Before Insert.
437: IF Get_PK_For_Validation (
438: new_references.faclty_degrd_id) THEN
439: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
440: IGS_GE_MSG_STACK.ADD;
441: App_Exception.Raise_Exception;
442: END IF;
443: Check_Uniqueness;

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

525: if X_LAST_UPDATE_LOGIN is NULL then
526: X_LAST_UPDATE_LOGIN := -1;
527: end if;
528: else
529: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
530: IGS_GE_MSG_STACK.ADD;
531: app_exception.raise_exception;
532: end if;
533: SELECT IGS_PS_FACLTY_DEGRD_ID_S.nextval INTO x_FACLTY_DEGRD_ID FROM dual;

Line 593: fnd_message.set_name ('IGS', 'IGS_SC_POLICY_EXCEPTION');

589: x_rowid => X_ROWID );
590: EXCEPTION
591: WHEN OTHERS THEN
592: IF (SQLCODE IN (-28115, -28113, -28111)) THEN
593: fnd_message.set_name ('IGS', 'IGS_SC_POLICY_EXCEPTION');
594: fnd_message.set_token ('ERR_CD', SQLCODE);
595: igs_ge_msg_stack.add;
596: igs_sc_gen_001.unset_ctx('R');
597: app_exception.raise_exception;

Line 594: fnd_message.set_token ('ERR_CD', SQLCODE);

590: EXCEPTION
591: WHEN OTHERS THEN
592: IF (SQLCODE IN (-28115, -28113, -28111)) THEN
593: fnd_message.set_name ('IGS', 'IGS_SC_POLICY_EXCEPTION');
594: fnd_message.set_token ('ERR_CD', SQLCODE);
595: igs_ge_msg_stack.add;
596: igs_sc_gen_001.unset_ctx('R');
597: app_exception.raise_exception;
598: ELSE

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

633: begin
634: open c1;
635: fetch c1 into tlinfo;
636: if (c1%notfound) then
637: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
638: IGS_GE_MSG_STACK.ADD;
639: close c1;
640: app_exception.raise_exception;
641: return;

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

648: AND (tlinfo.DEGREE_DATE = X_DEGREE_DATE)
649: ) then
650: null;
651: else
652: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
653: IGS_GE_MSG_STACK.ADD;
654: app_exception.raise_exception;
655: end if;
656: return;

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

693: if X_LAST_UPDATE_LOGIN is NULL then
694: X_LAST_UPDATE_LOGIN := -1;
695: end if;
696: else
697: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
698: IGS_GE_MSG_STACK.ADD;
699: app_exception.raise_exception;
700: end if;
701: Before_DML(

Line 729: fnd_message.set_name ('IGS', 'IGS_SC_POLICY_UPD_DEL_EXCEP');

725: LAST_UPDATED_BY = X_LAST_UPDATED_BY,
726: LAST_UPDATE_LOGIN = X_LAST_UPDATE_LOGIN
727: where ROWID = X_ROWID;
728: if (sql%notfound) then
729: fnd_message.set_name ('IGS', 'IGS_SC_POLICY_UPD_DEL_EXCEP');
730: igs_ge_msg_stack.add;
731: igs_sc_gen_001.unset_ctx('R');
732: app_exception.raise_exception;
733: end if;

Line 746: fnd_message.set_name ('IGS', 'IGS_SC_UPD_POLICY_EXCP');

742: );
743: EXCEPTION
744: WHEN OTHERS THEN
745: IF (SQLCODE = (-28115)) THEN
746: fnd_message.set_name ('IGS', 'IGS_SC_UPD_POLICY_EXCP');
747: fnd_message.set_token ('ERR_CD', SQLCODE);
748: igs_ge_msg_stack.add;
749: igs_sc_gen_001.unset_ctx('R');
750: app_exception.raise_exception;

Line 747: fnd_message.set_token ('ERR_CD', SQLCODE);

743: EXCEPTION
744: WHEN OTHERS THEN
745: IF (SQLCODE = (-28115)) THEN
746: fnd_message.set_name ('IGS', 'IGS_SC_UPD_POLICY_EXCP');
747: fnd_message.set_token ('ERR_CD', SQLCODE);
748: igs_ge_msg_stack.add;
749: igs_sc_gen_001.unset_ctx('R');
750: app_exception.raise_exception;
751: ELSE

Line 834: fnd_message.set_name ('IGS', 'IGS_SC_POLICY_UPD_DEL_EXCEP');

830: END IF;
831: delete from IGS_PS_FACLTY_DEGRS
832: where ROWID = X_ROWID;
833: if (sql%notfound) then
834: fnd_message.set_name ('IGS', 'IGS_SC_POLICY_UPD_DEL_EXCEP');
835: igs_ge_msg_stack.add;
836: igs_sc_gen_001.unset_ctx('R');
837: app_exception.raise_exception;
838: end if;