DBA Data[Home] [Help]

APPS.IGS_PS_GRP_TYPE_PKG dependencies on APP_EXCEPTION

Line 38: App_Exception.Raise_Exception;

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

Line 85: App_Exception.Raise_Exception;

81: new_references.s_course_group_type,
82: v_message_name) = FALSE THEN
83: Fnd_Message.Set_Name('IGS',v_message_name);
84: IGS_GE_MSG_STACK.ADD;
85: App_Exception.Raise_Exception;
86: END IF;
87: END IF;
88:
89: END BeforeRowInsertUpdate1;

Line 113: App_Exception.Raise_Exception;

109: column_name is null Then
110: IF ( new_references.course_group_type <> UPPER(new_references.course_group_type) ) Then
111: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
112: IGS_GE_MSG_STACK.ADD;
113: App_Exception.Raise_Exception;
114: END IF;
115: END IF;
116:
117: IF upper(column_name) = 'S_COURSE_GROUP_TYPE' OR

Line 122: App_Exception.Raise_Exception;

118: column_name is null Then
119: IF ( new_references.s_course_group_type <> UPPER(new_references.s_course_group_type) ) Then
120: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
121: IGS_GE_MSG_STACK.ADD;
122: App_Exception.Raise_Exception;
123: END IF;
124: END IF;
125:
126: IF upper(column_name) = 'CLOSED_IND' OR

Line 131: App_Exception.Raise_Exception;

127: column_name is null Then
128: IF ( new_references.closed_ind NOT IN ( 'Y' , 'N' ) ) Then
129: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
130: IGS_GE_MSG_STACK.ADD;
131: App_Exception.Raise_Exception;
132: END IF;
133: END IF;
134:
135: END Check_Constraints;

Line 150: App_Exception.Raise_Exception;

146: new_references.s_course_group_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: NULL;
154: END Check_Parent_Existance;

Line 210: App_Exception.Raise_Exception;

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

Line 254: App_Exception.Raise_Exception;

250: IF Get_PK_For_Validation (
251: new_references.course_group_type ) THEN
252: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
253: IGS_GE_MSG_STACK.ADD;
254: App_Exception.Raise_Exception;
255: END IF;
256: Check_Constraints;
257: Check_Parent_Existance;
258: ELSIF (p_action = 'UPDATE') THEN

Line 271: App_Exception.Raise_Exception;

267: IF Get_PK_For_Validation (
268: new_references.course_group_type ) THEN
269: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
270: IGS_GE_MSG_STACK.ADD;
271: App_Exception.Raise_Exception;
272: END IF;
273: Check_Constraints;
274: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
275: Check_Constraints;

Line 324: app_exception.raise_exception;

320: end if;
321: else
322: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
323: IGS_GE_MSG_STACK.ADD;
324: app_exception.raise_exception;
325: end if;
326: Before_DML (
327: p_action => 'INSERT',
328: x_rowid => X_ROWID,

Line 397: app_exception.raise_exception;

393: fetch c1 into tlinfo;
394: if (c1%notfound) then
395: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
396: IGS_GE_MSG_STACK.ADD;
397: app_exception.raise_exception;
398: close c1;
399: return;
400: end if;
401: close c1;

Line 411: app_exception.raise_exception;

407: null;
408: else
409: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
410: IGS_GE_MSG_STACK.ADD;
411: app_exception.raise_exception;
412: end if;
413: return;
414: end LOCK_ROW;
415:

Line 444: app_exception.raise_exception;

440: end if;
441: else
442: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
443: IGS_GE_MSG_STACK.ADD;
444: app_exception.raise_exception;
445: end if;
446: Before_DML (
447: p_action => 'UPDATE',
448: x_rowid => X_ROWID,