DBA Data[Home] [Help]

APPS.IGS_OR_STATUS_PKG dependencies on FND_MESSAGE

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

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

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

129: Null;
130: IF Get_PK_For_Validation (
131: new_references.org_status
132: ) THEN
133: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
134: IGS_GE_MSG_STACK.ADD;
135: App_Exception.Raise_Exception;
136: END IF;
137:

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

150:
151: IF Get_PK_For_Validation (
152: new_references.org_status
153: ) THEN
154: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
155: IGS_GE_MSG_STACK.ADD;
156: App_Exception.Raise_Exception;
157: END IF;
158:

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

208: X_LAST_UPDATE_LOGIN := -1;
209: end if;
210:
211: else
212: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
213: IGS_GE_MSG_STACK.ADD;
214: app_exception.raise_exception;
215: end if;
216:

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

284: begin
285: open c1;
286: fetch c1 into tlinfo;
287: if (c1%notfound) then
288: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
289: app_exception.raise_exception;
290: close c1;
291: return;
292: end if;

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

297: AND (tlinfo.CLOSED_IND = X_CLOSED_IND)
298: ) then
299: null;
300: else
301: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
302: app_exception.raise_exception;
303: end if;
304: return;
305: end LOCK_ROW;

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

329: if X_LAST_UPDATE_LOGIN is NULL then
330: X_LAST_UPDATE_LOGIN := -1;
331: end if;
332: else
333: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
334: IGS_GE_MSG_STACK.ADD;
335: app_exception.raise_exception;
336: end if;
337:

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

448: END IF ;
449:
450: IF upper(Column_name) = 'CLOSED_IND' OR COLUMN_NAME IS NULL THEN
451: IF new_references.CLOSED_IND<> upper(new_references.CLOSED_IND) then
452: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
453: IGS_GE_MSG_STACK.ADD;
454: App_Exception.Raise_Exception ;
455: END IF;
456:

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

454: App_Exception.Raise_Exception ;
455: END IF;
456:
457: IF new_references.CLOSED_IND not in ('Y','N') then
458: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
459: IGS_GE_MSG_STACK.ADD;
460: App_Exception.Raise_Exception ;
461: END IF;
462:

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

463: END IF ;
464:
465: IF upper(Column_name) = 'ORG_STATUS' OR COLUMN_NAME IS NULL THEN
466: IF new_references.ORG_STATUS<> upper(new_references.ORG_STATUS) then
467: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
468: IGS_GE_MSG_STACK.ADD;
469: App_Exception.Raise_Exception ;
470: END IF;
471:

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

472: END IF ;
473:
474: IF upper(Column_name) = 'S_ORG_STATUS' OR COLUMN_NAME IS NULL THEN
475: IF new_references.S_ORG_STATUS<> upper(new_references.S_ORG_STATUS) then
476: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
477: IGS_GE_MSG_STACK.ADD;
478: App_Exception.Raise_Exception ;
479: END IF;
480: IF new_references.S_ORG_STATUS NOT IN ( 'INACTIVE' , 'ACTIVE' ) then

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

477: IGS_GE_MSG_STACK.ADD;
478: App_Exception.Raise_Exception ;
479: END IF;
480: IF new_references.S_ORG_STATUS NOT IN ( 'INACTIVE' , 'ACTIVE' ) then
481: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
482: IGS_GE_MSG_STACK.ADD;
483: App_Exception.Raise_Exception ;
484: END IF;
485: