Search Results terr_name
Overview
APPS.CSF_PLAN_TERRS_V is a seeded, VALID database view in the Oracle E-Business Suite Release 12.1.1 and 12.2.2 environments, owned by the APPS schema and belonging to the CSF (Field Service) product family. The view functions as the base query for a form block within the CSFSEPLT form, and it presents planning territory assignments in a denormalized, user-readable format. Its primary purpose is to expose the technical foreign key identifiers held in the CSF_PLAN_TERRS table alongside the corresponding human-readable territory and resource group names, so that Oracle Forms, concurrent programs, and custom reports do not need to perform the joins themselves. Because it encapsulates the joins to JTF_TERR_ALL and JTF_RS_GROUPS_VL, the view also centralizes the translation of territory and group identifiers into descriptive names, which is particularly relevant to users searching on terr_name.
Underlying Base Objects
The ETRM metadata records three referenced base objects: CSF_PLAN_TERRS (SYNONYM), JTF_TERR_ALL (SYNONYM), and JTF_RS_GROUPS_VL (VIEW). The defining query is:
SELECT P.ROWID ROW_ID, P.PLAN_TERR_ID, P.LAST_UPDATE_DATE, P.LAST_UPDATED_BY, P.CREATION_DATE, P.CREATED_BY, P.LAST_UPDATE_LOGIN, P.OBJECT_VERSION_NUMBER, P.TERR_ID, P.GROUP_ID, T.NAME TERR_NAME, G.GROUP_NAME FROM CSF_PLAN_TERRS P, JTF_TERR_ALL T, JTF_RS_GROUPS_VL G WHERE T.TERR_ID = P.TERR_ID AND G.GROUP_ID = P.GROUP_ID
The driving table is CSF_PLAN_TERRS, which stores the association between a planning territory and a resource group. JTF_TERR_ALL supplies the territory definition, and JTF_RS_GROUPS_VL is a translated view over resource groups, providing the group name. Because the view uses inner joins only, a planning territory row appears only when matching records exist in both referenced objects.
Key Columns
The view exposes the following columns, as documented:
ROW_ID— the ROWID of the underlyingCSF_PLAN_TERRSrow, used by Oracle Forms for update and locking semantics.PLAN_TERR_ID— the primary key of the planning territory assignment.TERR_ID— the foreign key toJTF_TERR_ALL, identifying the sales or service territory.TERR_NAME— the territory name (T.NAME), the column most relevant to searches onterr_name.GROUP_ID— the foreign key toJTF_RS_GROUPS_VL, identifying the resource group.GROUP_NAME— the descriptive name of the resource group.OBJECT_VERSION_NUMBER— the optimistic locking version used by the OA framework.- Audit columns —
CREATION_DATE,CREATED_BY,LAST_UPDATE_DATE,LAST_UPDATED_BY, andLAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical scenarios include validating territory-to-group planning assignments, building Field Service reports that require readable territory and group names, and troubleshooting the CSFSEPLT form. A simple query filtered by territory name is:
SELECT PLAN_TERR_ID, TERR_ID, TERR_NAME, GROUP_ID, GROUP_NAME FROM APPS.CSF_PLAN_TERRS_V WHERE TERR_NAME = :terr_name;SELECT TERR_NAME, GROUP_NAME FROM APPS.CSF_PLAN_TERRS_V ORDER BY TERR_NAME, GROUP_NAME;SELECT P.TERR_NAME, P.GROUP_NAME, P.LAST_UPDATE_DATE FROM APPS.CSF_PLAN_TERRS_V P WHERE P.GROUP_ID = :group_id;
Because the view joins translated views, query performance depends on indexed access to JTF_TERR_ALL and JTF_RS_GROUPS_VL. Reports should filter on TERR_ID or GROUP_ID where possible, and note that any assignment lacking a matching territory or group record will not be returned.
-
View: CSF_PLAN_TERRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_PLAN_TERRS_V, object_name:CSF_PLAN_TERRS_V, status:VALID, product: CSF - Field Service , description: Base view of form block in CSFSEPLT form. Corresponds to the CSF_PLAN_TERRS table , implementation_dba_data: APPS.CSF_PLAN_TERRS_V ,
-
VIEW: APPS.JTF_TERR_INHERITED_QUAL_V
12.1.1
-
VIEW: APPS.CSF_PLAN_TERRS_V
12.2.2
-
View: CSF_PLAN_TERRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_PLAN_TERRS_V, object_name:CSF_PLAN_TERRS_V, status:VALID, product: CSF - Field Service , description: Base view of form block in CSFSEPLT form. Corresponds to the CSF_PLAN_TERRS table , implementation_dba_data: APPS.CSF_PLAN_TERRS_V ,
-
VIEW: APPS.CSF_PLAN_TERRS_V
12.1.1
-
VIEW: JTF.JTF_TAE_RPT_STAGING_OUT#
12.2.2
-
View: JTF_TERR_INHERITED_QUAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_INHERITED_QUAL_V, object_name:JTF_TERR_INHERITED_QUAL_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to show the qualifiers that a territory inherits from the territories above it in the territory hierarchy (if a hierarchy exists). , implementation_dba_data: APPS.JTF_TERR_INHERITED_QUAL_V ,
-
View: AS_TERR_GRP_TYPE_V
12.1.1
product: AS - Sales Foundation , description: Territory information summary view , implementation_dba_data: Not implemented in this database ,
-
View: AS_TERR_GRP_TYPE_V
12.2.2
product: AS - Sales Foundation , description: Territory information summary view , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.JTF_TERR_INHERITED_QUAL_V
12.2.2
-
View: JTF_TERR_INHERITED_QUAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_INHERITED_QUAL_V, object_name:JTF_TERR_INHERITED_QUAL_V, status:VALID, product: JTF - CRM Foundation , description: This view is used to show the qualifiers that a territory inherits from the territories above it in the territory hierarchy (if a hierarchy exists). , implementation_dba_data: APPS.JTF_TERR_INHERITED_QUAL_V ,
-
VIEW: APPS.CSF_PLAN_TERRS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_PLAN_TERRS_V, object_name:CSF_PLAN_TERRS_V, status:VALID,
-
VIEW: APPS.CSF_PLAN_TERRS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CSF.CSF_PLAN_TERRS_V, object_name:CSF_PLAN_TERRS_V, status:VALID,
-
VIEW: APPS.JTF_TERR_INHERITED_QUAL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_INHERITED_QUAL_V, object_name:JTF_TERR_INHERITED_QUAL_V, status:VALID,
-
VIEW: APPS.JTF_TERR_INHERITED_QUAL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_INHERITED_QUAL_V, object_name:JTF_TERR_INHERITED_QUAL_V, status:VALID,
-
TYPE: APPS.CSF_RESOURCE
12.2.2
owner:APPS, object_type:TYPE, object_name:CSF_RESOURCE, status:VALID,
-
TYPE BODY: APPS.CSF_RESOURCE
12.2.2
-
VIEW: CN.CN_COMM_LINES_API_ALL#
12.2.2
-
VIEW: JTF.JTF_TAE_RPT_STAGING_OUT#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_TAE_RPT_STAGING_OUT#, status:VALID,
-
TYPE: APPS.CN_SCA_INSERT_REC_TYPE
12.2.2
owner:APPS, object_type:TYPE, object_name:CN_SCA_INSERT_REC_TYPE, status:VALID,
-
APPS.JTY_WEBADI_OTH_TERR_DWNL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTF_TERRITORY_GLOBAL_PUB
12.1.1
-
PACKAGE BODY: APPS.JTF_TERRITORY_GLOBAL_PUB
12.2.2
-
TABLE: JTF.JTF_TAE_RPT_STAGING_OUT
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TAE_RPT_STAGING_OUT, object_name:JTF_TAE_RPT_STAGING_OUT, status:VALID,
-
VIEW: APPS.JTF_TASKS_V
12.2.2
-
APPS.JTF_TERR_RPT SQL Statements
12.1.1
-
TABLE: JTF.JTF_TAE_RPT_STAGING_OUT
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_TAE_RPT_STAGING_OUT, object_name:JTF_TAE_RPT_STAGING_OUT, status:VALID,
-
VIEW: APPS.JTF_TASKS_V
12.1.1
-
APPS.CN_GET_TX_DATA_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTF_TERRITORY_PUB_W
12.2.2
-
APPS.CN_GET_TX_DATA_PUB SQL Statements
12.2.2
-
APPS.JTF_TTY_GEO_WEBADI_INT_PKG SQL Statements
12.1.1
-
VIEW: CN.CN_COMM_LINES_API_ALL#
12.2.2
owner:CN, object_type:VIEW, object_name:CN_COMM_LINES_API_ALL#, status:VALID,
-
APPS.JTF_TTY_GEO_WEBADI_INT_PKG SQL Statements
12.2.2
-
APPS.JTY_WEBADI_OTH_TERR_DWNL_PKG SQL Statements
12.2.2
-
APPS.JTF_TERR_RPT SQL Statements
12.2.2
-
PACKAGE: APPS.JTF_TERRITORY_GET_PUB
12.1.1
-
PACKAGE: APPS.JTF_TERRITORY_GET_PUB
12.2.2
-
PACKAGE: APPS.JTY_WEBADI_OTH_TERR_DWNL_PKG
12.2.2
-
PACKAGE: APPS.JTY_WEBADI_OTH_TERR_DWNL_PKG
12.1.1
-
VIEW: JTF.JTY_WEBADI_OTH_TERR_INTF#
12.2.2
-
View: JTF_TASKS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASKS_V, object_name:JTF_TASKS_V, status:VALID, product: JTF - CRM Foundation , description: Common View with all the task attributes. , implementation_dba_data: APPS.JTF_TASKS_V ,
-
View: JTF_TASKS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TASKS_V, object_name:JTF_TASKS_V, status:VALID, product: JTF - CRM Foundation , description: Common View with all the task attributes. , implementation_dba_data: APPS.JTF_TASKS_V ,
-
PACKAGE BODY: APPS.JTY_WEBADI_OTH_TERR_DWNL_PKG
12.1.1
-
PACKAGE BODY: APPS.JTF_AM_FILTER_RESOURCE_PVT
12.1.1
-
PACKAGE BODY: APPS.JTF_TERR_RPT
12.1.1
-
View: JTY_WEBADI_OTH_TERR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTY_WEBADI_OTH_TERR_V, object_name:JTY_WEBADI_OTH_TERR_V, status:VALID, product: JTF - CRM Foundation , description: View for Other Territories Excel Download , implementation_dba_data: APPS.JTY_WEBADI_OTH_TERR_V ,
-
PACKAGE BODY: APPS.JTF_AM_FILTER_RESOURCE_PVT
12.2.2
-
APPS.JTY_WEBADI_OTH_TERR_UPDATE_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.JTF_TERR_RPT
12.2.2