DBA Data[Home] [Help]

APPS.IGS_PS_GOVT_DSCP_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 75: App_Exception.Raise_Exception;

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

Line 101: App_Exception.Raise_Exception;

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

Line 110: App_Exception.Raise_Exception;

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

Line 188: App_Exception.Raise_Exception;

184: new_references.govt_discipline_group_cd
185: ) THEN
186: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
187: IGS_GE_MSG_STACK.ADD;
188: App_Exception.Raise_Exception;
189: END IF;
190: Check_Constraints;
191: ELSIF (p_action = 'UPDATE') THEN
192: -- Call all the procedures related to Before Update.

Line 205: App_Exception.Raise_Exception;

201: new_references.govt_discipline_group_cd
202: ) THEN
203: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
204: IGS_GE_MSG_STACK.ADD;
205: App_Exception.Raise_Exception;
206: END IF;
207: Check_Constraints;
208: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
209: Check_Constraints;

Line 256: app_exception.raise_exception;

252: end if;
253: else
254: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
255: IGS_GE_MSG_STACK.ADD;
256: app_exception.raise_exception;
257: end if;
258:
259: Before_DML( p_action => 'INSERT',
260: x_rowid => X_ROWID,

Line 323: app_exception.raise_exception;

319: if (c1%notfound) then
320: close c1;
321: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
322: IGS_GE_MSG_STACK.ADD;
323: app_exception.raise_exception;
324: return;
325: end if;
326: close c1;
327:

Line 335: app_exception.raise_exception;

331: null;
332: else
333: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
334: IGS_GE_MSG_STACK.ADD;
335: app_exception.raise_exception;
336: end if;
337: return;
338: end LOCK_ROW;
339:

Line 367: app_exception.raise_exception;

363: end if;
364: else
365: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
366: IGS_GE_MSG_STACK.ADD;
367: app_exception.raise_exception;
368: end if;
369:
370: Before_DML( p_action => 'UDPATE',
371: x_rowid => X_ROWID,