DBA Data[Home] [Help]

APPS.IGS_PE_DATA_GROUPS_PKG dependencies on APP_EXCEPTION

Line 65: App_Exception.Raise_Exception;

61: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
62: Close cur_old_ref_values;
63: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
64: IGS_GE_MSG_STACK.ADD;
65: App_Exception.Raise_Exception;
66: Return;
67: END IF;
68: Close cur_old_ref_values;
69:

Line 124: App_Exception.Raise_Exception;

120: Column_Name IS NULL THEN
121: IF NOT (new_references.closed_ind IN ('Y', 'N')) THEN
122: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
123: IGS_GE_MSG_STACK.ADD;
124: App_Exception.Raise_Exception;
125: END IF;
126: END IF;
127:
128: IF column_name IS NULL THEN

Line 141: App_Exception.Raise_Exception;

137: Column_Name IS NULL THEN
138: IF NOT (new_references.lvl IN (1,2,3,4,5)) THEN
139: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
140: IGS_GE_MSG_STACK.ADD;
141: App_Exception.Raise_Exception;
142: END IF;
143: END IF;
144:
145:

Line 166: app_exception.raise_exception;

162: new_references.data_group
163: ) THEN
164: Fnd_Message.Set_Name ('IGS', 'IGS_GE_MULTI_ORG_DUP_REC');
165: IGS_GE_MSG_STACK.ADD;
166: app_exception.raise_exception;
167: END IF;
168: END Check_Uniqueness ;
169:
170: FUNCTION Get_PK_For_Validation (

Line 321: App_Exception.Raise_Exception;

317: IF Get_Pk_For_Validation(
318: new_references.data_group_id) THEN
319: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
320: IGS_GE_MSG_STACK.ADD;
321: App_Exception.Raise_Exception;
322: END IF;
323: Check_Constraints;
324: Check_Uniqueness;
325: ELSIF (p_action = 'UPDATE') THEN

Line 336: App_Exception.Raise_Exception;

332: IF Get_PK_For_Validation (
333: new_references.data_group_id) THEN
334: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
335: IGS_GE_MSG_STACK.ADD;
336: App_Exception.Raise_Exception;
337: END IF;
338: Check_Constraints;
339:
340: ELSIF (p_action = 'VALIDATE_UPDATE') THEN

Line 427: app_exception.raise_exception;

423: end if;
424: else
425: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
426: IGS_GE_MSG_STACK.ADD;
427: app_exception.raise_exception;
428: end if;
429:
430: Select IGS_PE_DATA_GROUPS_S.NEXTVAL into X_DATA_GROUP_ID From Dual;
431:

Line 527: app_exception.raise_exception;

523: if (c1%notfound) then
524: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
525: IGS_GE_MSG_STACK.ADD;
526: close c1;
527: app_exception.raise_exception;
528: return;
529: end if;
530: close c1;
531: if ( ( tlinfo.DATA_GROUP = X_DATA_GROUP)

Line 541: app_exception.raise_exception;

537: null;
538: else
539: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
540: IGS_GE_MSG_STACK.ADD;
541: app_exception.raise_exception;
542: end if;
543: return;
544: end LOCK_ROW;
545:

Line 589: app_exception.raise_exception;

585: end if;
586: else
587: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
588: IGS_GE_MSG_STACK.ADD;
589: app_exception.raise_exception;
590: end if;
591: Before_DML(
592: p_action=>'UPDATE',
593: x_rowid=>X_ROWID,