DBA Data[Home] [Help]

APPS.OE_TRANSACTION_TYPES_PKG dependencies on APP_EXCEPTION

Line 418: app_exception.raise_exception;

414: fetch c into recinfo;
415: if (c%notfound) then
416: close c;
417: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
418: app_exception.raise_exception;
419: end if;
420: close c;
421: if ( (recinfo.TRANSACTION_TYPE_CODE = X_TRANSACTION_TYPE_CODE)
422: AND ((recinfo.ORDER_CATEGORY_CODE = X_ORDER_CATEGORY_CODE)

Line 544: app_exception.raise_exception;

540: ) then
541: null;
542: else
543: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
544: app_exception.raise_exception;
545: end if;
546:
547: for tlinfo in c1 loop
548: if (tlinfo.BASELANG = 'Y') then

Line 556: app_exception.raise_exception;

552: ) then
553: null;
554: else
555: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
556: app_exception.raise_exception;
557: end if;
558: end if;
559: end loop;
560: return;

Line 1003: app_exception.raise_exception;

999: AND ROWNUM=1;
1000: END IF;
1001: IF l_count > 0 THEN
1002: FND_MESSAGE.SET_NAME('ONT','OE_OE_TYPE_IN_USE');
1003: app_exception.raise_exception;
1004: ELSE
1005: select count(transaction_type_id) into l_count
1006: from oe_transaction_types_tl
1007: where UPPER(name) = UPPER(p_name)

Line 1013: app_exception.raise_exception;

1009: and transaction_type_id <> p_transaction_id;
1010:
1011: if l_count > 0 then
1012: FND_MESSAGE.SET_NAME('ONT','OE_OTHER_NAME_ALREADY_IN_USE');
1013: app_exception.raise_exception;
1014: end if;
1015: END IF;
1016: END IF;
1017: Exception