DBA Data[Home] [Help]

APPS.IGS_RU_GROUP_ITEM_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: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
37: IGS_RU_GEN_006.SET_TOKEN('IGS_RU_GROUP_ITEM : P_ACTION INSERT VALIDATE_INSERT : IGSUI05B.PLS');
38: IGS_GE_MSG_STACK.ADD;
39: App_Exception.Raise_Exception;
40: Close cur_old_ref_values;
41: Return;
42: END IF;
43: Close cur_old_ref_values;

Line 89: App_Exception.Raise_Exception;

85: v_message_name) IS NULL
86: THEN
87: Fnd_Message.Set_Name('IGS',v_message_name);
88: IGS_GE_MSG_STACK.ADD;
89: App_Exception.Raise_Exception;
90: END IF;
91: IGS_RU_VAL_RGI.rulp_set_rgi(new_references.rug_sequence_number,
92: new_references.description_number,
93: new_references.description_type);

Line 116: App_Exception.Raise_Exception;

112: THEN
113: v_message_name := 'IGS_GE_GROUP_INSERT_NOT_ALLOW';
114: Fnd_Message.Set_Name('IGS',v_message_name);
115: IGS_GE_MSG_STACK.ADD;
116: App_Exception.Raise_Exception;
117: END IF;
118: -- populate IGS_RU_GROUP_SET, trigger ancestor groups in IGS_RU_GROUP_ITEM
119: IGS_RU_VAL_RGI.rulp_ins_rgi;
120:

Line 145: App_Exception.Raise_Exception ;

141: IF upper(Column_name) = 'RUG_SEQUENCE_NUMBER' OR COLUMN_NAME IS NULL THEN
142: IF new_references.RUG_SEQUENCE_NUMBER < 1 or new_references.RUG_SEQUENCE_NUMBER > 999999 then
143: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
144: IGS_GE_MSG_STACK.ADD;
145: App_Exception.Raise_Exception ;
146: END IF;
147:
148: END IF ;
149:

Line 154: App_Exception.Raise_Exception ;

150: IF upper(Column_name) = 'DESCRIPTION_NUMBER' OR COLUMN_NAME IS NULL THEN
151: IF new_references.DESCRIPTION_NUMBER < 1 or new_references.DESCRIPTION_NUMBER > 999999 then
152: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
153: IGS_GE_MSG_STACK.ADD;
154: App_Exception.Raise_Exception ;
155: END IF;
156:
157: END IF ;
158:

Line 163: App_Exception.Raise_Exception ;

159: IF upper(Column_name) = 'DESCRIPTION_TYPE' OR COLUMN_NAME IS NULL THEN
160: IF new_references.DESCRIPTION_TYPE not in ('RUG','RUD') then
161: Fnd_Message.Set_Name('IGS','IGS_GE_INVALID_VALUE');
162: IGS_GE_MSG_STACK.ADD;
163: App_Exception.Raise_Exception ;
164: END IF;
165:
166: END IF ;
167:

Line 186: App_Exception.Raise_Exception;

182: ) THEN
183: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
184: IGS_RU_GEN_006.SET_TOKEN('IGS_RU_GROUP : P_ACTIONCheck_Parent_Existanc rug_sequence_number : IGSUI05B.PLS');
185: IGS_GE_MSG_STACK.ADD;
186: App_Exception.Raise_Exception;
187: END IF;
188: END IF;
189:
190: END Check_Parent_Existance;

Line 242: App_Exception.Raise_Exception;

238: IF (cur_rowid%FOUND) THEN
239: Close cur_rowid;
240: Fnd_Message.Set_Name ('IGS', 'IGS_RU_RGI_RUG_FK');
241: IGS_GE_MSG_STACK.ADD;
242: App_Exception.Raise_Exception;
243: Return;
244: END IF;
245: Close cur_rowid;
246:

Line 286: App_Exception.Raise_Exception;

282: new_references.description_type
283: ) THEN
284: Fnd_Message.Set_Name ('IGS', 'IGS_GE_RECORD_ALREADY_EXISTS');
285: IGS_GE_MSG_STACK.ADD;
286: App_Exception.Raise_Exception;
287: END IF;
288: Check_Constraints;
289: Check_Parent_Existance;
290: ELSIF (p_action = 'UPDATE') THEN

Line 306: App_Exception.Raise_Exception;

302: new_references.description_type
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_Constraints;
309: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
310: Check_Constraints;

Line 366: app_exception.raise_exception;

362: end if;
363: else
364: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
365: IGS_GE_MSG_STACK.ADD;
366: app_exception.raise_exception;
367: end if;
368:
369: Before_DML(
370: p_action=>'INSERT',

Line 433: app_exception.raise_exception;

429: if (c1%notfound) then
430: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
431: IGS_RU_GEN_006.SET_TOKEN('IGS_RU_GROUP_ITEM : P_ACTION LOCK_ROW : IGSUI05B.PLS');
432: IGS_GE_MSG_STACK.ADD;
433: app_exception.raise_exception;
434: close c1;
435: return;
436: end if;
437: close c1;

Line 469: app_exception.raise_exception;

465: end if;
466: else
467: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
468: IGS_GE_MSG_STACK.ADD;
469: app_exception.raise_exception;
470: end if;
471: Before_DML(
472: p_action=>'UPDATE',
473: x_rowid=>X_ROWID,