DBA Data[Home] [Help]

APPS.IGS_PS_OWN_PKG dependencies on APP_EXCEPTION

Line 39: App_Exception.Raise_Exception;

35: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
36: Close cur_old_ref_values;
37: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
38: IGS_GE_MSG_STACK.ADD;
39: App_Exception.Raise_Exception;
40: Return;
41: END IF;
42: Close cur_old_ref_values;
43:

Line 116: App_Exception.Raise_Exception;

112: v_version_number,
113: v_message_name) = FALSE THEN
114: Fnd_Message.Set_Name('IGS',v_message_name);
115: IGS_GE_MSG_STACK.ADD;
116: App_Exception.Raise_Exception;
117: END IF;
118: -- Validate the org IGS_PS_UNIT. Org IGS_PS_UNIT is not updateable.
119: IF p_inserting THEN
120: -- As part of the bug# 1956374 changed to the below call from IGS_PS_VAL_COw.crsp_val_ou_sys_sts

Line 127: App_Exception.Raise_Exception;

123: new_references.ou_start_dt,
124: v_message_name) = FALSE THEN
125: Fnd_Message.Set_Name('IGS',v_message_name);
126: IGS_GE_MSG_STACK.ADD;
127: App_Exception.Raise_Exception;
128: END IF;
129: END IF;
130: -- Insert history record on update.
131: IF p_updating THEN

Line 187: App_Exception.Raise_Exception;

183: IF new_references.course_cd <> UPPER(new_references.course_cd)
184: THEN
185: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
186: IGS_GE_MSG_STACK.ADD;
187: App_Exception.Raise_Exception;
188: END IF;
189: END IF;
190:
191: IF upper(column_name)= 'PERCENTAGE' OR

Line 197: App_Exception.Raise_Exception;

193: IF (new_references.percentage < 0 OR new_references.percentage > 100 )
194: THEN
195: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
196: IGS_GE_MSG_STACK.ADD;
197: App_Exception.Raise_Exception;
198: END IF;
199: END IF;
200: END Check_Constraints;
201:

Line 217: App_Exception.Raise_Exception;

213: new_references.version_number
214: )THEN
215: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
216: IGS_GE_MSG_STACK.ADD;
217: App_Exception.Raise_Exception;
218: END IF;
219: END IF;
220:
221:

Line 234: App_Exception.Raise_Exception;

230: new_references.ou_start_dt
231: )THEN
232: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
233: IGS_GE_MSG_STACK.ADD;
234: App_Exception.Raise_Exception;
235: END IF;
236: END IF;
237:
238: END Check_Parent_Existance;

Line 331: App_Exception.Raise_Exception;

327: IF (cur_rowid%FOUND) THEN
328: Close cur_rowid;
329: Fnd_Message.Set_Name ('IGS', 'IGS_PS_COW_CRV_FK');
330: IGS_GE_MSG_STACK.ADD;
331: App_Exception.Raise_Exception;
332: Return;
333: END IF;
334: Close cur_rowid;
335:

Line 359: App_Exception.Raise_Exception;

355: IF (cur_rowid%FOUND) THEN
356: Close cur_rowid;
357: Fnd_Message.Set_Name ('IGS', 'IGS_PS_COW_OU_FK');
358: IGS_GE_MSG_STACK.ADD;
359: App_Exception.Raise_Exception;
360: Return;
361: END IF;
362: Close cur_rowid;
363:

Line 408: App_Exception.Raise_Exception;

404: new_references.ou_start_dt
405: ) THEN
406: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
407: IGS_GE_MSG_STACK.ADD;
408: App_Exception.Raise_Exception;
409: END IF;
410: Check_Constraints;
411: Check_Parent_Existance;
412: ELSIF (p_action = 'UPDATE') THEN

Line 429: App_Exception.Raise_Exception;

425: new_references.ou_start_dt
426: ) THEN
427: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
428: IGS_GE_MSG_STACK.ADD;
429: App_Exception.Raise_Exception;
430: END IF;
431: Check_Constraints;
432: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
433: Check_Constraints;

Line 485: app_exception.raise_exception;

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

Line 560: app_exception.raise_exception;

556: if (c1%notfound) then
557: close c1;
558: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
559: IGS_GE_MSG_STACK.ADD;
560: app_exception.raise_exception;
561: return;
562: end if;
563: close c1;
564:

Line 571: app_exception.raise_exception;

567: null;
568: else
569: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
570: IGS_GE_MSG_STACK.ADD;
571: app_exception.raise_exception;
572: end if;
573: return;
574: end LOCK_ROW;
575:

Line 605: app_exception.raise_exception;

601: end if;
602: else
603: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
604: IGS_GE_MSG_STACK.ADD;
605: app_exception.raise_exception;
606: end if;
607: Before_DML (
608: p_action => 'UPDATE',
609: x_rowid => X_ROWID,