DBA Data[Home] [Help]

APPS.IGS_RU_WORK_SET_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: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
34: IGS_RU_GEN_006.SET_TOKEN('IGS_RU_WORK_SET : P_ACTION INSERT, VALIDATE_INSERT : IGSUI15B.PLS');
35: IGS_GE_MSG_STACK.ADD;
36: App_Exception.Raise_Exception;
37: Close cur_old_ref_values;
38: Return;
39: END IF;
40: Close cur_old_ref_values;

Line 73: App_Exception.Raise_Exception;

69: IF upper(Column_Name) = 'SEQUENCE_NUMBER' OR Column_Name IS NULL THEN
70: IF new_references.sequence_number < 0 OR new_references.sequence_number > 999999 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:
77: END Check_Constraints;

Line 144: App_Exception.Raise_Exception;

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

Line 157: App_Exception.Raise_Exception;

153: new_references.sequence_number
154: ) THEN
155: Fnd_Message.Set_Name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
156: IGS_GE_MSG_STACK.ADD;
157: App_Exception.Raise_Exception;
158: END IF;
159: Check_Constraints;
160: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
161: Check_Constraints;

Line 219: app_exception.raise_exception;

215: end if;
216: else
217: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
218: IGS_GE_MSG_STACK.ADD;
219: app_exception.raise_exception;
220: end if;
221:
222: Before_DML(
223: p_action=>'INSERT',

Line 287: app_exception.raise_exception;

283: if (c1%notfound) then
284: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
285: IGS_RU_GEN_006.SET_TOKEN('IGS_RU_WORK_SET : P_ACTION LOCK_ROW : IGSUI15B.PLS');
286: IGS_GE_MSG_STACK.ADD;
287: app_exception.raise_exception;
288: close c1;
289: return;
290: end if;
291: close c1;