DBA Data[Home] [Help]

APPS.IGS_FI_INV_INT_PKG dependencies on APP_EXCEPTION

Line 97: App_Exception.Raise_Exception;

93: IF (cur_old_ref_values%NOTFOUND) AND (p_action NOT IN ('INSERT','VALIDATE_INSERT')) THEN
94: Close cur_old_ref_values;
95: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
96: IGS_GE_MSG_STACK.ADD;
97: App_Exception.Raise_Exception;
98: Return;
99: END IF;
100: Close cur_old_ref_values;
101:

Line 245: App_Exception.Raise_Exception;

241: new_references.waiver_reason
242: )THEN
243: Fnd_Message.Set_Name ('FND', 'FORM_RECORD_DELETED');
244: IGS_GE_MSG_STACK.ADD;
245: App_Exception.Raise_Exception;
246: END IF;
247:
248: IF (((old_references.status = new_references.status) OR
249: (new_references.status IS NULL))) THEN

Line 257: App_Exception.Raise_Exception;

253: new_references.status
254: ) THEN
255: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
256: IGS_GE_MSG_STACK.ADD;
257: App_Exception.Raise_Exception;
258: END IF;
259:
260: IF (((old_references.transaction_type = new_references.transaction_type) OR
261: (new_references.transaction_type IS NULL))) THEN

Line 269: App_Exception.Raise_Exception;

265: new_references.transaction_type
266: ) THEN
267: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
268: IGS_GE_MSG_STACK.ADD;
269: App_Exception.Raise_Exception;
270: END IF;
271:
272: IF (((old_references.bill_id = new_references.bill_id)) OR
273: ((new_references.bill_id IS NULL))) THEN

Line 280: app_exception.raise_exception;

276: new_references.bill_id
277: ) THEN
278: fnd_message.set_name ('FND', 'FORM_RECORD_DELETED');
279: igs_ge_msg_stack.add;
280: app_exception.raise_exception;
281: END IF;
282:
283: -- Following code added as part of the Enhancement Bug#1754956
284: --removed reference to subaccount_id,ie., code which calls IGS_FI_SUBACCTS_PKG.Get_PK_For_Validation.

Line 301: App_Exception.Raise_Exception;

297: new_references.waiver_name
298: ) THEN
299: Fnd_Message.Set_Name ('FND','FORM_RECORD_DELETED');
300: IGS_GE_MSG_STACK.ADD;
301: App_Exception.Raise_Exception;
302: END IF;
303:
304: END Check_Parent_Existance;
305:

Line 409: app_exception.raise_exception;

405: IF (cur_rowid%FOUND) THEN
406: CLOSE cur_rowid;
407: fnd_message.set_name ('IGS', 'IGS_FI_INVI_FBLLA_FK');
408: igs_ge_msg_stack.add;
409: app_exception.raise_exception;
410: RETURN;
411: END IF;
412: CLOSE cur_rowid;
413:

Line 546: App_Exception.Raise_Exception;

542: IF Get_Pk_For_Validation(
543: new_references.invoice_id) THEN
544: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
545: IGS_GE_MSG_STACK.ADD;
546: App_Exception.Raise_Exception;
547: END IF;
548: Check_Constraints;
549: Check_Parent_Existance;
550: beforeRowInsertUpdateDelete(p_inserting => TRUE);

Line 563: App_Exception.Raise_Exception;

559: IF Get_PK_For_Validation (
560: new_references.invoice_id) THEN
561: Fnd_Message.Set_name('IGS','IGS_GE_MULTI_ORG_DUP_REC');
562: IGS_GE_MSG_STACK.ADD;
563: App_Exception.Raise_Exception;
564: END IF;
565: Check_Constraints;
566: ELSIF (p_action = 'VALIDATE_UPDATE') THEN
567: Check_Constraints;

Line 710: app_exception.raise_exception;

706: end if;
707: else
708: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
709: IGS_GE_MSG_STACK.ADD;
710: app_exception.raise_exception;
711: end if;
712:
713: SELECT
714: IGS_FI_INV_INT_S.nextval

Line 1002: app_exception.raise_exception;

998: IF (c1%notfound) THEN
999: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
1000: igs_ge_msg_stack.add;
1001: CLOSE c1;
1002: app_exception.raise_exception;
1003: RETURN;
1004: END IF;
1005: CLOSE c1;
1006:

Line 1052: app_exception.raise_exception;

1048: NULL;
1049: ELSE
1050: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
1051: igs_ge_msg_stack.add;
1052: app_exception.raise_exception;
1053: END IF;
1054:
1055: RETURN;
1056:

Line 1156: app_exception.raise_exception;

1152: end if;
1153: else
1154: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
1155: IGS_GE_MSG_STACK.ADD;
1156: app_exception.raise_exception;
1157: end if;
1158: Before_DML(
1159: p_action =>'UPDATE',
1160: x_rowid =>X_ROWID,