DBA Data[Home] [Help]

APPS.OKC_QA_PRICE_PVT dependencies on FND_PROFILE

Line 4: l_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');

1: PACKAGE BODY OKC_QA_PRICE_PVT AS
2: /* $Header: OKCRQARB.pls 120.0 2005/05/25 18:25:56 appldev noship $ */
3:
4: l_debug VARCHAR2(1) := NVL(FND_PROFILE.VALUE('AFLOG_ENABLED'),'N');
5:
6: TYPE NUM_TBL_TYPE IS TABLE OF NUMBER INDEX BY BINARY_INTEGER;
7: TYPE CHAR_TBL_TYPE IS TABLE OF VARCHAR2(450) INDEX BY BINARY_INTEGER;
8:

Line 66: If Nvl(fnd_profile.value('OKC_ADVANCED_PRICING'), 'N') <> 'Y' Then

62: okc_debug.Log('1000: Entering Check_Price',2);
63: END IF;
64: --
65: x_return_status := okc_api.g_ret_sts_success;
66: If Nvl(fnd_profile.value('OKC_ADVANCED_PRICING'), 'N') <> 'Y' Then
67: IF (l_debug = 'Y') THEN
68: okc_debug.log('1010: Profile OKC_ADVANCED_PRICING - ' || fnd_profile.value('OKC_ADVANCED_PRICING'));
69: END IF;
70: -- No need to set the return status here otherwise a blank message

Line 68: okc_debug.log('1010: Profile OKC_ADVANCED_PRICING - ' || fnd_profile.value('OKC_ADVANCED_PRICING'));

64: --
65: x_return_status := okc_api.g_ret_sts_success;
66: If Nvl(fnd_profile.value('OKC_ADVANCED_PRICING'), 'N') <> 'Y' Then
67: IF (l_debug = 'Y') THEN
68: okc_debug.log('1010: Profile OKC_ADVANCED_PRICING - ' || fnd_profile.value('OKC_ADVANCED_PRICING'));
69: END IF;
70: -- No need to set the return status here otherwise a blank message
71: -- will show up in the QA window with error/warning status
72: Raise G_EXCEPTION_HALT_VALIDATION;

Line 482: IF Nvl(fnd_profile.value('OKC_ADVANCED_PRICING'), 'N') = 'Y' THEN

478:
479: /*******************************************************************
480: We carry out nocopy the check regardless of whether Advanced Pricing is enabled
481:
482: IF Nvl(fnd_profile.value('OKC_ADVANCED_PRICING'), 'N') = 'Y' THEN
483: don't run this QA check if advanced pricing is turned on because the
484: fix for Bug 2386767 made in OKC_PRICE_PVT corrects a mismatch between
485: the covered line quantity and the non service line quantity.
486: If advanced pricing is off, we need to run this QA check to raise a QA error

Line 490: okc_debug.log('1010: Profile OKC_ADVANCED_PRICING - ' || fnd_profile.value('OKC_ADVANCED_PRICING'));

486: If advanced pricing is off, we need to run this QA check to raise a QA error
487: in case the covered line quantity and non service quantity don't match.
488:
489: IF (l_debug = 'Y') THEN
490: okc_debug.log('1010: Profile OKC_ADVANCED_PRICING - ' || fnd_profile.value('OKC_ADVANCED_PRICING'));
491: END IF;
492: -- No need to set the return status here otherwise a blank message
493: -- will show up in the QA window with error/warning status
494: RAISE G_EXCEPTION_HALT_VALIDATION;