Search Results end_effective_date
Overview
QABV_COLLECTION_PLANS is a read-only Oracle EBS view owned by the APPS schema and defined in the Quality (QA) product. It presents collection plan header information from the QA_PLANS table in a denormalized, reporting-friendly form by resolving internal lookup codes into their user-facing meanings. The view is described in the ETRM metadata as "Retrofitted," indicating it was introduced or reconciled as part of multi-release support across Oracle EBS 12.1.1 and 12.2.2. Because it declares WITH READ ONLY, it cannot be used for DML; it is intended strictly for query, reporting, and integration consumption.
The view is particularly relevant to users searching for end_effective_date. That search term maps directly to the view's END_EFFECTIVE_DATE column, which exposes QA_PLANS.EFFECTIVE_TO under a more descriptive alias. This lets report authors and integrators reference effective-dating information consistently without needing to know the underlying column naming in QA_PLANS.
Underlying Base Objects
The view is defined over four documented base objects:
- QA_PLANS (referenced via synonym COLLECTION_PLAN) — the primary source of collection plan header data, including plan name, description, effective dates, organization, and audit columns.
- MFG_LOOKUPS (alias MF) — joined with LOOKUP_TYPE = 'QA_PLAN_SPEC_TYPE' to translate SPEC_ASSIGNMENT_TYPE into a meaningful specification assignment type.
- FND_COMMON_LOOKUPS (alias FN) — joined with LOOKUP_TYPE = 'COLLECTION_PLAN_TYPE' and APPLICATION_ID = 250 to translate PLAN_TYPE_CODE into the descriptive collection plan type.
- FND_GLOBAL (package) — referenced in the dependency metadata, typically for environment/session context rather than direct column projection.
The joins are lookup-based rather than referential-key based, so a collection plan whose lookup values are missing or inactive may be filtered out of the result set. These are inner joins, which affects completeness of returned rows.
Key Columns
- PLAN_ID — unique identifier of the collection plan; the recommended join key to other QA objects.
- COLLECTION_PLAN_NAME — the plan name (QA_PLANS.NAME).
- DESCRIPTION — plan description text.
- START_EFFECTIVE_DATE — start of the plan's effective range (QA_PLANS.EFFECTIVE_FROM).
- END_EFFECTIVE_DATE — end of the plan's effective range (QA_PLANS.EFFECTIVE_TO). This is the column corresponding to the user's search term and the primary basis for filtering currently active plans.
- PLAN_TYPE — decoded meaning from FND_COMMON_LOOKUPS for the plan type.
- SPECIFICATION_ASSIGNMENT_TYPE — decoded meaning from MFG_LOOKUPS describing how specifications attach to the plan.
- ORGANIZATION_ID — the inventory organization owning the plan.
- Audit columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY.
Note that PLAN_TYPE_CODE appears in the column listing but is not projected in the view text; only the decoded PLAN_TYPE meaning is exposed.
Common Use Cases and Queries
Typical uses include listing effective collection plans for an organization and identifying plans nearing or past expiration.
Active plans as of the current date:
- SELECT PLAN_ID, COLLECTION_PLAN_NAME, START_EFFECTIVE_DATE, END_EFFECTIVE_DATE, PLAN_TYPE FROM QABV_COLLECTION_PLANS WHERE SYSDATE BETWEEN START_EFFECTIVE_DATE AND NVL(END_EFFECTIVE_DATE, SYSDATE);
Plans by organization and type:
- SELECT PLAN_ID, COLLECTION_PLAN_NAME, ORGANIZATION_ID, SPECIFICATION_ASSIGNMENT_TYPE FROM QABV_COLLECTION_PLANS WHERE ORGANIZATION_ID = :org_id AND PLAN_TYPE = :plan_type;
Expiring within 90 days:
- SELECT COLLECTION_PLAN_NAME, END_EFFECTIVE_DATE FROM QABV_COLLECTION_PLANS WHERE END_EFFECTIVE_DATE BETWEEN SYSDATE AND SYSDATE+90;
Because END_EFFECTIVE_DATE may be null for open-ended plans, apply NVL handling in date-range logic. All queries should account for organization security and lookup completeness.
-
View: QABV_COLLECTION_PLANS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QABV_COLLECTION_PLANS, object_name:QABV_COLLECTION_PLANS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QABV_COLLECTION_PLANS ,
-
View: QABV_COLLECTION_PLANS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QABV_COLLECTION_PLANS, object_name:QABV_COLLECTION_PLANS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QABV_COLLECTION_PLANS ,
-
VIEW: PO.FND_NOTIFICATIONS#
12.2.2
-
VIEW: APPS.QABV_QUALITY_SPECIFICATIONS
12.1.1
-
View: QABV_QUALITY_SPECIFICATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QABV_QUALITY_SPECIFICATIONS, object_name:QABV_QUALITY_SPECIFICATIONS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QABV_QUALITY_SPECIFICATIONS ,
-
VIEW: APPS.QABV_QUALITY_SPECIFICATIONS
12.2.2
-
View: QAFV_COLLECTION_PLANS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QAFV_COLLECTION_PLANS, object_name:QAFV_COLLECTION_PLANS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QAFV_COLLECTION_PLANS ,
-
VIEW: APPS.QABV_COLLECTION_PLANS
12.2.2
-
VIEW: APPS.MRPFV_MASTER_PROD_SCHEDS
12.1.1
-
VIEW: APPS.MRPFV_MASTER_PROD_SCHEDS
12.2.2
-
VIEW: APPS.PABV_RESOURCE_LISTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_RESOURCE_LISTS, object_name:PABV_RESOURCE_LISTS, status:VALID,
-
VIEW: APPS.PABV_RESOURCE_LISTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_RESOURCE_LISTS, object_name:PABV_RESOURCE_LISTS, status:VALID,
-
View: QABV_QUALITY_SPECIFICATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:QA.QABV_QUALITY_SPECIFICATIONS, object_name:QABV_QUALITY_SPECIFICATIONS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QABV_QUALITY_SPECIFICATIONS ,
-
VIEW: APPS.PABV_EXPENDITURE_CATEGORIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_EXPENDITURE_CATEGORIES, object_name:PABV_EXPENDITURE_CATEGORIES, status:VALID,
-
VIEW: APPS.INVBV_UOM_CLASSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UOM_CLASSES, object_name:INVBV_UOM_CLASSES, status:VALID,
-
VIEW: APPS.QABV_COLLECTION_PLANS
12.1.1
-
View: IGCBV_CC_CONTRACT_COMMITMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_CC_CONTRACT_COMMITMENTS, object_name:IGCBV_CC_CONTRACT_COMMITMENTS, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCBV_CC_CONTRACT_COMMITMENTS ,
-
VIEW: APPS.INVBV_UNITS_OF_MEASURE
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UNITS_OF_MEASURE, object_name:INVBV_UNITS_OF_MEASURE, status:VALID,
-
VIEW: APPS.MRPBV_DEMAND_CLASSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_DEMAND_CLASSES, object_name:MRPBV_DEMAND_CLASSES, status:VALID,
-
VIEW: APPS.PSBBV_POSITION_PAY_DISTRS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PSB.PSBBV_POSITION_PAY_DISTRS, object_name:PSBBV_POSITION_PAY_DISTRS, status:VALID,
-
VIEW: APPS.PABV_BUDGET_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_BUDGET_TYPES, object_name:PABV_BUDGET_TYPES, status:VALID,
-
VIEW: APPS.INVBV_ITEM_CATEGORIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ITEM_CATEGORIES, object_name:INVBV_ITEM_CATEGORIES, status:VALID,
-
VIEW: APPS.MRPBV_DEMAND_CLASSES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:MRP.MRPBV_DEMAND_CLASSES, object_name:MRPBV_DEMAND_CLASSES, status:VALID,
-
VIEW: APPS.PABV_CUSTOMER_AGREEMENT_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_CUSTOMER_AGREEMENT_TYPES, object_name:PABV_CUSTOMER_AGREEMENT_TYPES, status:VALID,
-
VIEW: APPS.PABV_CLASS_CODES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_CLASS_CODES, object_name:PABV_CLASS_CODES, status:VALID,
-
VIEW: APPS.INVFV_UNITS_OF_MEASURE
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_UNITS_OF_MEASURE, object_name:INVFV_UNITS_OF_MEASURE, status:VALID,
-
View: QAFV_COLLECTION_PLANS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:QA.QAFV_COLLECTION_PLANS, object_name:QAFV_COLLECTION_PLANS, status:VALID, product: QA - Quality , description: - Retrofitted , implementation_dba_data: APPS.QAFV_COLLECTION_PLANS ,
-
View: IGCBV_CC_RELEASES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:IGC.IGCBV_CC_RELEASES, object_name:IGCBV_CC_RELEASES, status:VALID, product: IGC - Contract Commitment , implementation_dba_data: APPS.IGCBV_CC_RELEASES ,
-
VIEW: APPS.PABV_REVENUE_CATEGORIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_REVENUE_CATEGORIES, object_name:PABV_REVENUE_CATEGORIES, status:VALID,
-
View: FND_NOTIFICATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PO.FND_NOTIFICATIONS_V, object_name:FND_NOTIFICATIONS_V, status:VALID, product: PO - Purchasing , description: - Retrofitted , implementation_dba_data: APPS.FND_NOTIFICATIONS_V ,
-
VIEW: APPS.PABV_EVENT_TYPES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_EVENT_TYPES, object_name:PABV_EVENT_TYPES, status:VALID,
-
VIEW: APPS.INVBV_EXT_ITEM_XREF_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_EXT_ITEM_XREF_TYPES, object_name:INVBV_EXT_ITEM_XREF_TYPES, status:VALID,
-
VIEW: APPS.PABV_KEY_MEMBERS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_KEY_MEMBERS, object_name:PABV_KEY_MEMBERS, status:VALID,
-
VIEW: APPS.PABV_RESOURCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_RESOURCES, object_name:PABV_RESOURCES, status:VALID,
-
VIEW: APPS.INVBV_ITEM_CATEGORIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ITEM_CATEGORIES, object_name:INVBV_ITEM_CATEGORIES, status:VALID,
-
VIEW: APPS.PABV_BUDGET_TYPES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_BUDGET_TYPES, object_name:PABV_BUDGET_TYPES, status:VALID,
-
VIEW: APPS.INVFV_UOM_CONVERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVFV_UOM_CONVERSIONS, object_name:INVFV_UOM_CONVERSIONS, status:VALID,
-
VIEW: APPS.INVBV_ITEM_STATUS_CODES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_ITEM_STATUS_CODES, object_name:INVBV_ITEM_STATUS_CODES, status:VALID,
-
VIEW: APPS.QAFV_COLLECTION_PLANS
12.2.2
-
VIEW: APPS.PABV_NON_LABOR_RESOURCES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PA.PABV_NON_LABOR_RESOURCES, object_name:PABV_NON_LABOR_RESOURCES, status:VALID,
-
VIEW: APPS.INVBV_UOM_CONVERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UOM_CONVERSIONS, object_name:INVBV_UOM_CONVERSIONS, status:VALID,
-
VIEW: APPS.IGCBV_CC_CONTRACT_COMMITMENTS
12.1.1
-
VIEW: APPS.GLFV_CURRENCIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:SQLGL.GLFV_CURRENCIES, object_name:GLFV_CURRENCIES, status:VALID,
-
View: BOMBV_FLOW_RTG_LINE_OPERATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_FLOW_RTG_LINE_OPERATIONS, object_name:BOMBV_FLOW_RTG_LINE_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_FLOW_RTG_LINE_OPERATIONS ,
-
View: BOMFV_WORK_ORDER_RTG_OPRATNS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_WORK_ORDER_RTG_OPRATNS, object_name:BOMFV_WORK_ORDER_RTG_OPRATNS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_WORK_ORDER_RTG_OPRATNS ,
-
VIEW: APPS.IGCBV_CC_RELEASES
12.2.2
-
VIEW: APPS.INVBV_UOM_CLASS_CONVERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.INVBV_UOM_CLASS_CONVERSIONS, object_name:INVBV_UOM_CLASS_CONVERSIONS, status:VALID,
-
View: BOMFV_WORK_ORDER_RTG_OPRATNS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMFV_WORK_ORDER_RTG_OPRATNS, object_name:BOMFV_WORK_ORDER_RTG_OPRATNS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMFV_WORK_ORDER_RTG_OPRATNS ,
-
View: BOMBV_FLOW_RTG_LINE_OPERATIONS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BOM.BOMBV_FLOW_RTG_LINE_OPERATIONS, object_name:BOMBV_FLOW_RTG_LINE_OPERATIONS, status:VALID, product: BOM - Bills of Material , description: - Retrofitted , implementation_dba_data: APPS.BOMBV_FLOW_RTG_LINE_OPERATIONS ,
-
VIEW: APPS.IGCBV_CC_CONTRACT_COMMITMENTS
12.2.2