DBA Data[Home] [Help]

APPS.IGS_AS_SPCL_CONS_OUT_PKG dependencies on APP_EXCEPTION

Line 40: App_Exception.Raise_Exception;

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

Line 122: App_Exception.Raise_Exception;

118: column_name is null Then
119: IF new_references.closed_ind <> UPPER(new_references.closed_ind) or new_references.closed_ind NOT IN ( 'Y' , 'N' ) Then
120: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
121: Igs_Ge_Msg_Stack.Add;
122: App_Exception.Raise_Exception;
123: END IF;
124: END IF;
125:
126: IF upper(column_name) = 'SPCL_CONSIDERATION_OUTCOME' OR

Line 131: App_Exception.Raise_Exception;

127: column_name is null Then
128: IF new_references.spcl_consideration_outcome <> UPPER(new_references.spcl_consideration_outcome) Then
129: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
130: Igs_Ge_Msg_Stack.Add;
131: App_Exception.Raise_Exception;
132: END IF;
133: END IF;
134: IF upper(column_name) = 'SOUGHT_OUTCOME_IND' OR
135: column_name is null Then

Line 139: App_Exception.Raise_Exception;

135: column_name is null Then
136: IF new_references.sought_outcome_ind NOT IN ( 'Y' , 'N' ) Then
137: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
138: Igs_Ge_Msg_Stack.Add;
139: App_Exception.Raise_Exception;
140: END IF;
141: END IF;
142:
143: END Check_Constraints;

Line 185: App_Exception.Raise_Exception;

181: new_references.spcl_consideration_outcome
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:
188: Check_Constraints;
189: ELSIF (p_action = 'UPDATE') THEN

Line 203: App_Exception.Raise_Exception;

199: new_references.spcl_consideration_outcome
200: ) THEN
201: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
202: Igs_Ge_Msg_Stack.Add;
203: App_Exception.Raise_Exception;
204: END IF;
205: Check_Constraints;
206: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
207: Check_Constraints;

Line 248: app_exception.raise_exception;

244: end if;
245: else
246: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
247: Igs_Ge_Msg_Stack.Add;
248: app_exception.raise_exception;
249: end if;
250: Before_DML(
251: p_action=>'INSERT',
252: x_rowid=>X_ROWID,

Line 323: app_exception.raise_exception;

319: if (c1%notfound) then
320: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
321: Igs_Ge_Msg_Stack.Add;
322: close c1;
323: app_exception.raise_exception;
324: return;
325: end if;
326: close c1;
327:

Line 337: app_exception.raise_exception;

333: null;
334: else
335: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
336: Igs_Ge_Msg_Stack.Add;
337: app_exception.raise_exception;
338: end if;
339: return;
340: end LOCK_ROW;
341:

Line 371: app_exception.raise_exception;

367: end if;
368: else
369: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
370: Igs_Ge_Msg_Stack.Add;
371: app_exception.raise_exception;
372: end if;
373: Before_DML(
374: p_action=>'UPDATE',
375: x_rowid=>X_ROWID,