Search Results qa_skiplot_association
Overview
QA_SKIPLOT_ASSOCIATION is a Quality (QA) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores the association between skip lot criteria and the inspection processes to which those criteria apply. Skip lot inspection allows a receiving or in-process inspection to be waived for a defined number of lots once a supplier or item has demonstrated a consistent quality history. The criteria that govern when skipping is permitted are defined independently of the processes that consume them, and QA_SKIPLOT_ASSOCIATION is the resolution table that binds the two together, optionally scoped by effective dates, lot size ranges, workflow role, and inspection stage.
From a dimensional modeling perspective, the mined foreign key structure classifies this object heuristically as a link table. It resolves a many-to-many relationship between skip lot criteria and skip lot processes, and its primary key is composed entirely of the two foreign key columns rather than a system-generated surrogate. This classification is offered as a modeling suggestion; the physical implementation is a standard EBS intersection table owned by the QA schema.
Key Information Stored
The table is documented with 13 columns. The most significant are:
- CRITERIA_ID — Foreign key to QA_SL_SP_RCV_CRITERIA. Identifies the skip lot criteria definition being applied. Part of the composite primary key QA_SKIPLOT_ASSOCIATION_PK1.
- PROCESS_ID — Foreign key to QA_SKIPLOT_PROCESSES. Identifies the inspection process that consumes the criteria. The second component of the composite primary key.
- EFFECTIVE_FROM and EFFECTIVE_TO — Date-range qualifiers that bound when the criteria-to-process association is active, supporting historical and future-dated configuration.
- LOTSIZE_FROM and LOTSIZE_TO — Lot size thresholds that scope the association, allowing different criteria to govern small versus large receipt or production lots.
- INSP_STAGE — The inspection stage at which the association applies, distinguishing receiving inspection from in-process or final inspection contexts.
- WF_ROLE_NAME — The workflow role name associated with the criteria-process link, used to route approval or notification activity.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — Standard EBS audit columns capturing who created and last modified the row and when.
The composite primary key (CRITERIA_ID, PROCESS_ID) is the business key: a given criteria definition may be linked to a given process only once in the base key, with effective dating and lot size ranges providing additional contextual variation.
Common Use Cases and Queries
Typical use cases include determining which skip lot criteria apply to a given inspection process, auditing effective-dated configuration changes, and validating lot size coverage before enabling skip lot processing.
A representative query resolves the criteria names for a specific process:
- SELECT a.criteria_id, a.process_id, a.effective_from, a.effective_to, a.lotsize_from, a.lotsize_to, a.insp_stage FROM qa_skiplot_association a WHERE a.process_id = :process_id AND SYSDATE BETWEEN a.effective_from AND NVL(a.effective_to, SYSDATE + 1);
- Join to QA_SL_SP_RCV_CRITERIA on CRITERIA_ID to retrieve criteria descriptions and thresholds.
- Join to QA_SKIPLOT_PROCESSES on PROCESS_ID to present the consuming process name in configuration reports.
Reporting scenarios include a "skip lot setup audit" listing all criteria-process links with effective dates, and a lot size gap analysis identifying ranges not covered by any association.
Related Objects
- QA_SL_SP_RCV_CRITERIA — Parent table referenced via QA_SKIPLOT_ASSOCIATION.CRITERIA_ID; holds the skip lot criteria definitions.
- QA_SKIPLOT_PROCESSES — Parent table referenced via QA_SKIPLOT_ASSOCIATION.PROCESS_ID; holds the inspection processes.
- QA_SKIPLOT_ASSOCIATION_PK1 — The composite primary key constraint on (CRITERIA_ID, PROCESS_ID).
- QA_SKIPLOT_HEADERS / skip lot transaction tables — Downstream tables that record actual skip decisions, dependent on the criteria-process association being valid.
- QA Inspection and Receiving APIs — PL/SQL packages that read the association to decide whether an inspection may be skipped at a given stage.
-
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_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: QA.QA_SKIPLOT_ASSOCIATION#
12.2.2
owner:QA, object_type:VIEW, object_name:QA_SKIPLOT_ASSOCIATION#, status:VALID,
-
VIEW: APPS.QA_SL_CRITERIA_ASSOCIATION_V
12.2.2
-
SYNONYM: APPS.QA_SKIPLOT_ASSOCIATION
12.1.1
owner:APPS, object_type:SYNONYM, object_name:QA_SKIPLOT_ASSOCIATION, status:VALID,
-
SYNONYM: APPS.QA_SKIPLOT_ASSOCIATION
12.2.2
owner:APPS, object_type:SYNONYM, object_name:QA_SKIPLOT_ASSOCIATION, status:VALID,
-
APPS.QA_SKIPLOT_EVAL_ENGINE SQL Statements
12.2.2
-
VIEW: APPS.QA_SKIPLOT_RCV_CRITERIA_VAL_V
12.1.1
-
VIEW: APPS.QA_SL_CRITERIA_ASSOCIATION_V
12.1.1
-
VIEW: APPS.QA_SKIPLOT_RCV_CRITERIA_VAL_V
12.2.2
-
VIEW: QA.QA_SKIPLOT_ASSOCIATION#
12.2.2
-
TABLE: QA.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,
-
APPS.QASLSP_TABLE_HANDLER_PKG SQL Statements
12.2.2
-
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.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,
-
APPS.QA_SKIPLOT_EVAL_ENGINE SQL Statements
12.1.1
-
Table: QA_SL_SP_RCV_CRITERIA
12.1.1
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SL_SP_RCV_CRITERIA, object_name:QA_SL_SP_RCV_CRITERIA, status:VALID, product: QA - Quality , description: Skip Lot/Sampling Criteria for Receiving , implementation_dba_data: QA.QA_SL_SP_RCV_CRITERIA ,
-
VIEW: APPS.QA_SKIPLOT_RCV_CRITERIA_V
12.1.1
-
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 ,
-
Table: QA_SL_SP_RCV_CRITERIA
12.2.2
owner:QA, object_type:TABLE, fnd_design_data:QA.QA_SL_SP_RCV_CRITERIA, object_name:QA_SL_SP_RCV_CRITERIA, status:VALID, product: QA - Quality , description: Skip Lot/Sampling Criteria for Receiving , implementation_dba_data: QA.QA_SL_SP_RCV_CRITERIA ,
-
APPS.QASLSP_TABLE_HANDLER_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.QASLSP_TABLE_HANDLER_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QASLSP_TABLE_HANDLER_PKG, status:VALID,
-
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_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 ,
-
VIEW: APPS.QA_SKIPLOT_RCV_CRITERIA_V
12.2.2
-
View: QA_SKIPLOT_RCV_CRITERIA_VAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_RCV_CRITERIA_VAL_V, object_name:QA_SKIPLOT_RCV_CRITERIA_VAL_V, status:VALID, product: QA - Quality , description: Valid Skip Lot criteria for Receiving , implementation_dba_data: APPS.QA_SKIPLOT_RCV_CRITERIA_VAL_V ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.QA_SL_SP_RCV_CRITERIA_ALL_V
12.2.2
-
APPS.QA_SKIPLOT_UTILITY SQL Statements
12.2.2
-
12.2.2 DBA Data
12.2.2
-
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 ,
-
PACKAGE BODY: APPS.QASLSP_TABLE_HANDLER_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QASLSP_TABLE_HANDLER_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
APPS.QA_SKIPLOT_UTILITY SQL Statements
12.1.1
-
PACKAGE BODY: APPS.QA_SKIPLOT_EVAL_ENGINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QA_SKIPLOT_EVAL_ENGINE, status:VALID,
-
PACKAGE BODY: APPS.QA_SKIPLOT_UTILITY
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QA_SKIPLOT_UTILITY, status:VALID,
-
View: QA_SKIPLOT_RCV_CRITERIA_VAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QA_SKIPLOT_RCV_CRITERIA_VAL_V, object_name:QA_SKIPLOT_RCV_CRITERIA_VAL_V, status:VALID, product: QA - Quality , description: Valid Skip Lot criteria for Receiving , implementation_dba_data: APPS.QA_SKIPLOT_RCV_CRITERIA_VAL_V ,
-
PACKAGE BODY: APPS.QA_SKIPLOT_RES_ENGINE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QA_SKIPLOT_RES_ENGINE, status:VALID,
-
PACKAGE BODY: APPS.QA_SKIPLOT_EVAL_ENGINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QA_SKIPLOT_EVAL_ENGINE, status:VALID,
-
PACKAGE BODY: APPS.QA_SKIPLOT_UTILITY
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:QA_SKIPLOT_UTILITY, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.QA_SKIPLOT_RES_ENGINE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:QA_SKIPLOT_RES_ENGINE, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.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,
-
VIEW: APPS.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,