Search Results sample_number
Overview
PMIFV_QC_RESULTS_V is an APPS-owned database view in the Oracle EBS Process Manufacturing Intelligence (PMI) product family. It is designated as the "QC Results Full View," and its purpose is to present a denormalized, reporting-friendly projection of quality control results captured in Process Manufacturing. The view joins result-level data from QC_RSLT_MST to the specifications, samples, lots, batches, formulas, routings, operations, items, customers, and vendors that give those results business meaning.
In the context of ETRM 12.2.2 the object is owned by APPS and is reported as VALID. It functions primarily as a read-only reporting and integration surface: rather than requiring report authors or interface developers to reconstruct the underlying multi-table joins, the view exposes a single flat structure with resolved foreign keys presented as human-readable identifiers such as item numbers, lot numbers, batch numbers, and party names. The user search term test_provider_code maps directly to the TEST_PROVIDER_CODE column selected from QC_RSLT_MST, which records the provider responsible for a given quality result.
Underlying Base Objects
The view is defined over a set of APPS synonyms and, per the documented metadata, references FND_GLOBAL as a package and FND_LOOKUPS as a view. The qualifying synonyms are FM_FORM_MST, FM_OPRN_MST, FM_ROUT_HDR, GME_BATCH_HEADER, HZ_CUST_ACCOUNTS_ALL, HZ_PARTIES, IC_ITEM_MST, IC_LOTS_MST, PO_VEND_MST, QC_ASSY_TYP, QC_RSLT_MST, QC_SMPL_MST, and QC_SPEC_MST.
The driving table is QC_RSLT_MST (aliased QR), which supplies the actual result values, result date, test provider code, location, and routing step number. Specification context comes from QC_SPEC_MST (QS), joined on the QC specification identifier. Sample context comes from QC_SMPL_MST (SAM), which is itself joined outward to formulas (FM_FORM_MST), routings (FM_ROUT_HDR), customers (HZ_CUST_ACCOUNTS_ALL and HZ_PARTIES), and items (IC_ITEM_MST). Batch context is joined through GME_BATCH_HEADER, lot context through IC_LOTS_MST, and vendor context through PO_VEND_MST. Lookup meanings for the ACCEPT_ANYWAY and FINAL_MARK flags are resolved from FND_LOOKUPS. Most of these joins are outer joins, signaled by the (+) notation, which means results are retained even where optional related data such as batch, routing, or customer is absent.
Key Columns
- TEST_PROVIDER_CODE — the code identifying the provider of the test result, sourced from QC_RSLT_MST.
- NUM_RESULT and TEXT_RESULT — the numeric and textual forms of the measured result.
- RESULT_DATE — the date the result was recorded, essential for trending and time-series analysis.
- MIN_SPEC, MAX_SPEC, TARGET_SPEC, TEXT_SPEC — specification limits and targets against which results are evaluated.
- ASSAY_CODE, QUALITY_CONTROL_UNIT_CODE, QUALITY_CONTROL_SPEC_ID — the assay, unit of measure, and specification identity.
- DOCUMENT_TYPE, FROM_DATE, VENDOR_SPECIFICATION, CUSTOMER_SPECIFICATION — specification metadata indicating the source and validity of the specification.
- ACCEPT_ANYWAY and FINAL_MARK — decoded lookup meanings describing disposition of the result.
- ITEM_NUMBER, ITEM_DESCRIPTION, LOT_NUMBER, SUB_LOT_NUMBER, SAMPLE_NUMBER, BATCH_NUMBER — product and material identification context.
- FORMULA_NUMBER, FORMULA_VERSION, ROUTING_NUMBER, ROUTING_VERSION, OPERATION_NUMBER, ROUTING_STEP_NUMBER — manufacturing process context.
- CUSTOMER_NUMBER, CUSTOMER_NAME, VENDOR_NO, VENDOR_NAME — trading partner context.
- ORGANIZATION_CODE and WAREHOUSE_CODE — organizational and storage location context.
- DELETE_MARK and LAST_UPDATE_DATE — standard EBS housekeeping columns for active-record filtering and incremental extraction.
Common Use Cases and Queries
Typical uses include quality result trending by item or lot, supplier quality analysis keyed on test provider, batch release reporting, and extraction to a data warehouse. Because the view resolves so many relationships, it is well suited to ad hoc querying and to integration feeds where a flat QC results record is required.
To isolate results attributable to a specific test provider, filter on TEST_PROVIDER_CODE:
SELECT item_number, lot_number, batch_number, test_provider_code, num_result, text_result, result_date FROM apps.pmifv_qc_results_v WHERE test_provider_code = :p_provider_code AND delete_mark = 0 ORDER BY result_date DESC;SELECT organization_code, item_number, num_result, min_spec, max_spec, result_date FROM apps.pmifv_qc_results_v WHERE num_result > max_spec AND delete_mark = 0;SELECT customer_name, vendor_name, test_provider_code, COUNT(*) FROM apps.pmifv_qc_results_v WHERE delete_mark = 0 GROUP BY customer_name, vendor_name, test_provider_code;
Because the view depends on synonyms rather than exposing raw table access, query it through the APPS schema or a suitable synonym, and always include DELETE_MARK = 0 to restrict output to active rows.
-
View: PMIFV_QC_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_QC_RESULTS_V, object_name:PMIFV_QC_RESULTS_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: QC Results Full View , implementation_dba_data: APPS.PMIFV_QC_RESULTS_V ,
-
View: PMIBV_QC_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_QC_RESULTS_V, object_name:PMIBV_QC_RESULTS_V, status:VALID, product: PMI - Process Manufacturing Intelligence , description: QC Results Full View , implementation_dba_data: APPS.PMIBV_QC_RESULTS_V ,
-
View: PMIBV_QC_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_QC_RESULTS_V, object_name:PMIBV_QC_RESULTS_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: QC Results Full View , implementation_dba_data: APPS.PMIBV_QC_RESULTS_V ,
-
View: PMIFV_QC_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_QC_RESULTS_V, object_name:PMIFV_QC_RESULTS_V, status:VALID, product: PMI - Process Manufacturing Intelligence (Obsolete) , description: QC Results Full View , implementation_dba_data: APPS.PMIFV_QC_RESULTS_V ,
-
VIEW: APPS.PMIFV_QC_RESULTS_V
12.1.1
-
VIEW: APPS.PMIFV_QC_RESULTS_V
12.2.2
-
VIEW: APPS.PMIFV_QC_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_QC_RESULTS_V, object_name:PMIFV_QC_RESULTS_V, status:VALID,
-
VIEW: APPS.PMIBV_QC_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_QC_RESULTS_V, object_name:PMIBV_QC_RESULTS_V, status:VALID,
-
VIEW: APPS.PMIBV_QC_RESULTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIBV_QC_RESULTS_V, object_name:PMIBV_QC_RESULTS_V, status:VALID,
-
VIEW: APPS.PMIBV_QC_RESULTS_V
12.2.2
-
VIEW: APPS.PMIFV_QC_RESULTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PMI.PMIFV_QC_RESULTS_V, object_name:PMIFV_QC_RESULTS_V, status:VALID,
-
VIEW: APPS.PMIBV_QC_RESULTS_V
12.1.1
-
PACKAGE: APPS.INV_GENEALOGY_REPORT_GEN
12.2.2
-
PACKAGE: APPS.INV_GENEALOGY_REPORT_GEN
12.1.1
-
PACKAGE BODY: APPS.INV_GENEALOGY_REPORT_GEN
12.1.1
-
PACKAGE BODY: APPS.INV_GENEALOGY_REPORT_GEN
12.2.2
-
eTRM - PMI Tables and Views
12.1.1
-
eTRM - PMI Tables and Views
12.2.2