DBA Data[Home] [Help]

APPS.IGS_AD_SS_PERSON_PKG dependencies on FND_MESSAGE

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

89: OPEN cur_old_ref_values;
90: FETCH cur_old_ref_values INTO old_references;
91: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
92: CLOSE cur_old_ref_values;
93: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
94: IGS_GE_MSG_STACK.ADD;
95: App_Exception.Raise_Exception;
96: RETURN;
97: END IF;

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

239: open cur_rowid(new_references.sex);
240: Fetch cur_rowid INTO lv_rowid;
241: IF (cur_rowid%NOTFOUND) THEN
242: Close cur_rowid;
243: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
244: IGS_GE_MSG_STACK.ADD;
245: App_Exception.Raise_Exception;
246: END IF;
247: IF (cur_rowid%ISOPEN) THEN

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

471: IF (p_action = 'INSERT') THEN
472: -- Call all the procedures related to Before Insert.
473: IF Get_PK_For_Validation (
474: new_references.person_id ) THEN
475: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
476: IGS_GE_MSG_STACK.ADD;
477: App_Exception.Raise_Exception;
478: END IF;
479: Check_Parent_Existance; -- if procedure present

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

485: NULL;
486: ELSIF (p_action = 'VALIDATE_INSERT') THEN
487: IF Get_PK_For_Validation (
488: new_references.person_id ) THEN
489: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
490: IGS_GE_MSG_STACK.ADD;
491: App_Exception.Raise_Exception;
492: END IF;
493: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

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

769: OPEN c_pe_rowid (X_PERSON_ID, X_PERSON_NUMBER);
770: FETCH c_pe_rowid INTO X_ROWID;
771: IF c_pe_rowid%NOTFOUND THEN
772: CLOSE c_pe_rowid;
773: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
774: IGS_GE_MSG_STACK.ADD;
775: App_Exception.Raise_Exception;
776: END IF;
777: CLOSE c_pe_rowid;