Search Results qa_skiplot_processes
Overview
QA_SKIPLOT_PROCESSES is the header table for Oracle EBS Quality Management's skip lot inspection functionality. It defines the rules by which a receiving or in-process inspection can be periodically skipped for a supplier, item, or combination thereof, once quality performance has been demonstrated to be stable. The table's PROCESS_ID acts as the surrogate primary key (QA_SKIPLOT_PROCESSES_PK1), and each row describes a named skip lot process, the inventory organization in which it is valid, and the disqualification thresholds that return an item to full inspection if a defect occurs.
The ETRM metadata classifies this object heuristically as hub-leaning within a Data Vault model. In practice, QA_SKIPLOT_PROCESSES behaves as a hub: it holds the durable business identity of a skip lot process (PROCESS_ID, PROCESS_CODE), while its children — QA_SKIPLOT_ASSOCIATION and QA_SKIPLOT_PROCESS_PLANS — act as link and satellite structures that attach the process to suppliers, items, and inspection plans. Treat this as a modeling suggestion rather than a mandated design.
Key Information Stored
Only the following columns are documented in the ETRM 12.2.2 physical schema (11 total). The most significant are:
- PROCESS_ID — surrogate primary key; system-generated identifier for the skip lot process. Also exposed as unique index QA_SKIPLOT_PROCESSES_U1.
- PROCESS_CODE — user-visible business key; a unique, meaningful code that identifies the process (unique index QA_SKIPLOT_PROCESSES_U2).
- DESCRIPTION — free-text description of the process, typically used in list-of-values and reports.
- ORGANIZATION_ID — the inventory organization in which the skip lot process applies; essential for multi-org filtering.
- DISQUALIFICATION_LOTS — number of consecutive defective lots (or occurrences) that disqualify the process and force reversion to normal inspection.
- DISQUALIFICATION_DAYS — the time window (in days) over which disqualification criteria are evaluated.
- Audit columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN, which support concurrency control and audit trail reporting.
The two unique indexes establish PROCESS_ID as the technical key and PROCESS_CODE as the candidate business key. In a Data Vault view, PROCESS_CODE is the natural business key that would anchor the hub, while the remaining descriptive and threshold attributes would be carried as satellite context.
Common Use Cases and Queries
Typical reporting scenarios include auditing which organizations have skip lot processes defined, verifying thresholds, and tracing which suppliers or items are associated with each process. A standard lookup by business key is:
SELECT PROCESS_ID, PROCESS_CODE, DESCRIPTION, ORGANIZATION_ID, DISQUALIFICATION_LOTS, DISQUALIFICATION_DAYS FROM QA.QA_SKIPLOT_PROCESSES WHERE ORGANIZATION_ID = :org_id;- Threshold review:
SELECT PROCESS_CODE, DISQUALIFICATION_LOTS, DISQUALIFICATION_DAYS FROM QA.QA_SKIPLOT_PROCESSES WHERE ORGANIZATION_ID = :org_id ORDER BY PROCESS_CODE; - Association join:
SELECT p.PROCESS_CODE, a.* FROM QA.QA_SKIPLOT_PROCESSES p, QA.QA_SKIPLOT_ASSOCIATION a WHERE p.PROCESS_ID = a.PROCESS_ID; - Plan join:
SELECT p.PROCESS_CODE, pl.* FROM QA.QA_SKIPLOT_PROCESSES p, QA.QA_SKIPLOT_PROCESS_PLANS pl WHERE p.PROCESS_ID = pl.PROCESS_ID;
These queries support QA administration dashboards, supplier scorecards, and audit readiness checks confirming that skip lot rules are configured consistently across inventory organizations.
Related Objects
The documented foreign key relationships identify the child tables that depend on QA_SKIPLOT_PROCESSES. The most significant related objects are:
- QA_SKIPLOT_ASSOCIATION — joins via
PROCESS_ID; links the skip lot process to specific suppliers, items, or supplier-item combinations. - QA_SKIPLOT_PROCESS_PLANS — joins via
PROCESS_ID; attaches inspection plans and sampling details to the process. - The originating EBS application tables (suppliers, items, and inspection plans in the PO, INV, and QA modules) that the association and plan tables in turn reference indirectly through the PROCESS_ID linkage.
With only two direct child tables documented, QA_SKIPLOT_PROCESSES is a relatively compact hub. Consumers should treat PROCESS_ID as the join key across all dependent tables and use PROCESS_CODE for user-facing lookups and cross-references.
-
Table: QA_SKIPLOT_PROCESSES
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SKIPLOT_PROCESSES, object_name:QA_SKIPLOT_PROCESSES, status:VALID, product: QA - Quality , description: Skip lot processes , implementation_dba_data: QA.QA_SKIPLOT_PROCESSES ,
-
Table: QA_SKIPLOT_PROCESSES
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SKIPLOT_PROCESSES, object_name:QA_SKIPLOT_PROCESSES, status:VALID, product: QA - Quality , description: Skip lot processes , implementation_dba_data: QA.QA_SKIPLOT_PROCESSES ,
-
VIEW: QA.QA_SKIPLOT_PROCESSES#
12.2.2
owner:QA, object_type:VIEW, object_name:QA_SKIPLOT_PROCESSES#, status:VALID,
-
SYNONYM: APPS.QA_SKIPLOT_PROCESSES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:QA_SKIPLOT_PROCESSES, status:VALID,
-
VIEW: QA.QA_SKIPLOT_PROCESSES#
12.2.2
-
VIEW: APPS.QA_SL_CRITERIA_ASSOCIATION_V
12.1.1
-
SYNONYM: APPS.QA_SKIPLOT_PROCESSES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:QA_SKIPLOT_PROCESSES, status:VALID,
-
VIEW: APPS.QA_SKIPLOT_STATE_HISTORY_V
12.2.2
-
VIEW: APPS.QA_SL_CRITERIA_ASSOCIATION_V
12.2.2
-
APPS.QASLSET_TABLE_HANDLER_PKG SQL Statements
12.1.1
-
VIEW: APPS.QA_SKIPLOT_PROCESSES_V
12.2.2
-
VIEW: APPS.QA_SKIPLOT_PLAN_STATE_V
12.1.1
-
VIEW: APPS.QA_SKIPLOT_PLAN_STATE_V
12.2.2
-
VIEW: APPS.QA_SKIPLOT_STATE_HISTORY_V
12.1.1
-
VIEW: APPS.QA_SKIPLOT_PROCESSES_V
12.1.1
-
APPS.QASLSET_TABLE_HANDLER_PKG SQL Statements
12.2.2
-
TABLE: QA.QA_SKIPLOT_PROCESSES
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SKIPLOT_PROCESSES, object_name:QA_SKIPLOT_PROCESSES, status:VALID,
-
TABLE: QA.QA_SKIPLOT_PROCESSES
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SKIPLOT_PROCESSES, object_name:QA_SKIPLOT_PROCESSES, status:VALID,
-
Table: QA_SKIPLOT_ASSOCIATION
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SKIPLOT_ASSOCIATION, object_name:QA_SKIPLOT_ASSOCIATION, status:VALID, product: QA - Quality , description: Skip Lot Criteria-Process Association , implementation_dba_data: QA.QA_SKIPLOT_ASSOCIATION ,
-
Table: QA_SKIPLOT_PROCESS_PLANS
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SKIPLOT_PROCESS_PLANS, object_name:QA_SKIPLOT_PROCESS_PLANS, status:VALID, product: QA - Quality , description: Skip Lot Process Plans , implementation_dba_data: QA.QA_SKIPLOT_PROCESS_PLANS ,
-
VIEW: APPS.QA_SKIPLOT_RCV_CRITERIA_V
12.1.1
-
Table: QA_SKIPLOT_ASSOCIATION
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SKIPLOT_ASSOCIATION, object_name:QA_SKIPLOT_ASSOCIATION, status:VALID, product: QA - Quality , description: Skip Lot Criteria-Process Association , implementation_dba_data: QA.QA_SKIPLOT_ASSOCIATION ,
-
VIEW: APPS.QA_SKIPLOT_RCV_CRITERIA_V
12.2.2
-
Table: QA_SKIPLOT_PROCESS_PLANS
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SKIPLOT_PROCESS_PLANS, object_name:QA_SKIPLOT_PROCESS_PLANS, status:VALID, product: QA - Quality , description: Skip Lot Process Plans , implementation_dba_data: QA.QA_SKIPLOT_PROCESS_PLANS ,
-
View: QA_SL_CRITERIA_ASSOCIATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SL_CRITERIA_ASSOCIATION_V, object_name:QA_SL_CRITERIA_ASSOCIATION_V, status:VALID, product: QA - Quality , description: Skip Lot association to criteria header , implementation_dba_data: APPS.QA_SL_CRITERIA_ASSOCIATION_V ,
-
View: QA_SKIPLOT_PROCESSES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_PROCESSES_V, object_name:QA_SKIPLOT_PROCESSES_V, status:VALID, product: QA - Quality , description: Valid Skip Lot Criteria for Receiving , implementation_dba_data: APPS.QA_SKIPLOT_PROCESSES_V ,
-
View: QA_SL_CRITERIA_ASSOCIATION_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SL_CRITERIA_ASSOCIATION_V, object_name:QA_SL_CRITERIA_ASSOCIATION_V, status:VALID, product: QA - Quality , description: Skip Lot association to criteria header , implementation_dba_data: APPS.QA_SL_CRITERIA_ASSOCIATION_V ,
-
PACKAGE BODY: APPS.QASLSET_TABLE_HANDLER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QASLSET_TABLE_HANDLER_PKG, status:VALID,
-
View: QA_SKIPLOT_STATE_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_STATE_HISTORY_V, object_name:QA_SKIPLOT_STATE_HISTORY_V, status:VALID, product: QA - Quality , description: Skip Lot state history , implementation_dba_data: APPS.QA_SKIPLOT_STATE_HISTORY_V ,
-
View: QA_SKIPLOT_STATE_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_STATE_HISTORY_V, object_name:QA_SKIPLOT_STATE_HISTORY_V, status:VALID, product: QA - Quality , description: Skip Lot state history , implementation_dba_data: APPS.QA_SKIPLOT_STATE_HISTORY_V ,
-
VIEW: APPS.QA_SL_SP_RCV_CRITERIA_ALL_V
12.2.2
-
PACKAGE BODY: APPS.QASLSET_TABLE_HANDLER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QASLSET_TABLE_HANDLER_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.QA_SL_SP_RCV_CRITERIA_ALL_V
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
View: QA_SKIPLOT_PROCESSES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_PROCESSES_V, object_name:QA_SKIPLOT_PROCESSES_V, status:VALID, product: QA - Quality , description: Valid Skip Lot Criteria for Receiving , implementation_dba_data: APPS.QA_SKIPLOT_PROCESSES_V ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.QA_SKIPLOT_EVAL_ENGINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QA_SKIPLOT_EVAL_ENGINE, status:VALID,
-
View: QA_SKIPLOT_PLAN_STATE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_PLAN_STATE_V, object_name:QA_SKIPLOT_PLAN_STATE_V, status:VALID, product: QA - Quality , description: Skip Lot plan state , implementation_dba_data: APPS.QA_SKIPLOT_PLAN_STATE_V ,
-
PACKAGE BODY: APPS.QA_SKIPLOT_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QA_SKIPLOT_UTILITY, status:VALID,
-
View: QA_SKIPLOT_PLAN_STATE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_PLAN_STATE_V, object_name:QA_SKIPLOT_PLAN_STATE_V, status:VALID, product: QA - Quality , description: Skip Lot plan state , implementation_dba_data: APPS.QA_SKIPLOT_PLAN_STATE_V ,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.QA_SKIPLOT_RCV_RESULTS_V
12.1.1
-
PACKAGE BODY: APPS.QA_SKIPLOT_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QA_SKIPLOT_UTILITY, status:VALID,
-
VIEW: APPS.QA_SKIPLOT_RCV_RESULTS_V
12.2.2
-
PACKAGE BODY: APPS.QASLSET_TABLE_HANDLER_PKG
12.1.1