DBA Data[Home] [Help]

APPS.IGS_CA_DT_OF_MTH_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 73: App_Exception.Raise_Exception;

69: If upper(Column_name)= 'CURRENT_USER' Or column_name is null then
70: If UPPER(new_references.current_user) <> new_references.current_user Then
71: Fnd_Message.Set_Name ('IGS', 'IGS_GE_INVALID_VALUE');
72: IGS_GE_MSG_STACK.ADD;
73: App_Exception.Raise_Exception;
74: End if;
75: End if;
76: END Check_Constraints;
77:

Line 139: app_exception.raise_exception;

135: x_current_user
136: ) Then
137: fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
138: IGS_GE_MSG_STACK.ADD;
139: app_exception.raise_exception;
140: end if;
141: check_constraints;
142:
143: ELSIF (p_action = 'UPDATE') THEN

Line 158: app_exception.raise_exception;

154: x_current_user
155: ) Then
156: fnd_message.set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
157: IGS_GE_MSG_STACK.ADD;
158: app_exception.raise_exception;
159: end if;
160: check_constraints;
161: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
162: Check_Constraints;

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 255: app_exception.raise_exception;

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