DBA Data[Home] [Help]

APPS.OKL_LOAN_AMORT_SCHEDULE_PVT dependencies on FND_DATE

Line 87: SELECT FND_DATE.canonical_to_date(sll.rule_information2) start_date,

83: fin_cle_rec fin_cle_csr%ROWTYPE;
84:
85: CURSOR pymt_sched_csr(p_chr_id IN NUMBER,
86: p_cle_id IN NUMBER) IS
87: SELECT FND_DATE.canonical_to_date(sll.rule_information2) start_date,
88: TO_NUMBER(sll.rule_information7) stub_days,
89: TO_NUMBER(sll.rule_information3) periods,
90: DECODE(sll.object1_id1, 'M',1,'Q',3,'S',6,'A',12) frequency,
91: sll.rule_information10 arrears_yn

Line 2604: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).start_date := Fnd_Date.canonical_to_date(l_payment_table(i).start_date);

2600: l_pmnt_tab_counter := l_pmnt_tab_counter + 1;
2601: l_payment_details_counter := 1;
2602: l_pmnt_tab(l_pmnt_tab_counter).kle_id := l_payment_table(i).kle_id;
2603:
2604: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).start_date := Fnd_Date.canonical_to_date(l_payment_table(i).start_date);
2605: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).number_of_periods := l_payment_table(i).number_of_periods;
2606: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).stub_days := l_payment_table(i).stub_days;
2607: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).stub_amount := l_payment_table(i).stub_amount;
2608: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).advance_or_arrears := l_payment_table(i).advance_or_arrears;

Line 2613: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).start_date := Fnd_Date.canonical_to_date(l_payment_table(i).start_date);

2609:
2610: l_prev_kle_id := l_payment_table(i).kle_id;
2611: l_payment_details_counter := l_payment_details_counter + 1;
2612: ELSE
2613: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).start_date := Fnd_Date.canonical_to_date(l_payment_table(i).start_date);
2614: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).number_of_periods := l_payment_table(i).number_of_periods;
2615: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).stub_days := l_payment_table(i).stub_days;
2616: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).stub_amount := l_payment_table(i).stub_amount;
2617: l_pmnt_tab(l_pmnt_tab_counter).l_payment_details(l_payment_details_counter).advance_or_arrears := l_payment_table(i).advance_or_arrears;

Line 2652: IF (Fnd_Date.canonical_to_date(l_start_date) <> Fnd_Date.canonical_to_date(l_pmnt_tab(i).l_payment_details(j).start_date)) OR

2648: l_stub_days := l_pmnt_tab(1).l_payment_details(j).stub_days;
2649: l_advance_or_arrears := l_pmnt_tab(1).l_payment_details(j).advance_or_arrears;
2650: FOR i IN 2..l_pmnt_tab.LAST
2651: LOOP
2652: IF (Fnd_Date.canonical_to_date(l_start_date) <> Fnd_Date.canonical_to_date(l_pmnt_tab(i).l_payment_details(j).start_date)) OR
2653: (NVL(l_number_of_periods,0) <> NVL(l_pmnt_tab(i).l_payment_details(j).number_of_periods,0)) OR
2654: (NVL(l_stub_days,0) <> NVL(l_pmnt_tab(i).l_payment_details(j).stub_days,0)) OR
2655: (NVL(l_advance_or_arrears,'N') <> NVL(l_pmnt_tab(i).l_payment_details(j).advance_or_arrears,'N')) THEN
2656: