DBA Data[Home] [Help]

APPS.IGS_CA_DA_CAT_PKG dependencies on APP_EXCEPTION

Line 36: App_Exception.Raise_Exception;

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

Line 72: App_Exception.Raise_Exception;

68: if upper(column_name) = 'DT_CAT' or column_name is null Then
69: if new_references.dt_cat <> UPPER( new_references.dt_cat) then
70: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');IGS_GE_MSG_STACK.ADD;
71: IGS_GE_MSG_STACK.ADD;
72: App_Exception.Raise_Exception;
73: end if;
74: end if;
75:
76: END Check_Constraints ;

Line 145: App_Exception.Raise_Exception;

141: IF Get_PK_For_Validation (
142: new_references.dt_cat) THEN
143: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
144: IGS_GE_MSG_STACK.ADD;
145: App_Exception.Raise_Exception;
146: END IF;
147: Check_Constraints;
148: ELSIF (p_action = 'VALIDATE_INSERT') THEN
149: IF Get_PK_For_Validation (

Line 153: App_Exception.Raise_Exception;

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

Line 198: app_exception.raise_exception;

194: end if;
195: else
196: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
197: IGS_GE_MSG_STACK.ADD;
198: app_exception.raise_exception;
199: end if;
200: Before_DML (
201: p_action =>'INSERT',
202: x_rowid =>X_ROWID,

Line 258: app_exception.raise_exception;

254: if (c1%notfound) then
255: close c1;
256: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
257: IGS_GE_MSG_STACK.ADD;
258: app_exception.raise_exception;
259: return;
260: end if;
261: close c1;
262:

Line 269: app_exception.raise_exception;

265: null;
266: else
267: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
268: IGS_GE_MSG_STACK.ADD;
269: app_exception.raise_exception;
270:
271: end if;
272: return;
273: end LOCK_ROW;

Line 301: app_exception.raise_exception;

297: end if;
298: else
299: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
300: IGS_GE_MSG_STACK.ADD;
301: app_exception.raise_exception;
302: end if;
303: Before_DML (
304: p_action =>'UPDATE',
305: x_rowid =>X_ROWID,