DBA Data[Home] [Help]

APPS.IGS_FI_ACC_PKG dependencies on IGS_GE_MSG_STACK

Line 32: IGS_GE_MSG_STACK.ADD;

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

Line 80: IGS_GE_MSG_STACK.ADD;

76: IF upper(column_name) = 'CLOSED_IND' OR
77: column_name is null Then
78: IF (new_references.closed_ind not in ('Y', 'N')) Then
79: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
80: IGS_GE_MSG_STACK.ADD;
81: App_Exception.Raise_Exception;
82: END IF;
83: END IF;
84:

Line 159: IGS_GE_MSG_STACK.ADD;

155: IF Get_PK_For_Validation (
156: new_references.account_cd
157: ) 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:

Line 172: IGS_GE_MSG_STACK.ADD;

168: IF Get_PK_For_Validation (
169: new_references.account_cd
170: ) THEN
171: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
172: IGS_GE_MSG_STACK.ADD;
173: App_Exception.Raise_Exception;
174: END IF;
175: Check_Constraints;
176: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 210: IGS_GE_MSG_STACK.ADD;

206: X_LAST_UPDATE_LOGIN := -1;
207: end if;
208: else
209: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
210: IGS_GE_MSG_STACK.ADD;
211: app_exception.raise_exception;
212: end if;
213: Before_DML (
214: p_action => 'INSERT',

Line 275: IGS_GE_MSG_STACK.ADD;

271: fetch c1 into tlinfo;
272: if (c1%notfound) then
273: close c1;
274: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
275: IGS_GE_MSG_STACK.ADD;
276: app_exception.raise_exception;
277: return;
278: end if;
279: close c1;

Line 287: IGS_GE_MSG_STACK.ADD;

283: then
284: null;
285: else
286: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
287: IGS_GE_MSG_STACK.ADD;
288: app_exception.raise_exception;
289: end if;
290: RETURN;
291: END LOCK_ROW;

Line 319: IGS_GE_MSG_STACK.ADD;

315: X_LAST_UPDATE_LOGIN := -1;
316: end if;
317: else
318: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
319: IGS_GE_MSG_STACK.ADD;
320: app_exception.raise_exception;
321: end if;
322: Before_DML (
323: p_action => 'UPDATE',