DBA Data[Home] [Help]

APPS.IGS_GE_S_HELP_CTRL_PKG dependencies on APP_EXCEPTION

Line 46: App_Exception.Raise_Exception;

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

Line 90: App_Exception.Raise_Exception;

86: IF upper(Column_name) = 'OWS_ENABLED_IND' OR column_name is null then
87: IF new_references.ows_enabled_ind <> UPPER(new_references.ows_enabled_ind ) then
88: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
89: IGS_GE_MSG_STACK.ADD;
90: App_Exception.Raise_Exception;
91: END IF;
92: END IF;
93:
94: END Check_Constraints;

Line 169: App_Exception.Raise_Exception;

165: IF (p_action = 'INSERT') THEN
166: IF Get_PK_For_Validation(new_references.s_control_num)THEN
167: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
168: IGS_GE_MSG_STACK.ADD;
169: App_Exception.Raise_Exception;
170: END IF ;
171: Check_Constraints;
172: ELSIF (p_action = 'UPDATE') THEN
173: -- Call all the procedures related to Before Update.

Line 182: App_Exception.Raise_Exception;

178: ELSIF (p_action = 'VALIDATE_INSERT') THEN
179: IF Get_PK_For_Validation(new_references.s_control_num)THEN
180: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
181: IGS_GE_MSG_STACK.ADD;
182: App_Exception.Raise_Exception;
183: END IF ;
184: Check_Constraints;
185: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
186: Check_Constraints;

Line 250: app_exception.raise_exception;

246: end if;
247: else
248: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
249: IGS_GE_MSG_STACK.ADD;
250: app_exception.raise_exception;
251: end if;
252: Before_DML (
253: p_action => 'INSERT',
254: x_rowid => X_ROWID,

Line 358: app_exception.raise_exception;

354: fetch c1 into tlinfo;
355: if (c1%notfound) then
356: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
357: IGS_GE_MSG_STACK.ADD;
358: app_exception.raise_exception;
359: close c1;
360: return;
361: end if;
362: close c1;

Line 397: app_exception.raise_exception;

393: null;
394: else
395: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
396: IGS_GE_MSG_STACK.ADD;
397: app_exception.raise_exception;
398: end if;
399: return;
400: end LOCK_ROW;
401:

Line 437: app_exception.raise_exception;

433: end if;
434: else
435: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
436: IGS_GE_MSG_STACK.ADD;
437: app_exception.raise_exception;
438: end if;
439:
440: Before_DML (
441: p_action => 'UPDATE',