Search Results bisfv_targets
Overview
The BISFV_TARGETS view is a reporting and integration object within the Oracle E-Business Suite BIS (Applications BIS / Business Intelligence System) product family. It consolidates target values defined in the BIS target-management subsystem and resolves them against their owning target levels, business plans, and assigned roles, producing a single denormalized row per target record suitable for downstream reporting, ad-hoc querying, and integration into analytical applications.
The view is one of the standard "BISFV" (BIS Foundation View) family, whose members typically join a transactional base table to one or more descriptive lookup tables and translation (_TL) tables so that consumers receive both surrogate identifiers and human-readable names without having to write the joins themselves. In ETRM documentation for 12.2.2, the object is classified as not implemented in this database, meaning the view text is shipped as reference metadata even though the object is not deployed in the queried environment. Its presence in the ETRM catalog nonetheless documents the shipped definition used wherever the BIS target planning schema is present (for example, 12.1.1 through 12.2.2 installations with the BIS target/planning components licensed and installed).
Underlying Base Objects
The view is defined over five documented base tables joined in a single SELECT. ETRM lists no explicitly documented "referenced base objects" beyond what appears in the view text itself, and the visible SQL confirms the following:
- BIS_TARGET_VALUES — the driving detail table holding the numeric targets, ranges, dimension level values, time values, and role assignments. Aliased twice in the column list as
BIS_TARGET_VALUES. - BIS_TARGET_LEVELS — header table providing the target level identifier and its short name.
- BIS_TARGET_LEVELS_TL — translation table supplying the language-specific long name for the target level.
- BIS_BUSINESS_PLANS — plan header providing the plan identifier and plan short name.
- BIS_BUSINESS_PLANS_TL — translation table supplying the language-specific plan name.
The joins are driven by foreign-key relationships: BIS_TARGET_VALUES.TARGET_LEVEL_ID = BIS_TARGET_LEVELS.TARGET_LEVEL_ID, with the _TL tables keyed on the same identifiers, and the plan columns linked through PLAN_ID. The view also invokes the PL/SQL function BIS_UTILITIES_PUB.RESOLVE_ROLE_NAME three times to translate numeric role identifiers into display names.
Key Columns
The projection is organized into several logical groups:
- Identity and keys:
TARGET_ID,TARGET_LEVEL_ID,PLAN_ID,ORG_LEVEL_VALUE,TIME_LEVEL_VALUE. - Descriptive attributes:
SHORT_NAMEand the translatedNAMEcolumns from the target-level and business-plan translation tables. - Dimension coordinates: eight pairs of
DIMENSION1_LEVEL_VALUEthroughDIMENSION7_LEVEL_VALUE, representing the dimensional slicing of each target. - Target measurements:
TARGET, plus threshold bandsRANGE1_LOW/RANGE1_HIGH,RANGE2_LOW/RANGE2_HIGH, andRANGE3_LOW/RANGE3_HIGH. - Role assignments:
ROLE1_ID,ROLE2_ID,ROLE3_IDalongside their resolved display names returned byBIS_UTILITIES_PUB.RESOLVE_ROLE_NAME.
Because the projection repeats several column expressions (a documented quirk of the shipped view text), consumers should select named columns explicitly rather than relying on SELECT * in production code.
Common Use Cases and Queries
Typical applications include target-versus-actual reporting, dashboard threshold evaluation using the RANGE columns, and role-based routing of target notifications. A representative query retrieving resolved target details for a given plan is:
SELECT t.TARGET_ID,
t.NAME AS target_level_name,
p.NAME AS plan_name,
t.TARGET,
t.RANGE1_LOW,
t.RANGE1_HIGH,
t.ROLE1_ID,
BIS_UTILITIES_PUB.RESOLVE_ROLE_NAME(t.ROLE1) AS role1_name
FROM BISFV_TARGETS t,
BIS_BUSINESS_PLANS_TL p
WHERE t.PLAN_ID = p.PLAN_ID
AND t.TARGET_LEVEL_ID = :target_level_id;
For dimensional analysis, filter on the relevant DIMENSIONn_LEVEL_VALUE columns; for threshold monitoring, compare TARGET against the RANGE bounds. Since the view is documented as not implemented in the ETRM reference database, deployers should verify object existence in their own environment before relying on it in concurrent programs, BI Publisher data templates, or custom forms.
-
View: BISFV_TARGETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISFV_TARGETS, object_name:BISFV_TARGETS, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BISFV_TARGETS ,
-
View: BISFV_TARGETS
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
APPS.BIX_ALERT SQL Statements
12.1.1
-
APPS.BIS_TARGET_PVT SQL Statements
12.1.1
-
SYNONYM: APPS.BIS_BUSINESS_PLANS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_BUSINESS_PLANS_TL, status:VALID,
-
SYNONYM: APPS.BIS_TARGET_LEVELS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_TARGET_LEVELS_TL, status:VALID,
-
PACKAGE BODY: APPS.MST_CMP_KPIS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:MST_CMP_KPIS, status:VALID,
-
PACKAGE BODY: APPS.OE_BIS_ALERTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_BIS_ALERTS, status:VALID,
-
PACKAGE BODY: APPS.POA_BIS_ALERTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:POA_BIS_ALERTS, status:VALID,
-
PACKAGE BODY: APPS.BIX_ALERT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIX_ALERT, status:VALID,
-
SYNONYM: APPS.BIS_BUSINESS_PLANS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_BUSINESS_PLANS, status:VALID,
-
SYNONYM: APPS.BIS_TARGET_VALUES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_TARGET_VALUES, status:VALID,
-
PACKAGE BODY: APPS.BIS_PMV_PMF_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_PMV_PMF_PVT, status:VALID,
-
PACKAGE BODY: APPS.BIS_TARGET_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:BIS_TARGET_PVT, status:VALID,
-
PACKAGE BODY: APPS.HR_BIS_ALERTS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_BIS_ALERTS, status:VALID,
-
VIEW: APPS.BISFV_TARGETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BISFV_TARGETS, object_name:BISFV_TARGETS, status:VALID,
-
SYNONYM: APPS.BIS_TARGET_LEVELS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:BIS_TARGET_LEVELS, status:VALID,
-
APPS.BIS_PMV_PMF_PVT SQL Statements
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.OE_BIS_ALERTS SQL Statements
12.1.1
-
APPS.POA_BIS_ALERTS SQL Statements
12.1.1
-
PACKAGE: APPS.BIS_UTILITIES_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:BIS_UTILITIES_PUB, status:VALID,
-
APPS.HR_BIS_ALERTS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BIX_ALERT
12.1.1
-
APPS.HR_BIS_ALERTS dependencies on BISFV_TARGETS
12.1.1
-
APPS.BIX_ALERT dependencies on BISFV_TARGETS
12.1.1
-
APPS.BIS_PMV_PMF_PVT dependencies on BISFV_TARGETS
12.1.1
-
APPS.BIS_TARGET_PVT dependencies on BISFV_TARGETS
12.1.1
-
APPS.POA_BIS_ALERTS dependencies on BISFV_TARGETS
12.1.1
-
APPS.OE_BIS_ALERTS dependencies on BISFV_TARGETS
12.1.1
-
APPS.MST_CMP_KPIS dependencies on BISFV_TARGETS
12.1.1
-
PACKAGE BODY: APPS.BIS_PMV_PMF_PVT
12.1.1
-
PACKAGE BODY: APPS.BIS_TARGET_PVT
12.1.1
-
PACKAGE BODY: APPS.POA_BIS_ALERTS
12.1.1
-
APPS.BIS_PMV_PMF_PVT dependencies on BIS_BUSINESS_PLAN_PUB
12.1.1
-
APPS.MST_CMP_KPIS SQL Statements
12.1.1
-
APPS.BIS_TARGET_PVT dependencies on BIS_TARGET_LEVEL_PUB
12.1.1
-
APPS.MST_CMP_KPIS dependencies on BISBV_APPLICATION_MEASURES
12.1.1
-
APPS.MST_CMP_KPIS dependencies on BISBV_TARGET_LEVELS
12.1.1
-
APPS.BIS_TARGET_PVT dependencies on BIS_BUSINESS_PLAN_PUB
12.1.1
-
APPS.BIS_PMV_PMF_PVT dependencies on BIS_UTILITIES_PUB
12.1.1
-
APPS.POA_BIS_ALERTS dependencies on BIS_TARGET_PUB
12.1.1
-
APPS.BIS_PMV_PMF_PVT dependencies on BISBV_TARGET_LEVELS
12.1.1
-
PACKAGE BODY: APPS.OE_BIS_ALERTS
12.1.1
-
APPS.HR_BIS_ALERTS dependencies on BISFV_TARGET_LEVELS
12.1.1
-
PACKAGE BODY: APPS.MST_CMP_KPIS
12.1.1
-
PACKAGE BODY: APPS.HR_BIS_ALERTS
12.1.1
-
APPS.BIS_TARGET_PVT dependencies on BISBV_TARGET_LEVELS
12.1.1
-
APPS.BIS_TARGET_PVT dependencies on BIS_UTILITIES_PUB
12.1.1