DBA Data[Home] [Help]

APPS.PO_PRICE_BREAK_GRP dependencies on APP_EXCEPTION

Line 444: app_exception.raise_exception;

440: PO_DEBUG.debug_var(l_log_head,l_progress,'l_return_status',l_return_status);
441: END IF; /* IF g_debug_stmt */
442:
443: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
444: app_exception.raise_exception;
445: END IF; /* IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) */
446:
447: IF (l_pricing_date IS NULL) THEN
448: l_pricing_date := NVL(p_need_by_date, SYSDATE);

Line 656: app_exception.raise_exception;

652: PO_DEBUG.debug_stmt(l_log_head,l_progress,'After Call Advanced Pricing API(GBPA)');
653: END IF;
654:
655: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
656: app_exception.raise_exception;
657: END IF;
658:
659: x_base_price := round(l_new_currency_price * v_conversion_rate,
660: l_base_curr_ext_precision);

Line 719: app_exception.raise_exception;

715: PO_DEBUG.debug_var(l_log_head,l_progress,'l_return_status',l_return_status);
716: END IF; /* IF g_debug_stmt */
717:
718: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
719: app_exception.raise_exception;
720: END IF; /* IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) */
721:
722: IF (l_new_currency_price IS NOT NULL) THEN -- The custom API returned back a price.
723: IF (l_new_currency_price < 0) THEN -- Price has to be greater than or equal to zero

Line 728: app_exception.raise_exception;

724: po_message_s.app_error('PO_CUSTOM_PRICE_LESS_0',
725: 'ROUTINE', l_api_name,
726: 'ERR_NUMBER', l_progress,
727: 'CUSTOM_PRICING_API', 'GET_CUSTOM_REQ_PRICE');
728: app_exception.raise_exception;
729: END IF; /* IF (l_new_currency_price <0) */
730: x_base_price := round(l_new_currency_price * v_conversion_rate,
731: l_base_curr_ext_precision);
732: -- Bug 3417479, don't populate base_unit_price if source document is not CONTRACT

Line 822: app_exception.raise_exception;

818: PO_DEBUG.debug_stmt(l_log_head,l_progress,'After Call Advanced Pricing API(CPA)');
819: END IF;
820:
821: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
822: app_exception.raise_exception;
823: END IF; /* IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) */
824:
825: -- Bug 3373445
826: x_base_price := round(l_new_currency_price * v_conversion_rate,