DBA Data[Home] [Help]

APPS.IGS_PR_SDT_PS_PR_MSR_PKG dependencies on APP_EXCEPTION

Line 43: App_Exception.Raise_Exception;

39: IF (cur_old_ref_values%NOTFOUND) AND (p_action not in ('INSERT','VALIDATE_INSERT')) THEN
40: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
41: IGS_GE_MSG_STACK.ADD;
42: Close cur_old_ref_values;
43: App_Exception.Raise_Exception;
44:
45: Return;
46: END IF;
47: Close cur_old_ref_values;

Line 84: App_Exception.Raise_Exception;

80: new_references.prg_ci_sequence_number
81: )THEN
82: Fnd_Message.Set_Name('FND','FORM_RECORD_DELETED');
83: IGS_GE_MSG_STACK.ADD;
84: App_Exception.Raise_Exception;
85:
86: END IF;
87:
88: END IF;

Line 102: App_Exception.Raise_Exception;

98: new_references.course_cd
99: )THEN
100: Fnd_Message.Set_Name('FND','FORM_RECORD_DELETED');
101: IGS_GE_MSG_STACK.ADD;
102: App_Exception.Raise_Exception;
103:
104: END IF;
105:
106: END IF;

Line 118: App_Exception.Raise_Exception;

114: new_references.s_prg_measure_type
115: )THEN
116: Fnd_Message.Set_Name('FND','FORM_RECORD_DELETED');
117: IGS_GE_MSG_STACK.ADD;
118: App_Exception.Raise_Exception;
119:
120: END IF;
121:
122: END IF;

Line 182: App_Exception.Raise_Exception;

178: IF (cur_rowid%FOUND) THEN
179: Fnd_Message.Set_Name ('IGS', 'IGS_PR_SCPM_CI_FK');
180: IGS_GE_MSG_STACK.ADD;
181: Close cur_rowid;
182: App_Exception.Raise_Exception;
183:
184: Return;
185: END IF;
186: Close cur_rowid;

Line 211: App_Exception.Raise_Exception;

207: IF (cur_rowid%FOUND) THEN
208: Fnd_Message.Set_Name ('IGS', 'IGS_PR_SCPM_SCA_FK');
209: IGS_GE_MSG_STACK.ADD;
210: Close cur_rowid;
211: App_Exception.Raise_Exception;
212:
213: Return;
214: END IF;
215: Close cur_rowid;

Line 238: App_Exception.Raise_Exception;

234: IF (cur_rowid%FOUND) THEN
235: Fnd_Message.Set_Name ('IGS', 'IGS_PR_SCPM_SPMT_FK');
236: IGS_GE_MSG_STACK.ADD;
237: Close cur_rowid;
238: App_Exception.Raise_Exception;
239:
240: Return;
241: END IF;
242: Close cur_rowid;

Line 293: App_Exception.Raise_Exception;

289: new_references.s_prg_measure_type,
290: new_references.calculation_dt) THEN
291: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
292: IGS_GE_MSG_STACK.ADD;
293: App_Exception.Raise_Exception;
294: END IF;
295: CHECK_CONSTRAINTS;
296:
297: ELSIF (p_action = 'UPDATE') THEN

Line 312: App_Exception.Raise_Exception;

308: new_references.s_prg_measure_type,
309: new_references.calculation_dt) THEN
310: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
311: IGS_GE_MSG_STACK.ADD;
312: App_Exception.Raise_Exception;
313: END IF;
314: CHECK_CONSTRAINTS;
315: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
316: CHECK_CONSTRAINTS;

Line 359: app_exception.raise_exception;

355: end if;
356: else
357: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
358: IGS_GE_MSG_STACK.ADD;
359: app_exception.raise_exception;
360: end if;
361:
362: Before_DML (
363: p_action => 'INSERT',

Line 439: app_exception.raise_exception;

435: if (c1%notfound) then
436: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
437: IGS_GE_MSG_STACK.ADD;
438: close c1;
439: app_exception.raise_exception;
440:
441: return;
442: end if;
443: close c1;

Line 451: app_exception.raise_exception;

447: null;
448: else
449: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
450: IGS_GE_MSG_STACK.ADD;
451: app_exception.raise_exception;
452: end if;
453: return;
454: end LOCK_ROW;
455:

Line 487: app_exception.raise_exception;

483: end if;
484: else
485: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
486: IGS_GE_MSG_STACK.ADD;
487: app_exception.raise_exception;
488: end if;
489:
490: Before_DML (
491: p_action => 'UPDATE',

Line 601: App_Exception.Raise_Exception ;

597: IF upper(Column_name) = 'VALUE' OR COLUMN_NAME IS NULL THEN
598: IF new_references.VALUE < 0 or new_references.VALUE > 999.999 then
599: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
600: IGS_GE_MSG_STACK.ADD;
601: App_Exception.Raise_Exception ;
602: END IF;
603:
604: END IF ;
605:

Line 610: App_Exception.Raise_Exception ;

606: IF upper(Column_name) = 'PRG_CI_SEQUENCE_NUMBER' OR COLUMN_NAME IS NULL THEN
607: IF new_references.PRG_CI_SEQUENCE_NUMBER < 1 or new_references.PRG_CI_SEQUENCE_NUMBER > 999999 then
608: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
609: IGS_GE_MSG_STACK.ADD;
610: App_Exception.Raise_Exception ;
611: END IF;
612:
613: END IF ;
614: END Check_Constraints;