DBA Data[Home] [Help]

APPS.IGS_PS_GOVT_TYPE_PKG dependencies on APP_EXCEPTION

Line 37: App_Exception.Raise_Exception;

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

Line 74: App_Exception.Raise_Exception;

70: new_references.closed_ind,
71: v_message_name) = FALSE THEN
72: Fnd_Message.Set_Name('IGS', v_message_name);
73: IGS_GE_MSG_STACK.ADD;
74: App_Exception.Raise_Exception;
75: END IF;
76: END IF;
77:
78:

Line 100: App_Exception.Raise_Exception;

96: column_name is null Then
97: IF new_references.closed_ind NOT IN ('Y','N') THEN
98: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
99: IGS_GE_MSG_STACK.ADD;
100: App_Exception.Raise_Exception;
101: END IF;
102: END IF;
103:
104: IF upper(column_name) = 'GOVT_COURSE_TYPE' OR

Line 109: App_Exception.Raise_Exception;

105: column_name is null Then
106: IF new_references.govt_course_type < 0 OR new_references.govt_course_type > 99 Then
107: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
108: IGS_GE_MSG_STACK.ADD;
109: App_Exception.Raise_Exception;
110: END IF;
111: END IF;
112: END check_constraints;
113:

Line 183: App_Exception.Raise_Exception;

179: new_references.govt_course_type
180: ) THEN
181: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
182: IGS_GE_MSG_STACK.ADD;
183: App_Exception.Raise_Exception;
184: END IF;
185: Check_Constraints;
186: ELSIF (p_action = 'UPDATE') THEN
187: -- Call all the procedures related to Before Update.

Line 199: App_Exception.Raise_Exception;

195: new_references.govt_course_type
196: ) THEN
197: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
198: IGS_GE_MSG_STACK.ADD;
199: App_Exception.Raise_Exception;
200: END IF;
201: Check_Constraints;
202: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
203: Check_Constraints;

Line 249: app_exception.raise_exception;

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

Line 316: app_exception.raise_exception;

312: if (c1%notfound) then
313: close c1;
314: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
315: IGS_GE_MSG_STACK.ADD;
316: app_exception.raise_exception;
317: return;
318: end if;
319: close c1;
320:

Line 328: app_exception.raise_exception;

324: null;
325: else
326: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
327: IGS_GE_MSG_STACK.ADD;
328: app_exception.raise_exception;
329: end if;
330: return;
331: end LOCK_ROW;
332:

Line 360: app_exception.raise_exception;

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