DBA Data[Home] [Help]

APPS.PO_PRICE_BREAK_GRP dependencies on APP_EXCEPTION

Line 442: app_exception.raise_exception;

438:
439: l_progress := '100';
440:
441: IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
442: app_exception.raise_exception;
443: END IF; /* IF (l_return_status <> FND_API.G_RET_STS_SUCCESS) */
444:
445: IF (l_pricing_date IS NULL) THEN
446: l_pricing_date :=trunc(NVL(p_need_by_date, SYSDATE));

Line 660: app_exception.raise_exception;

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

Line 723: app_exception.raise_exception;

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

Line 732: app_exception.raise_exception;

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

Line 826: app_exception.raise_exception;

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