DBA Data[Home] [Help]

APPS.IGS_PS_USEC_X_USEC_PKG dependencies on APP_EXCEPTION

Line 48: App_Exception.Raise_Exception;

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

Line 115: app_exception.raise_exception;

111: ,new_references.parent_uoo_id
112: ) THEN
113: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
114: IGS_GE_MSG_STACK.ADD;
115: app_exception.raise_exception;
116: END IF;
117: END Check_Uniqueness ;
118: PROCEDURE Check_Parent_Existance AS
119: /*************************************************************

Line 140: App_Exception.Raise_Exception;

136: new_references.child_uoo_id
137: ) THEN
138: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
139: IGS_GE_MSG_STACK.ADD;
140: App_Exception.Raise_Exception;
141: END IF;
142:
143: IF (((old_references.parent_uoo_id = new_references.parent_uoo_id)) OR
144: ((new_references.parent_uoo_id IS NULL))) THEN

Line 151: App_Exception.Raise_Exception;

147: new_references.parent_uoo_id
148: ) THEN
149: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
150: IGS_GE_MSG_STACK.ADD;
151: App_Exception.Raise_Exception;
152: END IF;
153:
154: END Check_Parent_Existance;
155:

Line 267: App_Exception.Raise_Exception;

263: IF (cur_rowid%FOUND) THEN
264: Close cur_rowid;
265: Fnd_Message.Set_Name ('IGS', 'IGS_PS_USXUS_UNOO_UFK');
266: IGS_GE_MSG_STACK.ADD;
267: App_Exception.Raise_Exception;
268: Return;
269: END IF;
270: Close cur_rowid;
271:

Line 319: App_Exception.Raise_Exception;

315: IF Get_Pk_For_Validation(
316: new_references.unit_sec_cross_unit_sec_id) THEN
317: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
318: IGS_GE_MSG_STACK.ADD;
319: App_Exception.Raise_Exception;
320: END IF;
321: Check_Uniqueness;
322: Check_Constraints;
323: Check_Parent_Existance;

Line 339: App_Exception.Raise_Exception;

335: IF Get_PK_For_Validation (
336: new_references.unit_sec_cross_unit_sec_id) THEN
337: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
338: IGS_GE_MSG_STACK.ADD;
339: App_Exception.Raise_Exception;
340: END IF;
341: Check_Uniqueness;
342: Check_Constraints;
343: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 426: app_exception.raise_exception;

422: end if;
423: else
424: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
425: IGS_GE_MSG_STACK.ADD;
426: app_exception.raise_exception;
427: end if;
428:
429:
430: SELECT

Line 508: app_exception.raise_exception;

504: if (c1%notfound) then
505: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
506: IGS_GE_MSG_STACK.ADD;
507: close c1;
508: app_exception.raise_exception;
509: return;
510: end if;
511: close c1;
512: if ( ( tlinfo.PARENT_UOO_ID = X_PARENT_UOO_ID)

Line 519: app_exception.raise_exception;

515: null;
516: else
517: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
518: IGS_GE_MSG_STACK.ADD;
519: app_exception.raise_exception;
520: end if;
521: return;
522: end LOCK_ROW;
523: Procedure UPDATE_ROW (

Line 561: app_exception.raise_exception;

557: end if;
558: else
559: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
560: IGS_GE_MSG_STACK.ADD;
561: app_exception.raise_exception;
562: end if;
563: Before_DML(
564: p_action=>'UPDATE',
565: x_rowid=>X_ROWID,