DBA Data[Home] [Help]

APPS.IGS_PS_CATLG_VERS_PKG dependencies on APP_EXCEPTION

Line 51: App_Exception.Raise_Exception;

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;
54: Close cur_old_ref_values;
55:

Line 109: App_Exception.Raise_Exception;

105: Column_Name IS NULL THEN
106: IF NOT (new_references.closed_ind IN ('Y', 'N')) THEN
107: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
108: IGS_GE_MSG_STACK.ADD;
109: App_Exception.Raise_Exception;
110: END IF;
111: END IF;
112:
113: -- The following code checks for check constraints on the Columns.

Line 119: App_Exception.Raise_Exception;

115: Column_Name IS NULL THEN
116: IF NOT (new_references.catalog_schedule IN ('CATALOG', 'SCHEDULE')) THEN
117: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
118: IGS_GE_MSG_STACK.ADD;
119: App_Exception.Raise_Exception;
120: END IF;
121: END IF;
122:
123:

Line 145: app_exception.raise_exception;

141: ,new_references.catalog_version
142: ) THEN
143: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
144: IGS_GE_MSG_STACK.ADD;
145: app_exception.raise_exception;
146: END IF;
147: END Check_Uniqueness ;
148: PROCEDURE Check_Child_Existance IS
149: /*************************************************************

Line 292: App_Exception.Raise_Exception;

288: IF Get_Pk_For_Validation(
289: new_references.catalog_version_id) THEN
290: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
291: IGS_GE_MSG_STACK.ADD;
292: App_Exception.Raise_Exception;
293: END IF;
294: Check_Uniqueness;
295: Check_Constraints;
296: ELSIF (p_action = 'UPDATE') THEN

Line 311: App_Exception.Raise_Exception;

307: IF Get_PK_For_Validation (
308: new_references.catalog_version_id) THEN
309: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
310: IGS_GE_MSG_STACK.ADD;
311: App_Exception.Raise_Exception;
312: END IF;
313: Check_Uniqueness;
314: Check_Constraints;
315: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 400: app_exception.raise_exception;

396: end if;
397: else
398: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
399: IGS_GE_MSG_STACK.ADD;
400: app_exception.raise_exception;
401: end if;
402:
403: ------
404: SELECT igs_ps_catlg_vers_s.nextval

Line 494: app_exception.raise_exception;

490: if (c1%notfound) then
491: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
492: IGS_GE_MSG_STACK.ADD;
493: close c1;
494: app_exception.raise_exception;
495: return;
496: end if;
497: close c1;
498: if ( ( tlinfo.CATALOG_VERSION = X_CATALOG_VERSION)

Line 507: app_exception.raise_exception;

503: null;
504: else
505: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
506: IGS_GE_MSG_STACK.ADD;
507: app_exception.raise_exception;
508: end if;
509: return;
510: end LOCK_ROW;
511: Procedure UPDATE_ROW (

Line 551: app_exception.raise_exception;

547: end if;
548: else
549: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
550: IGS_GE_MSG_STACK.ADD;
551: app_exception.raise_exception;
552: end if;
553: Before_DML(
554: p_action=>'UPDATE',
555: x_rowid=>X_ROWID,