DBA Data[Home] [Help]

APPS.LNS_TERMS_PUB dependencies on LNS_RATE_SCHEDULES

Line 1182: from lns_rate_schedules rs,

1178: l_first_payment_date date;
1179:
1180: cursor c_interest_only_exists (p_loan_id number) is
1181: select count(1)
1182: from lns_rate_schedules rs,
1183: lns_terms term
1184: where term.loan_id = p_loan_id
1185: and term.term_id = rs.term_id
1186: and rs.interest_only_flag = 'Y'

Line 1191: from lns_rate_schedules rs,

1187: and rs.phase <> 'OPEN';
1188:
1189: cursor c_max_int_installment(p_loan_id number) is
1190: select max(end_installment_number)
1191: from lns_rate_schedules rs,
1192: lns_terms term
1193: where term.loan_id = p_loan_id
1194: and term.term_id = rs.term_id
1195: and rs.interest_only_flag = 'Y'