DBA Data[Home] [Help]

APPS.IGS_FI_FUND_SRC_HIST_PKG dependencies on APP_EXCEPTION

Line 38: App_Exception.Raise_Exception;

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

Line 82: App_Exception.Raise_Exception;

78: IF new_references.closed_ind <> UPPER( new_references.closed_ind )
79: THEN
80: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
81: IGS_GE_MSG_STACK.ADD;
82: App_Exception.Raise_Exception;
83: END IF;
84: END IF;
85: IF upper(Column_Name) = 'FUNDING_SOURCE' OR
86: column_name is NULL THEN

Line 90: App_Exception.Raise_Exception;

86: column_name is NULL THEN
87: IF new_references.funding_source <> UPPER(new_references.funding_source) THEN
88: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
89: IGS_GE_MSG_STACK.ADD;
90: App_Exception.Raise_Exception;
91: END IF;
92: END IF;
93:
94: END Check_Constraints;

Line 160: App_Exception.Raise_Exception;

156: IF Get_PK_For_Validation ( new_references.funding_source,
157: new_references.hist_start_dt ) THEN
158: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
159: IGS_GE_MSG_STACK.ADD;
160: App_Exception.Raise_Exception;
161: END IF;
162: Check_Constraints;
163: ELSIF (p_action = 'UPDATE') THEN
164: -- Call all the procedures related to Before Update.

Line 176: App_Exception.Raise_Exception;

172: IF Get_PK_For_Validation ( new_references.funding_source,
173: new_references.hist_start_dt ) THEN
174: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
175: IGS_GE_MSG_STACK.ADD;
176: App_Exception.Raise_Exception;
177: END IF;
178: Check_Constraints;
179: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
180: Check_Constraints;

Line 238: app_exception.raise_exception;

234: end if;
235: else
236: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
237: IGS_GE_MSG_STACK.ADD;
238: app_exception.raise_exception;
239: end if;
240: Before_DML(
241: p_action=>'INSERT',
242: x_rowid=>X_ROWID,

Line 325: app_exception.raise_exception;

321: if (c1%notfound) then
322: close c1;
323: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
324: IGS_GE_MSG_STACK.ADD;
325: app_exception.raise_exception;
326: return;
327: end if;
328: close c1;
329: if ( (tlinfo.HIST_END_DT = X_HIST_END_DT)

Line 345: app_exception.raise_exception;

341: null;
342: else
343: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
344: IGS_GE_MSG_STACK.ADD;
345: app_exception.raise_exception;
346: end if;
347: return;
348: end LOCK_ROW;
349: procedure UPDATE_ROW (

Line 380: app_exception.raise_exception;

376: end if;
377: else
378: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
379: IGS_GE_MSG_STACK.ADD;
380: app_exception.raise_exception;
381: end if;
382: Before_DML(
383: p_action=>'UPDATE',
384: x_rowid=>X_ROWID,