DBA Data[Home] [Help]

APPS.LNS_FIN_UTILS dependencies on LNS_BILLING_UTIL_PUB

Line 1537: l_installments := LNS_BILLING_UTIL_PUB.LAST_PAYMENT_NUMBER(p_loan_id);

1533: end if; --if p_phase = 'OPEN'
1534:
1535: -- fix for bug 8309391: set number of installments = last billed istall number or 1 if no rows in amort sched
1536: if l_installments = 0 then
1537: l_installments := LNS_BILLING_UTIL_PUB.LAST_PAYMENT_NUMBER(p_loan_id);
1538: if l_installments = 0 then
1539: l_installments := 1;
1540: end if;
1541: end if;

Line 2138: l_last_installment := LNS_BILLING_UTIL_PUB.LAST_PAYMENT_NUMBER(p_loan_id);

2134:
2135: l_last_installment := 1;
2136: l_active_rate := -1;
2137:
2138: l_last_installment := LNS_BILLING_UTIL_PUB.LAST_PAYMENT_NUMBER(p_loan_id);
2139:
2140: if l_last_installment = 0
2141: then l_last_installment := 1;
2142: end if;

Line 2563: l_installment_no := LNS_BILLING_UTIL_PUB.LAST_PAYMENT_NUMBER(p_loan_id) + 1;

2559: END LOOP;
2560:
2561: IF l_installment_no IS NULL THEN
2562: logMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, l_api_name || ' Did not find match, assigning next installment to be billed');
2563: l_installment_no := LNS_BILLING_UTIL_PUB.LAST_PAYMENT_NUMBER(p_loan_id) + 1;
2564: END IF;
2565:
2566: logMessage(FND_LOG.LEVEL_STATEMENT, G_PKG_NAME, l_api_name || ' l_installment_no = ' || l_installment_no);
2567: logMessage(FND_LOG.LEVEL_PROCEDURE, G_PKG_NAME, l_api_name || ' - END');