DBA Data[Home] [Help]

APPS.IGS_FI_ACC_PKG dependencies on APP_EXCEPTION

Line 33: App_Exception.Raise_Exception;

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;
37: -- Populate New Values.

Line 81: App_Exception.Raise_Exception;

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:
85: END Check_Constraints;

Line 160: App_Exception.Raise_Exception;

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:
164: ELSIF (p_action = 'UPDATE') THEN

Line 173: App_Exception.Raise_Exception;

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
177: Check_Constraints;

Line 211: app_exception.raise_exception;

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',
215: x_rowid => X_ROWID,

Line 276: app_exception.raise_exception;

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;
280: if ( (tlinfo.DESCRIPTION = X_DESCRIPTION)

Line 288: app_exception.raise_exception;

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;
292:

Line 320: app_exception.raise_exception;

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',
324: x_rowid => X_ROWID,