DBA Data[Home] [Help]

APPS.IGS_PR_MILESTONE_HST_PKG dependencies on FND_MESSAGE

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

44: -- Populate Old Values.
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: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
49: IGS_GE_MSG_STACK.ADD;
50: Close cur_old_ref_values;
51: App_Exception.Raise_Exception;
52: Return;

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

179: new_references.ca_sequence_number,
180: new_references.sequence_number,
181: new_references.hist_start_dt
182: ) THEN
183: Fnd_Message.Set_Name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
184: IGS_GE_MSG_STACK.ADD;
185: App_Exception.Raise_Exception;
186: END IF;
187: Check_Constraints;

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

195: new_references.ca_sequence_number,
196: new_references.sequence_number,
197: new_references.hist_start_dt
198: ) THEN
199: Fnd_Message.Set_Name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
200: IGS_GE_MSG_STACK.ADD;
201: App_Exception.Raise_Exception;
202: END IF;
203: Check_Constraints;

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

251: if X_LAST_UPDATE_LOGIN is NULL then
252: X_LAST_UPDATE_LOGIN := -1;
253: end if;
254: else
255: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
256: IGS_GE_MSG_STACK.ADD;
257: app_exception.raise_exception;
258: end if;
259:

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

380: begin
381: open c1;
382: fetch c1 into tlinfo;
383: if (c1%notfound) then
384: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
385: IGS_GE_MSG_STACK.ADD;
386: close c1;
387: app_exception.raise_exception;
388: return;

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

424:
425: ) then
426: null;
427: else
428: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
429: IGS_GE_MSG_STACK.ADD;
430: app_exception.raise_exception;
431: end if;
432: return;

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

469: if X_LAST_UPDATE_LOGIN is NULL then
470: X_LAST_UPDATE_LOGIN := -1;
471: end if;
472: else
473: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
474: IGS_GE_MSG_STACK.ADD;
475: app_exception.raise_exception;
476: end if;
477: Before_DML (

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

638: END IF ;
639:
640: IF upper(Column_name) = 'CA_SEQUENCE_NUMBER' OR COLUMN_NAME IS NULL THEN
641: IF new_references.CA_SEQUENCE_NUMBER < 1 or new_references.CA_SEQUENCE_NUMBER > 999999 then
642: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
643: IGS_GE_MSG_STACK.ADD;
644: App_Exception.Raise_Exception ;
645: END IF;
646:

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

647: END IF ;
648:
649: IF upper(Column_name) = 'SEQUENCE_NUMBER' OR COLUMN_NAME IS NULL THEN
650: IF new_references.SEQUENCE_NUMBER < 1 or new_references.SEQUENCE_NUMBER > 999999 then
651: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
652: IGS_GE_MSG_STACK.ADD;
653: App_Exception.Raise_Exception ;
654: END IF;
655:

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

656: END IF ;
657:
658: IF upper(Column_name) = 'PRECED_SEQUENCE_NUMBER' OR COLUMN_NAME IS NULL THEN
659: IF new_references.PRECED_SEQUENCE_NUMBER < 1 or new_references.PRECED_SEQUENCE_NUMBER > 999999 then
660: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
661: IGS_GE_MSG_STACK.ADD;
662: App_Exception.Raise_Exception ;
663: END IF;
664: