DBA Data[Home] [Help]

APPS.IGS_PE_SRC_TYPES_PKG dependencies on APP_EXCEPTION

Line 57: App_Exception.Raise_Exception;

53: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
54: Close cur_old_ref_values;
55: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
56: IGS_GE_MSG_STACK.ADD;
57: App_Exception.Raise_Exception;
58: Return;
59: END IF;
60: Close cur_old_ref_values;
61:

Line 116: App_Exception.Raise_Exception;

112: Column_Name IS NULL THEN
113: IF NOT (new_references.closed_ind IN ('Y', 'N')) THEN
114: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
115: IGS_GE_MSG_STACK.ADD;
116: App_Exception.Raise_Exception;
117: END IF;
118: END IF;
119: END Check_Constraints;
120:

Line 252: App_Exception.Raise_Exception;

248: new_references.admission_cat
249: ) THEN
250: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
251: IGS_GE_MSG_STACK.ADD;
252: App_Exception.Raise_Exception;
253: END IF;
254: Commented as part of bug 2422183 *******/
255: END Check_Parent_Existance;
256:

Line 347: app_exception.raise_exception;

343: new_references.source_type
344: ) THEN
345: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
346: IGS_GE_MSG_STACK.ADD;
347: app_exception.raise_exception;
348: END IF;
349: END Check_Uniqueness ;
350:
351:

Line 415: App_Exception.Raise_Exception;

411: IF Get_Pk_For_Validation(
412: new_references.source_type_id) THEN
413: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
414: IGS_GE_MSG_STACK.ADD;
415: App_Exception.Raise_Exception;
416: END IF;
417: Check_Constraints;
418: Check_Uniqueness;
419: Check_Parent_Existance;

Line 441: App_Exception.Raise_Exception;

437: IF Get_PK_For_Validation (
438: new_references.source_type_id) THEN
439: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
440: IGS_GE_MSG_STACK.ADD;
441: App_Exception.Raise_Exception;
442: END IF;
443: Check_Constraints;
444:
445: Check_Parent_Existance;

Line 615: app_exception.raise_exception;

611: END IF;
612: ELSE
613: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
614: IGS_GE_MSG_STACK.ADD;
615: app_exception.raise_exception;
616: END IF;
617:
618: SELECT IGS_PE_SRC_TYPES_S.NEXTVAL
619: INTO X_SOURCE_TYPE_ID

Line 743: app_exception.raise_exception;

739: if (c1%notfound) then
740: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
741: IGS_GE_MSG_STACK.ADD;
742: close c1;
743: app_exception.raise_exception;
744: return;
745: end if;
746: close c1;
747:

Line 773: app_exception.raise_exception;

769: null;
770: else
771: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
772: IGS_GE_MSG_STACK.ADD;
773: app_exception.raise_exception;
774: end if;
775: return;
776:
777: end LOCK_ROW;

Line 825: app_exception.raise_exception;

821: end if;
822: else
823: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
824: IGS_GE_MSG_STACK.ADD;
825: app_exception.raise_exception;
826: end if;
827:
828: Before_DML(
829: p_action=>'UPDATE',