Search Results allowable_amount
Overview
APPS.OIE_MGR_RPT_V is a reporting view owned by the APPS schema in Oracle E-Business Suite, classified under the AP - Payables product family. It exists to support Oracle Internet Expenses (OIE) management reporting, presenting a consolidated, manager-oriented picture of expense report activity that has progressed to the approval, invoicing, or payment stages. The view aggregates distribution-line level expense detail, associates it with the submitting employee and that employee's primary supervisor, and joins in policy violation data captured by the expense policy engine.
Its role is analytical rather than transactional. The view is not a maintenance object and is not updated by application logic; it is a read-only projection used to feed management dashboards and reports, including the seeded Expenses Management Reporting constructs. In the ETRM 12.2.2 metadata the object is listed with status VALID, and the query text confirms the view is intended to reconcile three separate measures per expense line: the amount actually claimed, the amount deemed allowable under policy, and the amount by which policy was exceeded.
Because the view surfaces an ALLOWABLE_AMOUNT column, it is commonly located by users searching on that term when attempting to reconcile corporate card or expense amounts against policy thresholds in OIE.
Underlying Base Objects
The view resolves through APPS synonyms and views. The documented referenced base objects are:
AP_EXPENSE_REPORTS,AP_EXPENSE_REPORT_HEADERS,AP_EXPENSE_REPORT_LINES,AP_EXPENSE_REPORT_PARAMS,AP_POL_VIOLATIONS, andAP_SYSTEM_PARAMETERS— all referenced as APPS synonyms and supplying the transactional expense data, the web parameter context, the policy violation rows, and the ledger/base currency setup.PER_ASSIGNMENTS_FandPER_PEOPLE_X— HRMS views providing the employee name and the primary supervisor relationship.AP_WEB_OA_ACTIVE_PKG,GL_CURRENCY_API,HR_GENERAL,HR_PERSON_NAME, andHR_SECURITY— PL/SQL packages invoked within the view text, used respectively for report status derivation, foreign currency conversion of amounts, and HR name/security resolution.
The join path is header-to-line, with AP_POL_VIOLATIONS outer-joined to the line on report header and distribution line number, so lines with no violation still appear. Rows are restricted to reports in MGRPAYAPPR, INVOICED, or PAID status, excluding non-validated web expenses and pay-on-behalf scenarios.
Key Columns
EMPLOYEE_ID/FULL_NAME— the expense report owner, joined fromPER_PEOPLE_X.EXPENSE_REPORT_DATE(AERH.WEEK_END_DATE) andREPORT_HEADER_ID— report identification and period.DISTRIBUTION_LINE_NUMBER,CATEGORY_CODE,VIOLATION_TYPE— line-level detail and the nature of any policy breach.LINE_AMOUNT— sum of functional currency amounts, with conversion applied where the line currency differs from the base currency.ALLOWABLE_AMOUNT— sum of functional currency allowable amounts, explicitly zeroed forDAILY_SUM_LIMITandCC_REQUIREDviolation types.VIOLATION_AMOUNT,NUMBER_OF_VIOLATIONS— the exceeded amount and count of violations.SUPERVISOR_ID— from the primary assignment, enabling manager roll-up.
Common Use Cases and Queries
Typical uses include manager-level expense policy compliance reporting, reconciliation of claimed versus allowable amounts, and analysis of violation frequency by employee or category.
- Allowable versus claimed reconciliation per employee:
SELECT employee_id, full_name, report_header_id,
SUM(line_amount) AS claimed,
SUM(allowable_amount) AS allowable,
SUM(violation_amount) AS exceeded
FROM apps.oie_mgr_rpt_v
WHERE expense_report_date BETWEEN :p_from AND :p_to
GROUP BY employee_id, full_name, report_header_id;
- Violations by supervisor and type:
SELECT supervisor_id, violation_type, SUM(number_of_violations) FROM apps.oie_mgr_rpt_v WHERE violation_type IS NOT NULL GROUP BY supervisor_id, violation_type;
Because the view embeds PL/SQL calls for currency conversion and HR security, queries should be filtered tightly to control execution cost.
-
View: OIE_MGR_RPT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.OIE_MGR_RPT_V, object_name:OIE_MGR_RPT_V, status:VALID, product: AP - Payables , description: Reporting View for Expenses Management Reporting , implementation_dba_data: APPS.OIE_MGR_RPT_V ,
-
View: OIE_MGR_RPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.OIE_MGR_RPT_V, object_name:OIE_MGR_RPT_V, status:VALID, product: AP - Payables , description: Reporting View for Expenses Management Reporting , implementation_dba_data: APPS.OIE_MGR_RPT_V ,
-
View: AP_EXPENSE_REPORT_VIOLATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_REPORT_VIOLATIONS_V, object_name:AP_EXPENSE_REPORT_VIOLATIONS_V, status:VALID, product: AP - Payables , description: View for all expense report violations and corresponding expense report lines that are ready for payment or have already been paid. , implementation_dba_data: APPS.AP_EXPENSE_REPORT_VIOLATIONS_V ,
-
View: AP_EXPENSE_REPORT_VIOLATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_EXPENSE_REPORT_VIOLATIONS_V, object_name:AP_EXPENSE_REPORT_VIOLATIONS_V, status:VALID, product: AP - Payables , description: View for all expense report violations and corresponding expense report lines that are ready for payment or have already been paid. , implementation_dba_data: APPS.AP_EXPENSE_REPORT_VIOLATIONS_V ,
-
View: AP_POL_VIOLATIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_POL_VIOLATIONS_V, object_name:AP_POL_VIOLATIONS_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_POL_VIOLATIONS_V ,
-
View: AP_POL_VIOLATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.AP_POL_VIOLATIONS_V, object_name:AP_POL_VIOLATIONS_V, status:VALID, product: AP - Payables , implementation_dba_data: APPS.AP_POL_VIOLATIONS_V ,
-
View: APBV_POL_VIOLATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.APBV_POL_VIOLATIONS, object_name:APBV_POL_VIOLATIONS, status:VALID, product: AP - Payables , description: Based on AP_POL_VIOLATIONS_ALL, this business view contains expense policy violation data. , implementation_dba_data: APPS.APBV_POL_VIOLATIONS ,
-
View: APBV_POL_VIOLATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLAP.APBV_POL_VIOLATIONS, object_name:APBV_POL_VIOLATIONS, status:VALID, product: AP - Payables , description: Based on AP_POL_VIOLATIONS_ALL, this business view contains expense policy violation data. , implementation_dba_data: APPS.APBV_POL_VIOLATIONS ,