Search Results y_axis_title
Overview
APPS.BSC_KPI_TREE_NODES_VL is a multilingual (language-resolved) view in the Oracle EBS Balanced Scorecard (BSC) module, owned by the APPS schema and registered against FND Design Data BSC.BSC_KPI_TREE_NODES_VL. Its object type is VIEW, its status is VALID, and its view type is documented as a MultiLingual view — a language-resolved view of the data. The view exposes the definition of KPI tree nodes used to render scorecard strategy maps and simulation diagrams, including layout geometry, formatting, color semantics, and axis labeling. It presents translated, language-specific textual attributes (name and help) joined to the non-translated descriptive attributes stored in the base table.
BSC uses this view to display translated information in whichever languages are installed at a site. Because it resolves the session language, reports, OAF pages, and PL/SQL simulation APIs reading from the view automatically receive node labels and help text in the user's current language without requiring custom language-handling logic.
Underlying Base Objects
The view is defined over two documented base objects:
BSC_KPI_TREE_NODES_B— the non-translated ("B" for base) table holding language-independent node attributes such as geometry, format, and indicator references.BSC_KPI_TREE_NODES_TL— the translation ("TL") table holding language-specific columns such as NAME and HELP, keyed by language and source language.
The VL view joins the translated, language-specific rows from BSC_KPI_TREE_NODES_TL with the non-displayed data from BSC_KPI_TREE_NODES_B. From a dependency standpoint, the view is referenced by the simulation APIs BSC_SIMULATION_VIEW_PUB, BSC_SIMULATION_VIEW_PVT (referenced twice in the documented dependency listing), indicating that scorecard simulation rendering logic consumes the resolved node rows directly.
Key Columns
The documented column list, with datatypes and lengths as reported by ETRM, is as follows:
INDICATOR(NUMBER) — identifier linking the node to the underlying KPI indicator definition.NODE_ID(NUMBER) — primary identifier of the tree node.NAME(VARCHAR2(75)) — translated display name of the node.HELP(VARCHAR2(240)) — translated help or descriptive text for the node.SIMULATE_FLAG(NUMBER) — indicates whether the node participates in simulation.FORMAT_ID(NUMBER) — reference to the display format configuration.COLOR_FLAG(NUMBER) andCOLOR_METHOD(NUMBER) — control whether and how the node is color-coded.NAVIGATES_TO_TREND(NUMBER) — flag indicating the node drills through to a trend view.TOP_POSITION,LEFT_POSITION,WIDTH,HEIGHT(NUMBER) — pixel geometry for rendering the node on the diagram canvas.AUTOSCALE_FLAG(NUMBER) — controls automatic scaling of the associated chart.Y_AXIS_TITLE(VARCHAR2(90)) — the y-axis title for the node's chart; the metadata notes this is a y-axis title with a maximum of 30 characters.
The Y_AXIS_TITLE column is directly relevant to the search term "y_axis_title", as it supplies the caption rendered along the vertical axis of a KPI trend or simulation chart.
Common Use Cases and Queries
Typical usage includes verifying node labels in a specific language, auditing scorecard layout metadata, and extracting chart axis captions for reporting or migration. The documented query text is:
SELECT INDICATOR, NODE_ID, NAME, HELP, SIMULATE_FLAG, FORMAT_ID, COLOR_FLAG, COLOR_METHOD, NAVIGATES_TO_TREND, TOP_POSITION, LEFT_POSITION, WIDTH, HEIGHT, AUTOSCALE_FLAG, Y_AXIS_TITLE FROM APPS.BSC_KPI_TREE_NODES_VL;- To isolate chart labeling metadata:
SELECT NODE_ID, NAME, Y_AXIS_TITLE, AUTOSCALE_FLAG FROM APPS.BSC_KPI_TREE_NODES_VL WHERE Y_AXIS_TITLE IS NOT NULL; - To find nodes configured for simulation:
SELECT NODE_ID, NAME FROM APPS.BSC_KPI_TREE_NODES_VL WHERE SIMULATE_FLAG = 1;
Because the view resolves language at query time, no additional joins to translation tables are required in consumer code, which simplifies custom reports and integration extracts built against the BSC schema.
-
APPS.BSC_KPI_TREE_NODES_PKG SQL Statements
12.1.1
-
VIEW: APPS.BSC_KPI_TREE_NODES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_KPI_TREE_NODES_VL, object_name:BSC_KPI_TREE_NODES_VL, status:VALID,
-
TABLE: BSC.BSC_SYS_DATASETS_TL
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_SYS_DATASETS_TL, object_name:BSC_SYS_DATASETS_TL, status:VALID,
-
TABLE: BSC.BSC_KPI_TREE_NODES_TL
12.1.1
owner:BSC, object_type:TABLE, fnd_design_data:BSC.BSC_KPI_TREE_NODES_TL, object_name:BSC_KPI_TREE_NODES_TL, status:VALID,
-
VIEW: APPS.BSC_SYS_DATASETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_SYS_DATASETS_VL, object_name:BSC_SYS_DATASETS_VL, status:VALID,
-
View: BSC_KPI_TREE_NODES_VL
12.2.2
product: BSC - Balanced Scorecard (Obsolete) , description: View of BSC_KPI_TREE_NODES_B and BSC_KPI_TREE_NODES_TL. , implementation_dba_data: Not implemented in this database ,
-
View: BSC_KPI_TREE_NODES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_KPI_TREE_NODES_VL, object_name:BSC_KPI_TREE_NODES_VL, status:VALID, product: BSC - Balanced Scorecard , description: View of BSC_KPI_TREE_NODES_B and BSC_KPI_TREE_NODES_TL. , implementation_dba_data: APPS.BSC_KPI_TREE_NODES_VL ,
-
View: BSC_SYS_DATASETS_VL
12.2.2
product: BSC - Balanced Scorecard (Obsolete) , description: View of BSC_SYS_DATASETS_B and BSC_SYS_DATASETS_TL. , implementation_dba_data: Not implemented in this database ,
-
View: BSC_SYS_DATASETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BSC.BSC_SYS_DATASETS_VL, object_name:BSC_SYS_DATASETS_VL, status:VALID, product: BSC - Balanced Scorecard , description: View of BSC_SYS_DATASETS_B and BSC_SYS_DATASETS_TL. , implementation_dba_data: APPS.BSC_SYS_DATASETS_VL ,
-
PACKAGE BODY: APPS.BSC_KPI_TREE_NODES_PKG
12.1.1
-
APPS.BSC_SYS_DATASETS_PKG SQL Statements
12.1.1
-
APPS.BSC_DATASETS_PVT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.BSC_SYS_DATASETS_PKG
12.1.1
-
PACKAGE BODY: APPS.BSC_DATASETS_PVT
12.1.1
-
APPS.BSC_DATASETS_PVT dependencies on BSC_SYS_DATASETS_TL
12.1.1
-
APPS.BSC_SYS_DATASETS_PKG dependencies on BSC_SYS_DATASETS_TL
12.1.1
-
APPS.BSC_KPI_TREE_NODES_PKG dependencies on BSC_KPI_TREE_NODES_TL
12.1.1
-
eTRM - BSC Tables and Views
12.1.1
description: Tab permissions ,