DBA Data[Home] [Help]

APPS.XTR_MM_COVERS dependencies on XTR_CALC_P

Line 90: -- Bug 3511403 start Used the same code of calc_days_run_ig in xtr_calc_p package to make it generic fix

86: year_basis IN OUT NOCOPY NUMBER,
87: fwd_adjust IN NUMBER DEFAULT NULL,
88: day_count_type IN VARCHAR2 DEFAULT NULL,
89: first_trans_flag IN VARCHAR2 DEFAULT NULL) is
90: -- Bug 3511403 start Used the same code of calc_days_run_ig in xtr_calc_p package to make it generic fix
91: --
92: l_start_date DATE := start_date;
93: l_end_date DATE := end_date;
94: l_start_year NUMBER := to_number(to_char(start_date,'YYYY'));

Line 1151: XTR_CALC_P.Calc_Days_Run_C (p_compound_rec.p_bond_start_date,

1147:
1148: if p_compound_rec.p_odd_coupon_start = p_compound_rec.p_bond_start_date then
1149: l_full_quasi_coupon := l_full_quasi_coupon + 1;
1150: else
1151: XTR_CALC_P.Calc_Days_Run_C (p_compound_rec.p_bond_start_date,
1152: p_compound_rec.p_odd_coupon_maturity,
1153: p_compound_rec.p_year_calc_type,
1154: p_compound_rec.p_frequency,
1155: l_nbr_days_in_period,

Line 1160: XTR_CALC_P.Calc_Days_Run_C (p_compound_rec.p_odd_coupon_start,

1156: l_year_basis,
1157: NULL,
1158: p_compound_rec.p_day_count_type,
1159: 'N');
1160: XTR_CALC_P.Calc_Days_Run_C (p_compound_rec.p_odd_coupon_start,
1161: p_compound_rec.p_odd_coupon_maturity,
1162: p_compound_rec.p_year_calc_type,
1163: p_compound_rec.p_frequency,
1164: l_total_coupon_days,

Line 1253: /* bug 2358592 merged various changes from xtr_calc_package

1249: END;
1250:
1251:
1252: -- added fhu 5/3/02
1253: /* bug 2358592 merged various changes from xtr_calc_package
1254: For Floating Rate Bond: p_yield becomes the Discount Margin.
1255: When it's passed in its unit is assumed to be in Percent, hence the
1256: caller need to make sure about the unit.
1257: When it's passed out its unit will be in Percent, hence the caller need to

Line 2374: --Copied some of the logic from xtr_calc_p.calc_bond_coupon_amounts

2370:
2371:
2372: --Bug 2804548
2373: --This procedure calculates Bond Coupon Amount.
2374: --Copied some of the logic from xtr_calc_p.calc_bond_coupon_amounts
2375: --
2376: PROCEDURE calc_bond_coupon_amt(p_in_rec IN CalcBondCpnAmt_in_rec,
2377: p_out_rec IN OUT NOCOPY CalcBondCpnAmt_out_rec) IS
2378:

Line 2540: XTR_CALC_P.Calc_Days_Run_C (

2536: -- Changed call to Calc_Days_Run_C from Calc_Days_Run in order
2537: -- to properly handle the year calc type of 'Actual/Actual-Bond'
2538: -- which was introduced in patchset C.
2539:
2540: XTR_CALC_P.Calc_Days_Run_C (
2541: l_last_coupon_date,
2542: l_coupon_date,
2543: l_year_calc_type,
2544: l_frequency,

Line 2566: XTR_CALC_P.Calc_Days_Run_C (

2562: -- Changed call from Calc_Days_Run to Calc_Days_Run_C in order
2563: -- to properly handle the year calc type of 'Actual/Actual-Bond'
2564: -- which was introduced in patchset C.
2565:
2566: XTR_CALC_P.Calc_Days_Run_C (
2567: l_last_coupon_date,
2568: l_coupon_date,
2569: l_year_calc_type,
2570: l_frequency,