DBA Data[Home] [Help]

APPS.IGS_AD_CRED_TYPES_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 87: App_Exception.Raise_Exception;

83: IF NOT IGS_TR_VAL_TRI.val_tr_step_ctlg (new_references.step_code,
84: v_message_name) THEN
85: Fnd_Message.Set_Name('IGS', v_message_name);
86: IGS_GE_MSG_STACK.ADD;
87: App_Exception.Raise_Exception;
88: END IF;
89: END IF;
90: END BeforeRowInsertUpdate;
91:

Line 123: App_Exception.Raise_Exception;

119: Column_Name IS NULL THEN
120: IF NOT (new_references.closed_ind IN ('Y','N')) THEN
121: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
122: IGS_GE_MSG_STACK.ADD;
123: App_Exception.Raise_Exception;
124: END IF;
125: END IF;
126:
127:

Line 148: app_exception.raise_exception;

144: new_references.credential_type
145: ) THEN
146: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
147: IGS_GE_MSG_STACK.ADD;
148: app_exception.raise_exception;
149: END IF;
150: END Check_Uniqueness;
151:
152:

Line 196: App_Exception.Raise_Exception;

192: new_references.system_type
193: ) THEN
194: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
195: IGS_GE_MSG_STACK.ADD;
196: App_Exception.Raise_Exception;
197: END IF;
198:
199: END Check_Parent_Existance;
200:

Line 329: App_Exception.Raise_Exception;

325: IF Get_Pk_For_Validation(
326: new_references.credential_type_id) THEN
327: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
328: IGS_GE_MSG_STACK.ADD;
329: App_Exception.Raise_Exception;
330: END IF;
331: Check_Uniqueness;
332: Check_Parent_Existance;
333: Check_Constraints;

Line 350: App_Exception.Raise_Exception;

346: IF Get_PK_For_Validation (
347: new_references.credential_type_id) THEN
348: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
349: IGS_GE_MSG_STACK.ADD;
350: App_Exception.Raise_Exception;
351: END IF;
352: Check_Uniqueness;
353: Check_Constraints;
354: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 440: app_exception.raise_exception;

436: end if;
437: else
438: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
439: IGS_GE_MSG_STACK.ADD;
440: app_exception.raise_exception;
441: end if;
442:
443: X_CREDENTIAL_TYPE_ID := -1;
444: Before_DML(

Line 530: app_exception.raise_exception;

526: if (c1%notfound) then
527: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
528: IGS_GE_MSG_STACK.ADD;
529: close c1;
530: app_exception.raise_exception;
531: return;
532: end if;
533: close c1;
534: if ( ( tlinfo.CREDENTIAL_TYPE = X_CREDENTIAL_TYPE)

Line 546: app_exception.raise_exception;

542: null;
543: else
544: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
545: IGS_GE_MSG_STACK.ADD;
546: app_exception.raise_exception;
547: end if;
548: return;
549: end LOCK_ROW;
550: Procedure UPDATE_ROW (

Line 591: app_exception.raise_exception;

587: end if;
588: else
589: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
590: IGS_GE_MSG_STACK.ADD;
591: app_exception.raise_exception;
592: end if;
593: Before_DML(
594: p_action=>'UPDATE',
595: x_rowid=>X_ROWID,