DBA Data[Home] [Help]

APPS.IGS_PS_REF_CD_HIST_PKG dependencies on APP_EXCEPTION

Line 44: App_Exception.Raise_Exception;

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

Line 95: App_Exception.Raise_Exception;

91: IF new_references.course_cd <> UPPER(new_references.course_cd)
92: THEN
93: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
94: IGS_GE_MSG_STACK.ADD;
95: App_Exception.Raise_Exception;
96: END IF;
97: END IF;
98:
99: IF upper(column_name)= 'REFERENCE_CD' OR

Line 105: App_Exception.Raise_Exception;

101: IF new_references.reference_cd <> UPPER(new_references.reference_cd)
102: THEN
103: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
104: IGS_GE_MSG_STACK.ADD;
105: App_Exception.Raise_Exception;
106: END IF;
107: END IF;
108:
109: IF upper(column_name)= 'REFERENCE_CD_TYPE' OR

Line 115: App_Exception.Raise_Exception;

111: IF new_references.reference_cd_type <> UPPER(new_references.reference_cd_type)
112: THEN
113: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
114: IGS_GE_MSG_STACK.ADD;
115: App_Exception.Raise_Exception;
116: END IF;
117: END IF;
118:
119: END Check_Constraints;

Line 137: App_Exception.Raise_Exception;

133: new_references.version_number
134: )THEN
135: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
136: IGS_GE_MSG_STACK.ADD;
137: App_Exception.Raise_Exception;
138: END IF;
139: END IF;
140:
141: IF (((old_references.reference_cd_type = new_references.reference_cd_type)) OR

Line 150: App_Exception.Raise_Exception;

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

Line 209: App_Exception.Raise_Exception;

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

Line 235: App_Exception.Raise_Exception;

231: IF (cur_rowid%FOUND) THEN
232: Close cur_rowid;
233: Fnd_Message.Set_Name ('IGS', 'IGS_PS_CRCH_RCT_FK');
234: IGS_GE_MSG_STACK.ADD;
235: App_Exception.Raise_Exception;
236: Return;
237: END IF;
238: Close cur_rowid;
239:

Line 292: App_Exception.Raise_Exception;

288: new_references.hist_start_dt
289: ) THEN
290: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
291: IGS_GE_MSG_STACK.ADD;
292: App_Exception.Raise_Exception;
293: END IF;
294: Check_Constraints;
295: Check_Parent_Existance;
296: ELSIF (p_action = 'UPDATE') THEN

Line 314: App_Exception.Raise_Exception;

310: new_references.hist_start_dt
311: ) THEN
312: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
313: IGS_GE_MSG_STACK.ADD;
314: App_Exception.Raise_Exception;
315: END IF;
316: Check_Constraints;
317: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
318: Check_Constraints;

Line 372: app_exception.raise_exception;

368: end if;
369: else
370: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
371: IGS_GE_MSG_STACK.ADD;
372: app_exception.raise_exception;
373: end if;
374: Before_DML (
375: p_action => 'INSERT',
376: x_rowid => X_ROWID,

Line 465: app_exception.raise_exception;

461: if (c1%notfound) then
462: close c1;
463: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
464: IGS_GE_MSG_STACK.ADD;
465: app_exception.raise_exception;
466: return;
467: end if;
468: close c1;
469:

Line 480: app_exception.raise_exception;

476: null;
477: else
478: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
479: IGS_GE_MSG_STACK.ADD;
480: app_exception.raise_exception;
481: end if;
482: return;
483: end LOCK_ROW;
484:

Line 517: app_exception.raise_exception;

513: end if;
514: else
515: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
516: IGS_GE_MSG_STACK.ADD;
517: app_exception.raise_exception;
518: end if;
519: Before_DML (
520: p_action => 'UPDATE',
521: x_rowid => X_ROWID,