DBA Data[Home] [Help]

APPS.AR_PUBLIC_UTILS dependencies on RA_CUSTOMER_TRX

Line 205: | access the prepayment_flag from ra_customer_trx view.Stub version

201: |
202: |
203: | NOTES
204: | A stub version of this routine is provided to product teams which
205: | access the prepayment_flag from ra_customer_trx view.Stub version
206: | always returns 'N'.
207: |
208: | MODIFICATION HISTORY
209: | Date Author Description of Changes

Line 226: FROM ra_customer_trx

222: BEGIN
223:
224: SELECT NVL(prepayment_flag,'N')
225: INTO l_prepayment_flag
226: FROM ra_customer_trx
227: WHERE customer_trx_id=p_customer_trx_id;
228:
229: RETURN l_prepayment_flag;
230: EXCEPTION