DBA Data[Home] [Help]

APPS.IGS_AD_CONV_GS_VALS_PKG dependencies on APP_EXCEPTION

Line 48: App_Exception.Raise_Exception;

44: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
45: Close cur_old_ref_values;
46: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
47: IGS_GE_MSG_STACK.ADD;
48: App_Exception.Raise_Exception;
49: Return;
50: END IF;
51: Close cur_old_ref_values;
52:

Line 100: -- APP_EXCEPTION.RAISE_EXCEPTION;

96: IF upper(column_name) = 'FROM_GPA' OR column_name IS NULL THEN
97: -- IF new_references.from_gpa < 0 THEN
98: -- FND_MESSAGE.SET_NAME('IGS','IGS_GE_INVALID_VALUE');
99: -- IGS_GE_MSG_STACK.ADD;
100: -- APP_EXCEPTION.RAISE_EXCEPTION;
101: -- END IF;
102: null;
103: END IF;
104:

Line 109: -- APP_EXCEPTION.RAISE_EXCEPTION;

105: IF upper(column_name) = 'TO_GPA' OR column_name IS NULL THEN
106: -- IF new_references.to_gpa < 0 THEN
107: -- FND_MESSAGE.SET_NAME('IGS','IGS_GE_INVALID_VALUE');
108: -- IGS_GE_MSG_STACK.ADD;
109: -- APP_EXCEPTION.RAISE_EXCEPTION;
110: -- END IF;
111: null;
112: END IF;
113:

Line 136: app_exception.raise_exception;

132: ,new_references.to_gpa
133: ) THEN
134: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
135: IGS_GE_MSG_STACK.ADD;
136: app_exception.raise_exception;
137: END IF;
138: END Check_Uniqueness ;
139:
140: PROCEDURE Check_Parent_Existance AS

Line 159: App_Exception.Raise_Exception;

155: ELSIF NOT Igs_Ad_Conv_Gs_Types_Pkg.Get_PK_For_Validation (
156: new_references.conv_gs_types_id ) THEN
157: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
158: IGS_GE_MSG_STACK.ADD;
159: App_Exception.Raise_Exception;
160: END IF;
161: END Check_Parent_Existance;
162:
163: FUNCTION Get_PK_For_Validation (

Line 255: App_Exception.Raise_Exception;

251: IF (cur_rowid%FOUND) THEN
252: Close cur_rowid;
253: Fnd_Message.Set_Name ('IGS', 'IGS_AD_ACGV_ACGT_FK');
254: IGS_GE_MSG_STACK.ADD;
255: App_Exception.Raise_Exception;
256: Return;
257: END IF;
258: Close cur_rowid;
259: END Get_FK_Igs_Ad_Conv_Gs_Types;

Line 306: App_Exception.Raise_Exception;

302: new_references.conv_gs_values_id
303: ) THEN
304: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
305: IGS_GE_MSG_STACK.ADD;
306: App_Exception.Raise_Exception;
307: END IF;
308: Check_Uniqueness;
309: --Check_Constraints;
310: Check_Parent_Existance;

Line 323: App_Exception.Raise_Exception;

319: new_references.conv_gs_values_id
320: ) THEN
321: Fnd_Message.Set_name('IGS','IGS_GE_RECORD_ALREADY_EXISTS');
322: IGS_GE_MSG_STACK.ADD;
323: App_Exception.Raise_Exception;
324: END IF;
325: Check_Uniqueness;
326: --Check_Constraints;
327: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 375: app_exception.raise_exception;

371: end if;
372: else
373: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
374: IGS_GE_MSG_STACK.ADD;
375: app_exception.raise_exception;
376: end if;
377:
378: X_CONV_GS_VALUES_ID := -1;
379: Before_DML(

Line 454: app_exception.raise_exception;

450: if (c1%notfound) then
451: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
452: IGS_GE_MSG_STACK.ADD;
453: close c1;
454: app_exception.raise_exception;
455: return;
456: end if;
457: close c1;
458: if (( tlinfo.CONV_GS_TYPES_ID = X_CONV_GS_TYPES_ID)

Line 466: app_exception.raise_exception;

462: null;
463: else
464: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
465: IGS_GE_MSG_STACK.ADD;
466: app_exception.raise_exception;
467: end if;
468: return;
469: end LOCK_ROW;
470:

Line 509: app_exception.raise_exception;

505: end if;
506: else
507: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
508: IGS_GE_MSG_STACK.ADD;
509: app_exception.raise_exception;
510: end if;
511: Before_DML(
512: p_action=>'UPDATE',
513: x_rowid=>X_ROWID,