DBA Data[Home] [Help]

APPS.IGS_PS_USEC_WLST_PRI_PKG dependencies on APP_EXCEPTION

Line 49: App_Exception.Raise_Exception;

45: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
46: Close cur_old_ref_values;
47: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
48: IGS_GE_MSG_STACK.ADD;
49: App_Exception.Raise_Exception;
50: Return;
51: END IF;
52: Close cur_old_ref_values;
53:

Line 113: app_exception.raise_exception;

109: ,new_references.uoo_id
110: ) THEN
111: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
112: IGS_GE_MSG_STACK.ADD;
113: app_exception.raise_exception;
114: END IF;
115: END Check_Uniqueness;
116:
117: PROCEDURE Check_Parent_Existance AS

Line 138: App_Exception.Raise_Exception;

134: ELSIF NOT igs_lookups_view_pkg.get_pk_for_validation('UNIT_WAITLIST',
135: new_references.priority_value) THEN
136: Fnd_Message.Set_Name('FND','FORM_RECORD_DELETED');
137: IGS_GE_MSG_STACK.ADD;
138: App_Exception.Raise_Exception;
139: END IF;
140:
141: IF (((old_references.uoo_id = new_references.uoo_id)) OR
142: ((new_references.uoo_id IS NULL))) THEN

Line 149: app_exception.raise_exception;

145: new_references.uoo_id
146: ) THEN
147: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
148: igs_ge_msg_stack.add;
149: app_exception.raise_exception;
150: END IF;
151:
152: END Check_Parent_Existance;
153:

Line 277: app_exception.raise_exception;

273: IF (cur_rowid%FOUND) THEN
274: CLOSE cur_rowid;
275: fnd_message.set_name('IGS', 'IGS_PS_USP_UOO_FK');
276: igs_ge_msg_stack.add;
277: app_exception.raise_exception;
278: RETURN;
279: END IF;
280: CLOSE cur_rowid;
281:

Line 331: App_Exception.Raise_Exception;

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

Line 352: App_Exception.Raise_Exception;

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

Line 442: app_exception.raise_exception;

438: end if;
439: else
440: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
441: IGS_GE_MSG_STACK.ADD;
442: app_exception.raise_exception;
443: end if;
444: SELECT
445: igs_ps_usec_wlst_pri_s.nextval
446: INTO

Line 525: app_exception.raise_exception;

521: if (c1%NOTFOUND) then
522: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
523: igs_ge_msg_stack.add;
524: CLOSE c1;
525: app_exception.raise_exception;
526: RETURN;
527: END IF;
528: CLOSE c1;
529: IF ( ( tlinfo.uoo_id = x_uoo_id)

Line 537: app_exception.raise_exception;

533: null;
534: else
535: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
536: IGS_GE_MSG_STACK.ADD;
537: app_exception.raise_exception;
538: end if;
539: return;
540: END lock_row;
541:

Line 581: app_exception.raise_exception;

577: end if;
578: else
579: fnd_message.set_name('FND','SYSTEM-INVALID ARGS');
580: IGS_GE_MSG_STACK.ADD;
581: app_exception.raise_exception;
582: end if;
583: before_dml(
584: p_action=>'UPDATE',
585: x_rowid=>X_ROWID,