Search Results chv_org_options
Overview
CHV_ORG_OPTIONS is the organization-level options table for the Supplier Scheduling (CHV) module in Oracle E-Business Suite. It is owned by the PO schema and holds configuration flags, schedule designators, and bucket pattern references that govern how supplier scheduling and cumulative quantity processing behave for a given inventory organization. In EBS 12.1.1 and 12.2.2, the table is documented as VALID with 35 columns and a single-row-per-organization design, keyed by ORGANIZATION_ID.
Under the heuristic Data Vault classification mined from the foreign-key structure, CHV_ORG_OPTIONS is modeled as a standalone satellite rather than a hub or link. This classification is a suggestion: with ORGANIZATION_ID as the primary key and no dependencies on other hub-style entities, the table functions as a descriptive satellite attached to an organizational context, but implementers should validate it against their own integration model.
Key Information Stored
The primary key is CHV_ORG_OPTIONS_PK, defined on ORGANIZATION_ID, and a further unique index CHV_ORG_OPTIONS_U1 also covers ORGANIZATION_ID. This confirms ORGANIZATION_ID as the business-key candidate and makes it the natural foreign-key target for dependent supply-chain tables.
- ORGANIZATION_ID — surrogate primary key and business-key candidate; identifies the inventory organization the options apply to.
- ENABLE_CUM_FLAG — controls whether cumulative quantity tracking is enabled for the organization.
- RTV_UPDATE_CUM_FLAG — governs whether return-to-vendor transactions update cumulative quantities.
- PLAN_BUCKET_PATTERN_ID / SHIP_BUCKET_PATTERN_ID — references to planning and shipping bucket patterns used to format supplier schedules.
- PLAN_SCHEDULE_TYPE / SHIP_SCHEDULE_TYPE — schedule type designators for planning and shipping schedules.
- MRP_COMPILE_DESIGNATOR / MPS_SCHEDULE_DESIGNATOR / DRP_COMPILE_DESIGNATOR — compile and schedule designators linking supplier scheduling to MRP, MPS, and DRP plan outputs.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — the standard EBS descriptive flexfield columns for organization-specific extensions.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard WHO audit columns.
- REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE — concurrent program context capturing which request last modified the row.
Common Use Cases and Queries
Typical uses include confirming whether cumulative tracking is active for an organization, reviewing schedule configuration before running supplier scheduling concurrent programs, and auditing configuration changes. A representative query:
- SELECT organization_id, enable_cum_flag, rtv_update_cum_flag FROM chv_org_options WHERE organization_id = :org_id;
- Join to bucket patterns to resolve schedule formatting: SELECT o.organization_id, o.plan_schedule_type, p.pattern_name FROM chv_org_options o, bucket_pattern p WHERE o.plan_bucket_pattern_id = p.pattern_id;
- Reporting on organizations where cumulative updates from return-to-vendor are enabled: SELECT organization_id FROM chv_org_options WHERE rtv_update_cum_flag = 'Y';
These patterns support administration and reconciliation reporting rather than transactional processing.
Related Objects
Because the table is modeled as standalone, it has few explicit foreign-key relationships; integration occurs by convention through ORGANIZATION_ID and the referenced designator/pattern identifiers.
- PO.CHV_SCHEDULE_HDRS / PO.CHV_SCHEDULE_LINES — supplier schedule headers and lines scoped by ORGANIZATION_ID.
- PO.CHV_CUM_QUANTITIES — cumulative quantity records governed by ENABLE_CUM_FLAG and RTV_UPDATE_CUM_FLAG.
- ORG_ORGANIZATION_DEFINITIONS — resolves ORGANIZATION_ID to the organizational entity.
- MRP/MPS plan tables referenced through COMPILE and SCHEDULE designators.
- Bucket pattern definition tables referenced by PLAN_BUCKET_PATTERN_ID and SHIP_BUCKET_PATTERN_ID.
- FND descriptive flexfield definitions consumed via ATTRIBUTE_CATEGORY and ATTRIBUTE1–15.
These objects should be treated as the primary integration surface for CHV_ORG_OPTIONS data.
-
Table: CHV_ORG_OPTIONS
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:CHV.CHV_ORG_OPTIONS, object_name:CHV_ORG_OPTIONS, status:VALID, product: CHV - Supplier Scheduling , description: Organization options table , implementation_dba_data: PO.CHV_ORG_OPTIONS ,
-
Table: CHV_ORG_OPTIONS
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:CHV.CHV_ORG_OPTIONS, object_name:CHV_ORG_OPTIONS, status:VALID, product: CHV - Supplier Scheduling , description: Organization options table , implementation_dba_data: PO.CHV_ORG_OPTIONS ,
-
VIEW: APPS.CHV_ORG_OPTIONS_DFV
12.1.1
-
VIEW: APPS.CHV_ORG_OPTIONS_DFV
12.2.2
-
SYNONYM: APPS.CHV_ORG_OPTIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CHV_ORG_OPTIONS, status:VALID,
-
SYNONYM: APPS.CHV_ORG_OPTIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CHV_ORG_OPTIONS, status:VALID,
-
VIEW: PO.CHV_ORG_OPTIONS#
12.2.2
owner:PO, object_type:VIEW, object_name:CHV_ORG_OPTIONS#, status:VALID,
-
APPS.CHV_ORG_OPTIONS_PKG_S1 SQL Statements
12.1.1
-
VIEW: PO.CHV_ORG_OPTIONS#
12.2.2
-
APPS.CHV_ORG_OPTIONS_PKG_S1 SQL Statements
12.2.2
-
TABLE: PO.CHV_ORG_OPTIONS
12.2.2
owner:PO, object_type:TABLE, fnd_design_data:CHV.CHV_ORG_OPTIONS, object_name:CHV_ORG_OPTIONS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
TABLE: PO.CHV_ORG_OPTIONS
12.1.1
owner:PO, object_type:TABLE, fnd_design_data:CHV.CHV_ORG_OPTIONS, object_name:CHV_ORG_OPTIONS, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.CHV_ORG_OPTIONS_PKG_S3
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_ORG_OPTIONS_PKG_S3, status:VALID,
-
PACKAGE BODY: APPS.CHV_ORG_OPTIONS_PKG_S1
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_ORG_OPTIONS_PKG_S1, status:VALID,
-
PACKAGE BODY: APPS.CHV_ORG_OPTIONS_PKG_S1
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_ORG_OPTIONS_PKG_S1, status:VALID,
-
VIEW: APPS.CHV_ORG_OPTIONS_V
12.1.1
-
PACKAGE BODY: APPS.CHV_ORG_OPTIONS_PKG_S3
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_ORG_OPTIONS_PKG_S3, status:VALID,
-
PACKAGE BODY: APPS.CHV_ORG_OPTIONS_PKG_S2
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_ORG_OPTIONS_PKG_S2, status:VALID,
-
PACKAGE BODY: APPS.CHV_ORG_OPTIONS_PKG_S2
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_ORG_OPTIONS_PKG_S2, status:VALID,
-
PACKAGE BODY: APPS.CHV_CUM_PERIODS_S2
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_CUM_PERIODS_S2, status:VALID,
-
PACKAGE BODY: APPS.CHV_CUM_PERIODS_S2
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_CUM_PERIODS_S2, status:VALID,
-
PACKAGE BODY: APPS.CHV_ORG_OPTIONS_PKG_S1
12.1.1
-
PACKAGE BODY: APPS.CHV_ORG_OPTIONS_PKG_S1
12.2.2
-
VIEW: APPS.CHV_ORG_OPTIONS_V
12.2.2
-
VIEW: APPS.CHV_ORG_OPTIONS_DFV
12.2.2
owner:APPS, object_type:VIEW, object_name:CHV_ORG_OPTIONS_DFV, status:VALID,
-
VIEW: APPS.CHV_ORG_OPTIONS_DFV
12.1.1
owner:APPS, object_type:VIEW, object_name:CHV_ORG_OPTIONS_DFV, status:VALID,
-
PACKAGE BODY: APPS.CHV_CONFIRM_SCHEDULES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_CONFIRM_SCHEDULES, status:VALID,
-
PACKAGE BODY: APPS.CHV_CONFIRM_SCHEDULES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_CONFIRM_SCHEDULES, status:VALID,
-
PACKAGE BODY: APPS.ECE_SPSO_TRANS1
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ECE_SPSO_TRANS1, status:VALID,
-
APPS.CHV_ORG_OPTIONS_PKG_S3 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.ECE_SPSO_TRANS1
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ECE_SPSO_TRANS1, status:VALID,
-
PACKAGE BODY: APPS.CHV_BUILD_SCHEDULES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_BUILD_SCHEDULES, status:VALID,
-
PACKAGE BODY: APPS.CHV_BUILD_SCHEDULES
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CHV_BUILD_SCHEDULES, status:VALID,
-
APPS.CHV_ORG_OPTIONS_PKG_S3 SQL Statements
12.2.2
-
PACKAGE BODY: APPS.RCV_TRANSACTIONS_INTERFACE_SV1
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:RCV_TRANSACTIONS_INTERFACE_SV1, status:VALID,
-
PACKAGE BODY: APPS.RCV_TRANSACTIONS_INTERFACE_SV1
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:RCV_TRANSACTIONS_INTERFACE_SV1, status:VALID,
-
PACKAGE BODY: APPS.AP_PURGE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AP_PURGE_PKG, status:VALID,
-
View: CHV_ORG_OPTIONS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CHV.CHV_ORG_OPTIONS_V, object_name:CHV_ORG_OPTIONS_V, status:VALID, product: CHV - Supplier Scheduling , description: - Retrofitted , implementation_dba_data: APPS.CHV_ORG_OPTIONS_V ,
-
PACKAGE BODY: APPS.AP_PURGE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AP_PURGE_PKG, status:VALID,
-
View: CHV_ORG_OPTIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CHV.CHV_ORG_OPTIONS_V, object_name:CHV_ORG_OPTIONS_V, status:VALID, product: CHV - Supplier Scheduling , description: - Retrofitted , implementation_dba_data: APPS.CHV_ORG_OPTIONS_V ,
-
PACKAGE BODY: APPS.CHV_ORG_OPTIONS_PKG_S3
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.CHV_CONFIRM_SCHEDULES SQL Statements
12.2.2