Search Results expct_cmplt_date




Overview

PMIFV_BATCH_DETAILS_V is an APPS-owned database view in Oracle E-Business Suite that exposes batch details for the Process Manufacturing Intelligence (PMI) product. PMI is documented as obsolete in ETRM, and this view should be regarded as a legacy reporting construct rather than a supported integration interface. It is not a table and holds no data of its own; it presents a flattened, security-filtered projection of process batch header and material detail information.

The view joins batch headers to their material lines and enriches each line with plant, organization, item, formula, routing, GL calendar, and costing policy attributes. Its principal role was to feed operational and costing reporting on completed batches, particularly batch material consumption and production quantities expressed in both transaction and primary units of measure, with an accompanying cost valuation.

Underlying Base Objects

The view is defined over the following documented objects:

Joins are driven by BATCH_ID between header and detail, PLANT_CODE to organization code, ITEM_ID to item master, FORMULA_ID to formula master, and ROUTING_ID to routing header. The batch's actual completion date is resolved against the GL calendar period boundaries, and the organization's company code links to the costing policy and calendar.

Key Columns

Common Use Cases and Queries

Typical usage centres on batch yield, material consumption, and cost reporting for completed batches within organizations the user is authorized to see. Because security filtering is embedded through PMI_SECURITY_PKG.SHOW_RECORD, results are constrained by the responsibility's organization access.

A representative query retrieves batch material consumption and valuation:

  • SELECT BATCH_NO, PLANT_CODE, ITEM_NO, LINE_TYPE, PLAN_QTY, ACTUAL_QTY, PERIOD_NAME, BASE_CURRENCY_CODE FROM APPS.PMIFV_BATCH_DETAILS_V WHERE PLANT_CODE = :plant AND ACTUAL_CMPLT_DATE BETWEEN :from_date AND :to_date;

Additional scenarios include reconciling formula and routing versions against actual batch execution, aggregating actual quantities by item and GL period, and comparing planned versus actual cost valuations per batch line. Note that no cost column is explicitly aliased in the defining query, so consumers should reference costing expressions positionally or wrap the view in an outer query with explicit aliases. Given the obsolete PMI status, new development should prefer supported Process Manufacturing reporting views.