DBA Data[Home] [Help]

APPS.IGS_AD_INTERFACE_PKG dependencies on FND_MESSAGE

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

94: OPEN cur_old_ref_values;
95: FETCH cur_old_ref_values INTO old_references;
96: IF ((cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT'))) THEN
97: CLOSE cur_old_ref_values;
98: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
99: igs_ge_msg_stack.add;
100: app_exception.raise_exception;
101: RETURN;
102: END IF;

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

206: -- The following code checks for check constraints on the Columns.
207: IF Upper(Column_Name) = 'STATUS' OR
208: Column_Name IS NULL THEN
209: IF NOT (new_references.status IN ('1','2','3','4')) 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 221: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');

217: IF Upper(Column_Name) = 'SEX' OR
218: Column_Name IS NULL THEN
219: IF new_references.sex IS NOT NULL AND NOT (igs_pe_pers_imp_001.validate_lookup_type_code
220: ('HZ_GENDER', UPPER(new_references.sex),222)) THEN
221: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
222: IGS_GE_MSG_STACK.ADD;
223: App_Exception.Raise_Exception;
224: END IF;
225: END IF;

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

227: -- The following code checks for check constraints on the Columns.
228: IF Upper(Column_Name) = 'RECORD_STATUS' OR
229: Column_Name IS NULL THEN
230: IF NOT (new_references.record_status IN ('1', '2', '3')) THEN
231: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
232: IGS_GE_MSG_STACK.ADD;
233: App_Exception.Raise_Exception;
234: END IF;
235: END IF;

Line 444: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');

440: IF (p_action = 'INSERT') THEN
441: -- Call all the procedures related to Before Insert.
442: IF Get_Pk_For_Validation(
443: new_references.interface_id) THEN
444: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
445: IGS_GE_MSG_STACK.ADD;
446: App_Exception.Raise_Exception;
447: END IF;
448: Check_Constraints;

Line 459: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');

455: ELSIF (p_action = 'VALIDATE_INSERT') THEN
456: -- Call all the procedures related to Before Insert.
457: IF Get_PK_For_Validation (
458: new_references.interface_id) THEN
459: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
460: IGS_GE_MSG_STACK.ADD;
461: App_Exception.Raise_Exception;
462: END IF;
463: Check_Constraints;

Line 584: fnd_message.set_name ('FND', 'SYSTEM-INVALID ARGS');

580: ELSE
581: x_program_update_date := SYSDATE;
582: END IF;
583: ELSE
584: fnd_message.set_name ('FND', 'SYSTEM-INVALID ARGS');
585: igs_ge_msg_stack.add;
586: app_exception.raise_exception;
587: END IF;
588:

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

933: BEGIN
934: OPEN c1;
935: FETCH c1 INTO tlinfo;
936: IF (c1%notfound) THEN
937: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
938: igs_ge_msg_stack.add;
939: CLOSE c1;
940: app_exception.raise_exception;
941: RETURN;

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

1000: AND ((tlinfo.attribute24 = x_attribute24) OR ((tlinfo.attribute24 IS NULL) AND (X_attribute24 IS NULL)))
1001: ) THEN
1002: NULL;
1003: ELSE
1004: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
1005: igs_ge_msg_stack.add;
1006: app_exception.raise_exception;
1007: END IF;
1008:

Line 1109: fnd_message.set_name( 'FND', 'SYSTEM-INVALID ARGS');

1105: IF (x_last_update_login IS NULL) THEN
1106: x_last_update_login := -1;
1107: END IF;
1108: ELSE
1109: fnd_message.set_name( 'FND', 'SYSTEM-INVALID ARGS');
1110: igs_ge_msg_stack.add;
1111: app_exception.raise_exception;
1112: END IF;
1113: