Search Results line_currency_code
Overview
APFV_EXPENSE_REPORTS is a business view owned by the APPS schema and defined within the Oracle Payables (AP) module. It presents a consolidated, reporting-oriented projection of expense report and credit card invoice activity, joining invoice headers, invoice distributions, holds, accounting code combinations, suppliers, and HR person/assignment data into a single denormalized structure. The view is marked VALID in the ETRM 12.2.2 repository, confirming its availability for query and reporting purposes in Oracle EBS 12.1.1 and 12.2.2 environments.
The primary role of this view is to support operational and analytical reporting where a user needs expense report data tied back to the submitting employee and that employee's supervisor. Because the view text joins PER_ALL_PEOPLE_F twice — once as EMP (the employee) and once as SUP (the supervisor) — it exposes both the employee identifiers and the manager's identifiers, including supervisor employee number, first name, last name, and full name. This is directly relevant to the search term "manager_full_name," since the manager's name is surfaced through the SUP alias derived from PER_ALL_PEOPLE_F. Organizations typically use this view for auditing, expense analysis, and integration extracts where the reporting hierarchy is meaningful.
Underlying Base Objects
The view is defined over the following documented base objects:
- AP_INVOICES (SYNONYM) — invoice headers, aliased INV; restricted to INVOICE_TYPE_LOOKUP_CODE of 'EXPENSE REPORT', or 'STANDARD' sourced from 'CREDIT CARD'.
- AP_INVOICE_DISTRIBUTIONS_ALL (SYNONYM) — invoice distribution lines, aliased INV_DIST.
- AP_HOLDS_ALL (SYNONYM) — invoice holds, aliased INV_HOLDS, joined with an outer (+) operator so invoices without holds are still returned.
- GL_CODE_COMBINATIONS (SYNONYM) — accounting flexfield combinations, aliased EXP_GCC, linked via DIST_CODE_COMBINATION_ID.
- PO_VENDORS (VIEW) — supplier information, aliased POV, linked through VENDOR_ID and EMPLOYEE_ID.
- PER_ALL_PEOPLE_F (SYNONYM) — referenced twice as EMP (employee) and SUP (supervisor), joined on supervisor_id with an outer (+) operator.
- PER_ALL_ASSIGNMENTS_F (SYNONYM) — assignment records, aliased ASS, filtered to ASSIGNMENT_TYPE = 'E'; the invoice date is constrained between the assignment's effective start and end dates.
Key Columns
- INVOICE_NUM, VOUCHER_NUM, INVOICE_DATE, SOURCE, DESCRIPTION — invoice identity and classification from AP_INVOICES.
- INVOICE_AMOUNT (returned as TOTAL via NVL) — total invoice value.
- HOLD_LOOKUP_CODE — invoice hold code, with lookup meaning resolved through AP_LOOKUP_CODES.
- SUPERVISOR_ID, SUP.EMPLOYEE_NUMBER, SUP.FIRST_NAME, SUP.LAST_NAME, SUP.FULL_NAME — the manager/supervisor attributes; SUP.FULL_NAME is the manager_full_name of interest.
- EMPLOYEE_ID, EMP.EMPLOYEE_NUMBER, EMP.FIRST_NAME, EMP.LAST_NAME — the submitting employee's attributes.
- DISTRIBUTION_LINE_NUMBER, AMOUNT, LINE_TYPE_LOOKUP_CODE, RECEIPT_CURRENCY_CODE, EXCHANGE_RATE, EXCHANGE_RATE_TYPE, EXCHANGE_DATE — distribution-level detail.
- ORG_ID, SET_OF_BOOKS_ID, INVOICE_ID, VENDOR_NAME — multi-org and supplier context.
Common Use Cases and Queries
A frequent requirement is listing expense reports alongside the manager's full name. The following illustrates that pattern:
SELECT invoice_num, total, full_name AS employee_name, supervisor_id FROM apfv_expense_reports;SELECT invoice_num, total, supervisor_id FROM apfv_expense_reports WHERE supervisor_id IS NOT NULL;- Audit queries joining hold codes to supplier names, or filtering by ORG_ID and SET_OF_BOOKS_ID for multi-org reporting.
Note that the view aliases the supervisor's FULL_NAME without a distinct output alias, so in practice the manager attribute appears through the SUP join; consumers should select and alias appropriately. All queries should be run against the APPS schema or a synonym granted to the reporting user.
-
View: APFV_EXPENSE_REPORTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.APFV_EXPENSE_REPORTS, object_name:APFV_EXPENSE_REPORTS, status:VALID, product: AP - Payables , description: Business view , implementation_dba_data: APPS.APFV_EXPENSE_REPORTS ,
-
View: APFV_EXPENSE_REPORTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.APFV_EXPENSE_REPORTS, object_name:APFV_EXPENSE_REPORTS, status:VALID, product: AP - Payables , description: Business view , implementation_dba_data: APPS.APFV_EXPENSE_REPORTS ,