Search Results node_value
Overview
APPS.AMS_TERR_V is a reporting view in the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2 environments that exposes the territory hierarchy used by Oracle Territory Manager (a component of the ETRM / TeleSales and Sales foundation). The view flattens the parent-child structure of territories into a single denormalized result set, presenting each node in the hierarchy alongside its hierarchy identifier, hierarchy level name, level depth, parent reference, node identifier, and the human-readable node value. Because it consolidates hierarchy traversal data into a queryable form, APPS.AMS_TERR_V is typically consumed by reports, concurrent programs, BI Publisher data models, and custom integrations that need to resolve territory membership or reconstruct hierarchy paths without recursing through base tables manually.
The view name is frequently associated with the search term node_value, which corresponds to the JT.NAME column aliased as NODE_VALUE. Users searching for this object are generally attempting to retrieve the descriptive name of a territory node given its identifier, or to walk the territory tree for assignment and eligibility reporting.
Underlying Base Objects
Two factors define the view's shape. First, it is defined over three documented base objects, all referenced through synonyms owned by APPS:
- JTF_TERR_ALL — supplies the territory records (JT), including the territory name used for NODE_VALUE and the territory type.
- JTF_TERR_TYPES_ALL — supplies territory type definitions (JTT), providing the hierarchy level name and its identifier.
- AMS_TERR_LEVELS_ALL — supplies the level structure (JTL), including hierarchy ID, level depth, and the parent/child relationship used to position each node.
The joins link territory type identifiers between JTF_TERR_TYPES_ALL and both JTF_TERR_ALL and AMS_TERR_LEVELS_ALL, and link parent territory and territory identifiers between AMS_TERR_LEVELS_ALL and JTF_TERR_ALL. The result set is ordered by LEVEL_DEPTH, so parent levels appear before their descendants, which is convenient for rendering indented or sequential hierarchy output. A DISTINCT clause removes duplicate rows that could otherwise arise from the multi-table join.
Key Columns
- HIERARCHY_ID — the identifier of the territory hierarchy to which the node belongs; useful for filtering a single hierarchy.
- HIERARCHY_LEVEL — the descriptive name of the territory type (the level label) at which the node resides.
- HIERARCHY_LEVEL_ID — the numeric identifier of that territory type, mirroring the level name.
- LEVEL_DEPTH — the depth of the node within the hierarchy; lower values indicate higher (broader) levels. This is the primary ordering column.
- PARENT_ID — the parent territory identifier, enabling parent-child reconstruction.
- NODE_ID — the territory identifier for the node itself.
- NODE_VALUE — the territory name; this is the column most often sought when users search on "node_value."
Common Use Cases and Queries
The principal use cases are report generation, hierarchy rendering, and territory lookup by name. A typical query filters to a specific hierarchy and orders by depth:
- Listing all nodes of a hierarchy:
SELECT hierarchy_id, hierarchy_level, level_depth, parent_id, node_id, node_value FROM apps.ams_terr_v WHERE hierarchy_id = :p_hierarchy ORDER BY level_depth; - Resolving a node name from its identifier:
SELECT node_value FROM apps.ams_terr_v WHERE node_id = :p_territory_id; - Finding children of a parent node:
SELECT node_id, node_value FROM apps.ams_terr_v WHERE parent_id = :p_parent_id ORDER BY level_depth;
Because the view is read-only and built entirely from _ALL tables, it respects multi-org data visibility where those base tables are secured. It should be used for reporting and integration rather than for transactional updates; territory maintenance is performed against the underlying AMS and JTF tables. When performance is a concern on very large hierarchies, restricting by HIERARCHY_ID before ordering by LEVEL_DEPTH yields the most efficient execution plans.
-
VIEW: APPS.AMS_TERR_V
12.1.1
-
View: AMS_TERR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TERR_V, object_name:AMS_TERR_V, status:VALID, product: AMS - Marketing , implementation_dba_data: APPS.AMS_TERR_V ,
-
View: AMS_TERR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TERR_V, object_name:AMS_TERR_V, status:VALID, product: AMS - Marketing , implementation_dba_data: APPS.AMS_TERR_V ,
-
VIEW: APPS.AMS_TERR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TERR_V, object_name:AMS_TERR_V, status:VALID,
-
VIEW: APPS.OZF_TERR_V
12.1.1
-
VIEW: APPS.AMS_TERR_V
12.2.2
-
VIEW: APPS.AMS_TERR_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:AMS.AMS_TERR_V, object_name:AMS_TERR_V, status:VALID,
-
VIEW: APPS.OZF_TERR_V
12.2.2
-
VIEW: APPS.OZF_TERR_V
12.1.1
owner:APPS, object_type:VIEW, object_name:OZF_TERR_V, status:VALID,
-
VIEW: APPS.OZF_TERR_V
12.2.2
owner:APPS, object_type:VIEW, object_name:OZF_TERR_V, status:VALID,
-
VIEW: APPS.OZF_FUND_ALLOCTREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUND_ALLOCTREE_V, object_name:OZF_FUND_ALLOCTREE_V, status:VALID,
-
VIEW: APPS.OZF_FUND_ALLOCTREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUND_ALLOCTREE_V, object_name:OZF_FUND_ALLOCTREE_V, status:VALID,
-
APPS.CN_RULES_DISP_PUB SQL Statements
12.2.2
-
APPS.CN_RULES_DISP_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CN_RULES_DISP_PUB
12.2.2
-
PACKAGE BODY: APPS.CN_RULES_DISP_PUB
12.1.1
-
View: OZF_FUND_ALLOCTREE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUND_ALLOCTREE_V, object_name:OZF_FUND_ALLOCTREE_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_FUND_ALLOCTREE_V ,
-
View: OZF_FUND_ALLOCTREE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OZF.OZF_FUND_ALLOCTREE_V, object_name:OZF_FUND_ALLOCTREE_V, status:VALID, product: OZF - Trade Management , implementation_dba_data: APPS.OZF_FUND_ALLOCTREE_V ,
-
APPS.CN_RULE_PVT SQL Statements
12.1.1
-
APPS.CN_RULE_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CN_CALC_SQL_EXPS_PVT_W
12.2.2
-
PACKAGE BODY: APPS.CN_CALC_SQL_EXPS_PVT_W
12.1.1
-
APPS.AMS_ACTMETRICFACT_PVT SQL Statements
12.1.1
-
APPS.CZ_LOGIC_GEN SQL Statements
12.1.1
-
APPS.CZ_LOGIC_GEN SQL Statements
12.2.2
-
APPS.AMS_ACTMETRICFACT_PVT SQL Statements
12.2.2
-
PACKAGE BODY: APPS.CN_RULE_PVT
12.2.2
-
PACKAGE BODY: APPS.CN_RULE_PVT
12.1.1
-
APPS.CN_CALC_SQL_EXPS_PVT SQL Statements
12.1.1
-
APPS.CN_CALC_SQL_EXPS_PVT SQL Statements
12.2.2
-
APPS.OZF_FUND_ALLOCATIONS_PVT SQL Statements
12.1.1
-
APPS.OZF_FUND_ALLOCATIONS_PVT SQL Statements
12.2.2
-
PACKAGE: APPS.CN_CALC_SQL_EXPS_PVT
12.1.1
-
PACKAGE: APPS.CN_CALC_SQL_EXPS_PVT
12.2.2
-
PACKAGE BODY: APPS.CZ_LOGIC_GEN
12.2.2
-
PACKAGE BODY: APPS.CZ_LOGIC_GEN
12.1.1
-
PACKAGE BODY: APPS.CN_CALC_SQL_EXPS_PVT
12.2.2
-
PACKAGE BODY: APPS.PQH_RBC_STAGE
12.1.1
-
PACKAGE BODY: APPS.JTF_FM_INT_REQUEST_PKG
12.1.1
-
PACKAGE BODY: APPS.CN_CALC_SQL_EXPS_PVT
12.1.1
-
PACKAGE BODY: APPS.JTF_FM_INT_REQUEST_PKG
12.2.2
-
PACKAGE BODY: APPS.PQH_RBC_STAGE
12.2.2
-
APPS.CN_RULES_DISP_PUB dependencies on CN_HIERARCHY_NODES
12.2.2
-
APPS.CN_RULES_DISP_PUB dependencies on CN_HIERARCHY_NODES
12.1.1
-
APPS.CN_RULE_PVT dependencies on CN_HIERARCHY_NODES
12.1.1
-
APPS.CN_RULE_PVT dependencies on CN_HIERARCHY_NODES
12.2.2
-
APPS.IBC_CITEM_ADMIN_GRP dependencies on IBC_CTYPE_PVT
12.1.1
-
APPS.IBC_CITEM_ADMIN_GRP dependencies on IBC_CTYPE_PVT
12.2.2
-
APPS.AMS_ACTMETRICFACT_PVT dependencies on AMS_TERR_V
12.1.1
-
APPS.AMS_ACTMETRICFACT_PVT dependencies on AMS_TERR_V
12.2.2