Search Results bis_bucket_customizations
Overview
BIS_BUCKET_CUSTOMIZATIONS is a table owned by the BIS schema (Applications BIS) in Oracle E-Business Suite 12.1.1 and 12.2.2. Its status is VALID. The name and the column set indicate that it stores user-defined customization of "measure buckets" — threshold ranges applied to bucketized metrics defined in the related BIC_MEASURE_BUCKETS table. Where the base bucket definition fixes default numeric boundaries, BIS_BUCKET_CUSTOMIZATIONS lets a specific context (user, responsibility, operating unit, application, site, page, or function) override those boundaries with up to ten customized low/high ranges.
From a heuristic Data Vault perspective mined from the foreign-key structure, this object is best modeled as a standalone structure rather than a classic hub, link, or satellite. It carries its own unique business-key index and a natural parent relationship, so it functions as a context-specific configuration artifact rather than a transactional fact.
Key Information Stored
All 35 documented columns are present; the most significant are summarized below.
- ID — the surrogate primary key for each customization row.
- BUCKET_ID — foreign key to BIS_BUCKET_CUSTOMIZATIONS.BUCKET_ID → BIC_MEASURE_BUCKETS, identifying which measure bucket is being customized.
- USER_ID, RESPONSIBILITY_ID, ORG_ID, APPLICATION_ID, SITE_ID, PAGE_ID, FUNCTION_ID — the context dimensions that scope the customization. Together these determine for whom, in which responsibility/organization, and on which application page or function the override applies.
- RANGE1_LOW … RANGE10_HIGH — ten pairs of low/high boundaries defining the customized numeric ranges for the bucket.
- CUSTOMIZED — a flag indicating whether user customization is active for the row.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS who-columns for audit and concurrency.
The unique index BIS_BUCKET_CUSTOMIZATIONS_U1 spans (BUCKET_ID, USER_ID, RESPONSIBILITY_ID, ORG_ID, APPLICATION_ID, SITE_ID, PAGE_ID, FUNCTION_ID), confirming that no duplicate customization may exist for the same bucket within the same context combination. This composite is the business-key candidate, distinct from the ID surrogate key.
Common Use Cases and Queries
Typical scenarios include resolving which range boundaries should be applied when rendering a bucketized metric for a given user and responsibility, auditing where custom thresholds diverge from defaults, and reporting on customized versus standard bucket definitions.
Sample query to find active customizations for a bucket and responsibility:
SELECT c.ID, c.BUCKET_ID, c.USER_ID, c.RESPONSIBILITY_ID,
c.RANGE1_LOW, c.RANGE1_HIGH, c.CUSTOMIZED
FROM BIS.BIS_BUCKET_CUSTOMIZATIONS c
WHERE c.BUCKET_ID = :bucket_id
AND c.RESPONSIBILITY_ID = :resp_id
AND c.ORG_ID = :org_id
AND c.CUSTOMIZED = 'Y';
A reporting pattern joins to the parent bucket table to list customized metrics:
SELECT b.NAME, c.RANGE1_LOW, c.RANGE1_HIGH
FROM BIS.BIS_BUCKET_CUSTOMIZATIONS c,
BIS.BIC_MEASURE_BUCKETS b
WHERE c.BUCKET_ID = b.BUCKET_ID;
Audit queries against LAST_UPDATED_BY and LAST_UPDATE_DATE support change tracking, while exclusion of NULL context columns supports default-scope determination.
Related Objects
- BIC_MEASURE_BUCKETS — parent table referenced via BUCKET_ID; supplies the default bucket definition that this table overrides.
- BIS_BUCKET_CUSTOMIZATIONS_U1 — unique index enforcing business-key uniqueness across the context columns.
- FND_USER — logical reference for USER_ID values.
- FND_RESPONSIBILITY / FND_RESPONSIBILITY_TL — source of RESPONSIBILITY_ID context.
- FND_APPLICATION / FND_APPLICATION_TL — source of APPLICATION_ID context.
- HR_OPERATING_UNITS / ORG tables — source of ORG_ID context.
- FND_FORM_FUNCTIONS — source of FUNCTION_ID context.
These references define the dependency and lookup surface around the customization table; the sole documented foreign-key constraint remains BUCKET_ID to BIC_MEASURE_BUCKETS.
-
Table: BIS_BUCKET_CUSTOMIZATIONS
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.BIS_BUCKET_CUSTOMIZATIONS, object_name:BIS_BUCKET_CUSTOMIZATIONS, status:VALID, product: BIS - Applications BIS , implementation_dba_data: BIS.BIS_BUCKET_CUSTOMIZATIONS ,
-
Table: BIS_BUCKET_CUSTOMIZATIONS
12.2.2
owner:BIS, object_type:TABLE, fnd_design_data:BIS.BIS_BUCKET_CUSTOMIZATIONS, object_name:BIS_BUCKET_CUSTOMIZATIONS, status:VALID, product: BIS - Applications BIS , implementation_dba_data: BIS.BIS_BUCKET_CUSTOMIZATIONS ,
-
VIEW: APPS.HRI_OBI_CL_PRFM_PERFBAND_V
12.1.1
-
VIEW: APPS.HRI_CL_PRFMNC_RTNG_X_V
12.1.1
-
SYNONYM: APPS.BIS_BUCKET_CUSTOMIZATIONS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:BIS_BUCKET_CUSTOMIZATIONS, status:VALID,
-
SYNONYM: APPS.BIS_BUCKET_CUSTOMIZATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_BUCKET_CUSTOMIZATIONS, status:VALID,
-
VIEW: APPS.BIV_BUCKET_AGING_V
12.1.1
owner:APPS, object_type:VIEW, object_name:BIV_BUCKET_AGING_V, status:VALID,
-
VIEW: BIS.BIS_BUCKET_CUSTOMIZATIONS#
12.2.2
owner:BIS, object_type:VIEW, object_name:BIS_BUCKET_CUSTOMIZATIONS#, status:VALID,
-
MATERIALIZED VIEW: APPS.ASO_BI_DISC_BUK_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:ASO_BI_DISC_BUK_MV, status:VALID,
-
VIEW: APPS.BIS_BUCKET_CUSTOMIZATIONS_VL
12.2.2
-
VIEW: BIS.BIS_BUCKET_CUSTOMIZATIONS#
12.2.2
-
VIEW: APPS.BIS_CUSTOMIZED_BUCKET_VL
12.1.1
-
VIEW: APPS.BIS_BUCKET_CUSTOMIZATIONS_VL
12.1.1
-
APPS.BIS_BUCKET_CUSTOMIZATIONS_PKG SQL Statements
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
MATERIALIZED VIEW: APPS.ISC_FS_019_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:ISC_FS_019_MV, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
MATERIALIZED VIEW: APPS.ISC_FS_020_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:ISC_FS_020_MV, status:VALID,
-
PACKAGE BODY: APPS.HRI_BPL_PERIOD_OF_WORK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HRI_BPL_PERIOD_OF_WORK, status:VALID,
-
MATERIALIZED VIEW: APPS.ISC_MAINT_006_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:ISC_MAINT_006_MV, status:VALID,
-
PACKAGE BODY: APPS.BIS_BUCKET_CUSTOMIZATIONS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_BUCKET_CUSTOMIZATIONS_PKG, status:VALID,
-
APPS.BIS_BUCKET_PVT SQL Statements
12.1.1
-
PACKAGE: APPS.BIS_BUCKET_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BIS_BUCKET_PVT, status:VALID,
-
APPS.BIS_BUCKET_CUSTOMIZATIONS_PKG SQL Statements
12.2.2
-
MATERIALIZED VIEW: APPS.OKI_SRM_003_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:OKI_SRM_003_MV, status:VALID,
-
MATERIALIZED VIEW: APPS.ISC_MAINT_003_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:ISC_MAINT_003_MV, status:VALID,
-
PACKAGE BODY: APPS.FII_AR_UNAPP_RCT_SUM_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FII_AR_UNAPP_RCT_SUM_PKG, status:VALID,
-
PACKAGE BODY: APPS.FII_AR_CURR_REC_SUM_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FII_AR_CURR_REC_SUM_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.HRI_OPL_PERIOD_OF_WORK
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HRI_OPL_PERIOD_OF_WORK, status:VALID,
-
VIEW: APPS.BIV_DR_BKLG_DIST_V
12.1.1
owner:APPS, object_type:VIEW, object_name:BIV_DR_BKLG_DIST_V, status:VALID,
-
PACKAGE BODY: APPS.FII_AR_REC_AGING_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:FII_AR_REC_AGING_PKG, status:VALID,
-
View: BIS_BUCKET_CUSTOMIZATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BIS_BUCKET_CUSTOMIZATIONS_VL, object_name:BIS_BUCKET_CUSTOMIZATIONS_VL, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BIS_BUCKET_CUSTOMIZATIONS_VL ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.BIS_BUCKET_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_BUCKET_PVT, status:VALID,
-
TABLE: BIS.BIS_BUCKET_CUSTOMIZATIONS
12.1.1
owner:BIS, object_type:TABLE, fnd_design_data:BIS.BIS_BUCKET_CUSTOMIZATIONS, object_name:BIS_BUCKET_CUSTOMIZATIONS, status:VALID,
-
TABLE: BIS.BIS_BUCKET_CUSTOMIZATIONS
12.2.2
owner:BIS, object_type:TABLE, fnd_design_data:BIS.BIS_BUCKET_CUSTOMIZATIONS, object_name:BIS_BUCKET_CUSTOMIZATIONS, status:VALID,
-
PACKAGE BODY: APPS.BIS_BUCKET_CUSTOMIZATIONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_BUCKET_CUSTOMIZATIONS_PKG, status:VALID,
-
PACKAGE BODY: APPS.HRI_OPL_PERIOD_OF_WORK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HRI_OPL_PERIOD_OF_WORK, status:VALID,
-
VIEW: APPS.HRI_OBI_CL_PRFM_PERFBAND_V
12.1.1
owner:APPS, object_type:VIEW, object_name:HRI_OBI_CL_PRFM_PERFBAND_V, status:VALID,
-
VIEW: APPS.HRI_CL_PRFMNC_RTNG_X_V
12.1.1
owner:APPS, object_type:VIEW, object_name:HRI_CL_PRFMNC_RTNG_X_V, status:VALID,
-
VIEW: APPS.BIV_DR_BKLG_DIST_V
12.1.1
-
12.1.1 DBA Data
12.1.1
-
MATERIALIZED VIEW: APPS.ISC_DR_MTTR_01_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:ISC_DR_MTTR_01_MV, status:VALID,
-
VIEW: APPS.BIV_BUCKET_AGING_V
12.1.1
-
MATERIALIZED VIEW: APPS.ISC_FS_009_MV
12.1.1
owner:APPS, object_type:MATERIALIZED VIEW, object_name:ISC_FS_009_MV, status:VALID,
-
APPS.HRI_OPL_PERIOD_OF_WORK SQL Statements
12.2.2
-
PACKAGE BODY: APPS.HRI_BPL_PERF_RATING
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HRI_BPL_PERF_RATING, status:VALID,