DBA Data[Home] [Help]

APPS.JAI_POPULATE_ATTRIBUTE dependencies on AP_INVOICES_ALL

Line 24: select 'Y' from ap_invoices_all

20: /* Added the below function for bug 16606774 */
21: function is_legacy_invoice(p_invoice_id IN NUMBER) return varchar2
22: is
23: cursor c_check_invoice is
24: select 'Y' from ap_invoices_all
25: where invoice_id=p_invoice_id
26: and source='LEGACY'
27: and invoice_type_lookup_code='PREPAYMENT';
28: