DBA Data[Home] [Help]

APPS.PA_HR_INVOICE dependencies on PA_DRAFT_INVOICES_ALL

Line 19: from pa_draft_invoices_all pa

15: where pa.person_id = P_PERSON_ID;
16:
17: cursor draft_inv( p_person_id number ) is
18: select null
19: from pa_draft_invoices_all pa
20: where pa.approved_by_person_id = P_PERSON_ID
21: or pa.released_by_person_id = P_PERSON_ID;
22:
23: BEGIN