DBA Data[Home] [Help]

APPS.IGS_FI_FUND_SRC_HIST_PKG dependencies on IGS_GE_MSG_STACK

Line 37: IGS_GE_MSG_STACK.ADD;

33: Fetch cur_old_ref_values INTO old_references;
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;

Line 81: IGS_GE_MSG_STACK.ADD;

77: IF upper(Column_Name) = 'CLOSED_IND' OR column_name is NULL THEN
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

Line 89: IGS_GE_MSG_STACK.ADD;

85: IF upper(Column_Name) = 'FUNDING_SOURCE' OR
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:

Line 159: IGS_GE_MSG_STACK.ADD;

155: Null;
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

Line 175: IGS_GE_MSG_STACK.ADD;

171: -- Call all the procedures related to Before Insert.
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

Line 237: IGS_GE_MSG_STACK.ADD;

233: X_LAST_UPDATE_LOGIN := -1;
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',

Line 324: IGS_GE_MSG_STACK.ADD;

320: fetch c1 into tlinfo;
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;

Line 344: IGS_GE_MSG_STACK.ADD;

340: ) then
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;

Line 379: IGS_GE_MSG_STACK.ADD;

375: X_LAST_UPDATE_LOGIN := -1;
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',