DBA Data[Home] [Help]

APPS.OKL_INTEREST_CALC_PVT dependencies on OKL_PRICING_UTILS_PVT

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

636: l_khr_id NUMBER := 0;
637: l_no_of_days_in_year VARCHAR2(450);
638: -- gboomina Bug 4900213 - Added - Start
639: l_return_status VARCHAR2(1) := OKL_API.G_RET_STS_SUCCESS;
640: -- though l_no_of_days_in_month is not used, need to pass this to OKL_PRICING_UTILS_PVT.get_day_convention method.
641: l_no_of_days_in_month VARCHAR2(450);
642: -- gboomina Bug 4900213 - Added - End
643:
644: FUNCTION DO_CALC(p_principal_amount IN NUMBER,

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

694: END IF;
695: CLOSE cont_csr;
696:
697: -- Find out number of days in Year
698: -- Now OKL_PRICING_UTILS_PVT.get_day_convention method is used to get no of days in a year.
699:
700: OKL_PRICING_UTILS_PVT.get_day_convention(p_id => l_khr_id,
701: p_source => 'ISG', -- simply passing ISG
702: x_days_in_month => l_no_of_days_in_month,

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

696:
697: -- Find out number of days in Year
698: -- Now OKL_PRICING_UTILS_PVT.get_day_convention method is used to get no of days in a year.
699:
700: OKL_PRICING_UTILS_PVT.get_day_convention(p_id => l_khr_id,
701: p_source => 'ISG', -- simply passing ISG
702: x_days_in_month => l_no_of_days_in_month,
703: x_days_in_year => l_no_of_days_in_year,
704: x_return_status => l_return_status);