DBA Data[Home] [Help]

APPS.OKC_QA_PRICE_PVT dependencies on OKC_PRICE_PVT

Line 14: l_cle_price_tbl OKC_PRICE_PVT.CLE_PRICE_TBL_TYPE;

10: Procedure Check_Price(
11: x_return_status OUT NOCOPY VARCHAR2,
12: p_chr_id IN NUMBER) Is
13:
14: l_cle_price_tbl OKC_PRICE_PVT.CLE_PRICE_TBL_TYPE;
15: l_control_rec OKC_PRICE_PUB.PRICE_CONTROL_REC_TYPE;
16: l_msg_count NUMBER;
17: l_msg_data VARCHAR2(240);
18: l_return_status VARCHAR2(3);

Line 235: l_cle_price_tbl OKC_PRICE_PVT.CLE_PRICE_TBL_TYPE;

231: x_return_status OUT NOCOPY VARCHAR2) IS
232:
233:
234:
235: l_cle_price_tbl OKC_PRICE_PVT.CLE_PRICE_TBL_TYPE;
236: l_msg_count NUMBER;
237: l_msg_data VARCHAR2(240);
238: l_return_status VARCHAR2(3);
239: l_application_id okc_k_headers_b.application_id%TYPE;

Line 336: okc_debug.Log('Start : okc_price_pvt.validate_covered_line_qty ',3);

332: okc_debug.Set_Indentation('validate_covered_line_qty');
333: END IF;
334:
335: IF (l_debug = 'Y') THEN
336: okc_debug.Log('Start : okc_price_pvt.validate_covered_line_qty ',3);
337: END IF;
338: /* Note: we already perform validation to ensure that the contract is for intent of sale and for OKC, OKO
339: in OKC_QA_PRICE_PVT.Check_Price */
340:

Line 439: okc_debug.Log('passed okc_price_pvt.validate_covered_line_qty');

435:
436:
437: If x_return_status <> OKC_API.G_RET_STS_ERROR then
438: IF (l_debug = 'Y') THEN
439: okc_debug.Log('passed okc_price_pvt.validate_covered_line_qty');
440: END IF;
441: End if;
442:
443: IF (l_debug = 'Y') THEN

Line 444: okc_debug.Log('End : okc_price_pvt.validate_covered_line_qty ',3);

440: END IF;
441: End if;
442:
443: IF (l_debug = 'Y') THEN
444: okc_debug.Log('End : okc_price_pvt.validate_covered_line_qty ',3);
445: END IF;
446:
447: EXCEPTION
448: WHEN OTHERS THEN

Line 450: okc_debug.Log('Error : unexpected error in okc_price_pvt.validate_covered_line_qty ',3);

446:
447: EXCEPTION
448: WHEN OTHERS THEN
449: IF (l_debug = 'Y') THEN
450: okc_debug.Log('Error : unexpected error in okc_price_pvt.validate_covered_line_qty ',3);
451: okc_debug.Log('Error : '|| sqlerrm, 3);
452: END IF;
453:
454: IF c_get_quantity1%ISOPEN THEN

Line 484: fix for Bug 2386767 made in OKC_PRICE_PVT corrects a mismatch between

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
487: in case the covered line quantity and non service quantity don't match.
488: