DBA Data[Home] [Help]

APPS.OKL_INTEREST_CALC_PVT dependencies on OKL_PRICING_UTILS_PVT

Line 489: -- though l_no_of_days_in_month is not used, need to pass this to OKL_PRICING_UTILS_PVT.get_day_convention method.

485: l_khr_id NUMBER := 0;
486: l_no_of_days_in_year VARCHAR2(450);
487: -- gboomina Bug 4900213 - Added - Start
488: l_return_status VARCHAR2(1) := OKL_API.G_RET_STS_SUCCESS;
489: -- though l_no_of_days_in_month is not used, need to pass this to OKL_PRICING_UTILS_PVT.get_day_convention method.
490: l_no_of_days_in_month VARCHAR2(450);
491: -- gboomina Bug 4900213 - Added - End
492:
493: FUNCTION DO_CALC(p_principal_amount IN NUMBER,

Line 547: -- Now OKL_PRICING_UTILS_PVT.get_day_convention method is used to get no of days in a year.

543: END IF;
544: CLOSE cont_csr;
545:
546: -- Find out number of days in Year
547: -- Now OKL_PRICING_UTILS_PVT.get_day_convention method is used to get no of days in a year.
548:
549: OKL_PRICING_UTILS_PVT.get_day_convention(p_id => l_khr_id,
550: p_source => 'ISG', -- simply passing ISG
551: x_days_in_month => l_no_of_days_in_month,

Line 549: OKL_PRICING_UTILS_PVT.get_day_convention(p_id => l_khr_id,

545:
546: -- Find out number of days in Year
547: -- Now OKL_PRICING_UTILS_PVT.get_day_convention method is used to get no of days in a year.
548:
549: OKL_PRICING_UTILS_PVT.get_day_convention(p_id => l_khr_id,
550: p_source => 'ISG', -- simply passing ISG
551: x_days_in_month => l_no_of_days_in_month,
552: x_days_in_year => l_no_of_days_in_year,
553: x_return_status => l_return_status);