DBA Data[Home] [Help]

APPS.IGS_FI_GOVT_FUND_SRC_PKG dependencies on APP_EXCEPTION

Line 32: App_Exception.Raise_Exception;

28: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT', 'VALIDATE_INSERT')) THEN
29: Close cur_old_ref_values;
30: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
31: IGS_GE_MSG_STACK.ADD;
32: App_Exception.Raise_Exception;
33: Return;
34: END IF;
35: Close cur_old_ref_values;
36: -- Populate New Values.

Line 71: App_Exception.Raise_Exception;

67: new_references.closed_ind,
68: v_message_name) = FALSE THEN
69: Fnd_Message.Set_Name('IGS',v_message_name);
70: IGS_GE_MSG_STACK.ADD;
71: App_Exception.Raise_Exception;
72: END IF;
73: END IF;
74: END BeforeRowInsertUpdate1;
75: PROCEDURE Check_Constraints (

Line 89: App_Exception.Raise_Exception;

85: IF ((UPPER (column_name) = 'CLOSED_IND') OR (column_name IS NULL)) THEN
86: IF (new_references.closed_ind NOT IN ('Y', 'N')) THEN
87: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
88: IGS_GE_MSG_STACK.ADD;
89: App_Exception.Raise_Exception;
90: END IF;
91: END IF;
92: END Check_Constraints;
93: PROCEDURE Check_Child_Existance AS

Line 152: App_Exception.Raise_Exception;

148: new_references.govt_funding_source
149: )) THEN
150: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
151: IGS_GE_MSG_STACK.ADD;
152: App_Exception.Raise_Exception;
153: END IF;
154: Check_Constraints;
155: ELSIF (p_action = 'UPDATE') THEN
156: -- Call all the procedures related to Before Update.

Line 168: App_Exception.Raise_Exception;

164: new_references.govt_funding_source
165: )) THEN
166: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
167: IGS_GE_MSG_STACK.ADD;
168: App_Exception.Raise_Exception;
169: END IF;
170: Check_Constraints;
171: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
172: Check_Constraints;

Line 206: app_exception.raise_exception;

202: end if;
203: else
204: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
205: IGS_GE_MSG_STACK.ADD;
206: app_exception.raise_exception;
207: end if;
208: Before_DML(
209: p_action=>'INSERT',
210: x_rowid=>X_ROWID,

Line 267: app_exception.raise_exception;

263: if (c1%notfound) then
264: close c1;
265: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
266: IGS_GE_MSG_STACK.ADD;
267: app_exception.raise_exception;
268: return;
269: end if;
270: close c1;
271: if ( (tlinfo.DESCRIPTION = X_DESCRIPTION)

Line 278: app_exception.raise_exception;

274: null;
275: else
276: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
277: IGS_GE_MSG_STACK.ADD;
278: app_exception.raise_exception;
279: end if;
280: return;
281: end LOCK_ROW;
282: procedure UPDATE_ROW (

Line 309: app_exception.raise_exception;

305: end if;
306: else
307: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
308: IGS_GE_MSG_STACK.ADD;
309: app_exception.raise_exception;
310: end if;
311: Before_DML(
312: p_action=>'UPDATE',
313: x_rowid=>X_ROWID,