Search Results expense_check_address_flag
Overview
AP_EXPENSE_REPORT_HEADERS_V is an Oracle Payables (AP) view owned by the APPS schema. It presents expense report header information and serves as the foundation for the Expense Report History feature in Oracle Internet Expenses (OIE). The view exposes a denormalized projection of expense report data, combining the underlying Payables expense report header records with derived attributes such as employee name, currency conversion details, and organizational context. Because it is a view rather than a base table, it provides read-only access to a curated set of columns suitable for inquiry screens, reporting, and integration logic that must reflect the current state of expense report submissions.
The view is a documented, VALID object in ETRM for both 12.1.1 and 12.2.2. Its primary role is to surface expense report history to end users and to support the OIE expense workflow, where submitted reports, their approval status, currency, and totals must be reconciled against Payment and Human Resources data.
Underlying Base Objects
The view is defined over a set of AP and shared objects. The principal base object is AP_EXPENSE_REPORT_HEADERS (exposed via an APPS synonym), from which the majority of columns—including DEFAULT_CURRENCY_CODE, ACCOUNTING_DATE, EXPENSE_REPORT_ID, TOTAL, and the ATTRIBUTE1–15 flexfield columns—are drawn. It also references AP_EXPENSE_REPORTS, AP_AWT_GROUPS (withholding tax groups), and FINANCIALS_SYSTEM_PARAMETERS.
- AP_EXPENSE_REPORT_HEADERS — primary source of header rows and currency data.
- AP_EXPENSE_REPORTS and AP_LOOKUP_CODES — supply report and code-related values.
- GL_DAILY_CONVERSION_TYPES — supports the exchange rate type lookup.
- AP_WEB_DB_HR_INT_PKG, AP_WEB_EXPENSE_FORM, HR_GENERAL, HR_PERSON_NAME, HR_SECURITY — packages used for the OIE web integration and employee name/security resolution.
- PER_CONT_WORKERS_CURRENT_X, PER_EMPLOYEES_X — HR views supplying employee information.
- FND_GLOBAL — supplies runtime session context such as org and user.
Key Columns
The view carries a broad set of columns mapping directly to header attributes. For the user search term DEFAULT_CURRENCY_CODE, this column identifies the default currency for the expense report and is central to currency conversion behavior. It works alongside DEFAULT_EXCHANGE_DATE, DEFAULT_EXCHANGE_RATE, and DEFAULT_EXCHANGE_RATE_TYPE, which together define how foreign-currency expense lines are converted into the functional currency of the ledger.
- EXPENSE_REPORT_ID / REPORT_HEADER_ID — unique identifier and header reference.
- INVOICE_NUM — invoice number assigned to the expense report.
- EMPLOYEE_ID / EMPLOYEE_CCID — the expense-reporting employee and their code combination.
- TOTAL — total expense report amount.
- ACCOUNTING_DATE and SET_OF_BOOKS_ID — accounting context.
- ORG_ID — operating unit, enabling multi-org filtering.
- HOLD_LOOKUP_CODE, REJECT_CODE, SOURCE, DOC_CATEGORY_CODE — status and source indicators.
Common Use Cases and Queries
Typical usage includes expense history inquiries in OIE, reconciliation reporting by operating unit, and identifying reports by default currency. A sample query filtering on the searched column is shown below.
- Report expense reports by default currency and ledger.
- Reconcile expense report totals against AP invoices.
- Track rejected or held reports by employee.
- Feed OIE Expense Report History and custom BI Publisher reports.
SELECT expense_report_id, invoice_num, employee_id, default_currency_code, total
FROM apps.ap_expense_report_headers_v
WHERE default_currency_code = 'USD'
AND org_id = :p_org_id;
Because the object is a view, no DML is permitted; all maintenance must target the underlying base tables. This preserves data integrity while allowing flexible read access for reporting and integration.
-
View: AP_EXPENSE_REPORT_HEADERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_REPORT_HEADERS_V, object_name:AP_EXPENSE_REPORT_HEADERS_V, status:VALID, product: AP - Payables , description: Expense Report History in Oracle Internet Expenses is based on this view , implementation_dba_data: APPS.AP_EXPENSE_REPORT_HEADERS_V ,
-
View: AP_EXPENSE_REPORT_HEADERS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_REPORT_HEADERS_V, object_name:AP_EXPENSE_REPORT_HEADERS_V, status:VALID, product: AP - Payables , description: Expense Report History in Oracle Internet Expenses is based on this view , implementation_dba_data: APPS.AP_EXPENSE_REPORT_HEADERS_V ,
-
View: APBV_EXPENSE_REPORT_HEADERS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.APBV_EXPENSE_REPORT_HEADERS, object_name:APBV_EXPENSE_REPORT_HEADERS, status:VALID, product: AP - Payables , implementation_dba_data: APPS.APBV_EXPENSE_REPORT_HEADERS ,
-
View: FIN_SYSTEM_PARAMS_ALL_MRC_V
12.2.2
product: AP - Payables , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: FIN_SYSTEM_PARAMS_ALL_MRC_V
12.1.1
product: AP - Payables , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: APBV_EXPENSE_REPORT_HEADERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.APBV_EXPENSE_REPORT_HEADERS, object_name:APBV_EXPENSE_REPORT_HEADERS, status:VALID, product: AP - Payables , implementation_dba_data: APPS.APBV_EXPENSE_REPORT_HEADERS ,
-
View: FINANCIALS_SYSTEM_PARAMS_MRC_V
12.2.2
product: AP - Payables , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: FINANCIALS_SYSTEM_PARAMS_MRC_V
12.1.1
product: AP - Payables , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,