DBA Data[Home] [Help]

APPS.IGS_GE_S_ERROR_LOG_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: Close cur_old_ref_values;
37: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
38: IGS_GE_MSG_STACK.ADD;
39: App_Exception.Raise_Exception;
40: Return;
41: END IF;
42: Close cur_old_ref_values;
43:

Line 127: App_Exception.Raise_Exception;

123: new_references.sequence_number
124: )THEN
125: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
126: IGS_GE_MSG_STACK.ADD;
127: App_Exception.Raise_Exception;
128: END IF;
129: ELSIF (p_action = 'UPDATE') THEN
130: -- Call all the procedures related to Before Update.
131: Null;

Line 141: App_Exception.Raise_Exception;

137: new_references.sequence_number
138: )THEN
139: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
140: IGS_GE_MSG_STACK.ADD;
141: App_Exception.Raise_Exception;
142: END IF;
143: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
144: Null;
145: ELSIF (p_action = 'VALIDATE_DELETE') THEN

Line 284: app_exception.raise_exception;

280: if (c1%notfound) then
281: close c1;
282: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
283: IGS_GE_MSG_STACK.ADD;
284: app_exception.raise_exception;
285: return;
286: end if;
287: close c1;
288:

Line 306: app_exception.raise_exception;

302: null;
303: else
304: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
305: IGS_GE_MSG_STACK.ADD;
306: app_exception.raise_exception;
307: end if;
308: return;
309: end LOCK_ROW;
310: