DBA Data[Home] [Help]

APPS.IGS_AS_SPCL_CONS_CAT_PKG dependencies on APP_EXCEPTION

Line 39: App_Exception.Raise_Exception;

35: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
36: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
37: Igs_Ge_Msg_Stack.Add;
38: Close cur_old_ref_values;
39: App_Exception.Raise_Exception;
40: Return;
41: END IF;
42: Close cur_old_ref_values;
43:

Line 116: App_Exception.Raise_Exception;

112: column_name is null Then
113: IF new_references.closed_ind <> UPPER(new_references.closed_ind) or new_references.closed_ind NOT IN ( 'Y' , 'N' )Then
114: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
115: Igs_Ge_Msg_Stack.Add;
116: App_Exception.Raise_Exception;
117: END IF;
118: END IF;
119: IF upper(column_name) = 'SPCL_CONSIDERATION_CAT' OR
120: column_name is null Then

Line 124: App_Exception.Raise_Exception;

120: column_name is null Then
121: IF new_references.spcl_consideration_cat <> UPPER(new_references.spcl_consideration_cat) Then
122: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
123: Igs_Ge_Msg_Stack.Add;
124: App_Exception.Raise_Exception;
125: END IF;
126: END IF;
127:
128: END Check_Constraints;

Line 167: App_Exception.Raise_Exception;

163: new_references.spcl_consideration_cat
164: ) THEN
165: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
166: Igs_Ge_Msg_Stack.Add;
167: App_Exception.Raise_Exception;
168: END IF;
169:
170: Check_Constraints;
171: ELSIF (p_action = 'UPDATE') THEN

Line 185: App_Exception.Raise_Exception;

181: new_references.spcl_consideration_cat
182: ) THEN
183: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
184: Igs_Ge_Msg_Stack.Add;
185: App_Exception.Raise_Exception;
186: END IF;
187: Check_Constraints;
188: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
189: Check_Constraints;

Line 233: app_exception.raise_exception;

229: end if;
230: else
231: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
232: Igs_Ge_Msg_Stack.Add;
233: app_exception.raise_exception;
234: end if;
235: Before_DML(
236: p_action=>'INSERT',
237: x_rowid=>X_ROWID,

Line 302: app_exception.raise_exception;

298: if (c1%notfound) then
299: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
300: Igs_Ge_Msg_Stack.Add;
301: close c1;
302: app_exception.raise_exception;
303: return;
304: end if;
305: close c1;
306:

Line 315: app_exception.raise_exception;

311: null;
312: else
313: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
314: Igs_Ge_Msg_Stack.Add;
315: app_exception.raise_exception;
316: end if;
317: return;
318: end LOCK_ROW;
319:

Line 348: app_exception.raise_exception;

344: end if;
345: else
346: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
347: Igs_Ge_Msg_Stack.Add;
348: app_exception.raise_exception;
349: end if;
350: Before_DML(
351: p_action=>'UPDATE',
352: x_rowid=>X_ROWID,