DBA Data[Home] [Help]

APPS.OE_TRANSACTION_TYPES_PKG dependencies on APP_EXCEPTION

Line 427: app_exception.raise_exception;

423: fetch c into recinfo;
424: if (c%notfound) then
425: close c;
426: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
427: app_exception.raise_exception;
428: end if;
429: close c;
430: if ( (recinfo.TRANSACTION_TYPE_CODE = X_TRANSACTION_TYPE_CODE)
431: AND ((recinfo.ORDER_CATEGORY_CODE = X_ORDER_CATEGORY_CODE)

Line 557: app_exception.raise_exception;

553: ) then
554: null;
555: else
556: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
557: app_exception.raise_exception;
558: end if;
559:
560: for tlinfo in c1 loop
561: if (tlinfo.BASELANG = 'Y') then

Line 569: app_exception.raise_exception;

565: ) then
566: null;
567: else
568: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
569: app_exception.raise_exception;
570: end if;
571: end if;
572: end loop;
573: return;

Line 1021: app_exception.raise_exception;

1017: AND ROWNUM=1;
1018: END IF;
1019: IF l_count > 0 THEN
1020: FND_MESSAGE.SET_NAME('ONT','OE_OE_TYPE_IN_USE');
1021: app_exception.raise_exception;
1022: ELSE
1023: select count(transaction_type_id) into l_count
1024: from oe_transaction_types_tl
1025: where UPPER(name) = UPPER(p_name)

Line 1031: app_exception.raise_exception;

1027: and transaction_type_id <> p_transaction_id;
1028:
1029: if l_count > 0 then
1030: FND_MESSAGE.SET_NAME('ONT','OE_OTHER_NAME_ALREADY_IN_USE');
1031: app_exception.raise_exception;
1032: end if;
1033: END IF;
1034: END IF;
1035: Exception