Search Results primary_language
Overview
APPS.JTF_TERR_RSC_LANG_V is a database view in the Oracle E-Business Suite (EBS) resource management schema, documented in ETRM for releases 12.1.1 and 12.2.2. Its purpose is to present a unified, de-normalized list of the languages associated with a given resource. Rather than returning a single language column, the view consolidates both the primary language and the secondary language of each resource into a single list of (RESOURCE_ID, language) pairs. This makes the view particularly useful for reporting, integration, and lookup scenarios where a consumer needs to know every language a resource can handle, regardless of whether that language is designated as primary or secondary.
The view is owned by the APPS schema, which is the standard for Oracle EBS application-level objects. Within the territory and resource management (JTF) functional area, it supports queries that filter or join resources by language capability, and it is commonly referenced when building selections for users, agents, or other assignable resources in multilingual deployments.
Underlying Base Objects
The view is defined over a single documented base object: JTF_RS_RESOURCE_EXTNS, referenced through a SYNONYM. This table stores extended attributes of resources, including language configuration. The view text is a simple UNION of two SELECT statements, both against the same table, aliased here as J1 and J2:
- The first SELECT returns RESOURCE_ID and PRIMARY_LANGUAGE from JTF_RS_RESOURCE_EXTNS.
- The second SELECT returns RESOURCE_ID and SECONDARY_LANGUAGE from JTF_RS_RESOURCE_EXTNS.
Because both branches are combined with UNION (not UNION ALL), duplicate (RESOURCE_ID, language) rows are eliminated. If a resource's primary and secondary language happen to be identical, only one row is returned for that pairing. This union-based construction is why the view exposes a single language column instead of separate primary/secondary columns; it normalizes the two attributes into one list.
Key Columns
- RESOURCE_ID — The identifier of the resource, drawn from JTF_RS_RESOURCE_EXTNS in both branches of the union. It is the join key back to resource master data and is the primary means of grouping language rows by resource.
- PRIMARY_LANGUAGE — Sourced from J1 in the first SELECT. It represents the resource's primary language designation. Note that the column label exposed by the view is the one carried from the first SELECT of the union, so consumers should treat the language output column as the language value associated with the resource, populated from either primary or secondary origin.
In practice the view yields a row per resource per distinct language, allowing straightforward aggregation such as counting languages per resource or listing all resources that speak a given language.
Common Use Cases and Queries
Typical scenarios include building multilingual resource lookup lists, validating that a resource covers a requested language, and joining to resource or party tables for reporting. A simple query to list all languages for a resource is:
SELECT resource_id, primary_language FROM apps.jtf_terr_rsc_lang_v WHERE resource_id = :p_resource_id;SELECT resource_id, COUNT(*) lang_count FROM apps.jtf_terr_rsc_lang_v GROUP BY resource_id;SELECT resource_id FROM apps.jtf_terr_rsc_lang_v WHERE primary_language = :p_lang;
Because the union deduplicates, consumers should not assume the presence of separate primary and secondary columns; the single language column reflects either origin. All queries should be issued against the APPS synonym as documented.
-
VIEW: APPS.JTF_TERR_RSC_LANG_V
12.2.2
-
VIEW: APPS.JTF_TERR_RSC_LANG_V
12.1.1
-
VIEW: JTF.JTF_RS_RESOURCE_EXTNS_INT#
12.2.2
-
VIEW: JTF.JTF_RS_RESOURCE_EXTNS#
12.2.2
-
APPS.JTF_RS_RESOURCE_WF_PUB SQL Statements
12.2.2
-
View: JTF_TERR_RSC_LANG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_RSC_LANG_V, object_name:JTF_TERR_RSC_LANG_V, status:VALID, product: JTF - CRM Foundation , description: This shows a resource's language(s). , implementation_dba_data: APPS.JTF_TERR_RSC_LANG_V ,
-
APPS.JTF_RS_RESOURCE_WF_PUB SQL Statements
12.1.1
-
VIEW: JTF.JTF_RS_RESOURCE_EXTNS_INT#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_RS_RESOURCE_EXTNS_INT#, status:VALID,
-
View: JTF_TERR_RSC_LANG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TERR_RSC_LANG_V, object_name:JTF_TERR_RSC_LANG_V, status:VALID, product: JTF - CRM Foundation , description: This shows a resource's language(s). , implementation_dba_data: APPS.JTF_TERR_RSC_LANG_V ,
-
View: CAC_TASK_RS_EXTNS_SEC
12.2.2
product: JTF - CRM Foundation , implementation_dba_data: Not implemented in this database ,
-
View: JTF_RS_PARTY_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTY_DTLS_VL, object_name:JTF_RS_PARTY_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='PARTY' , implementation_dba_data: APPS.JTF_RS_PARTY_DTLS_VL ,
-
VIEW: APPS.JTF_RS_PARTY_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTY_DTLS_VL, object_name:JTF_RS_PARTY_DTLS_VL, status:VALID,
-
VIEW: APPS.JTF_RS_PARTY_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTY_DTLS_VL, object_name:JTF_RS_PARTY_DTLS_VL, status:VALID,
-
VIEW: APPS.JTF_RS_PARTNER_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTNER_DTLS_VL, object_name:JTF_RS_PARTNER_DTLS_VL, status:VALID,
-
VIEW: APPS.JTF_RS_PARTNER_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTNER_DTLS_VL, object_name:JTF_RS_PARTNER_DTLS_VL, status:VALID,
-
View: JTF_RS_PARTY_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTY_DTLS_VL, object_name:JTF_RS_PARTY_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='PARTY' , implementation_dba_data: APPS.JTF_RS_PARTY_DTLS_VL ,
-
VIEW: JTF.JTF_RS_RESOURCE_EXTNS#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_RS_RESOURCE_EXTNS#, status:VALID,
-
View: JTF_RS_VENUE_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_VENUE_DTLS_VL, object_name:JTF_RS_VENUE_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='VENUE' , implementation_dba_data: APPS.JTF_RS_VENUE_DTLS_VL ,
-
VIEW: APPS.JTF_RS_OTHER_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_OTHER_DTLS_VL, object_name:JTF_RS_OTHER_DTLS_VL, status:VALID,
-
VIEW: APPS.JTF_RS_OTHER_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_OTHER_DTLS_VL, object_name:JTF_RS_OTHER_DTLS_VL, status:VALID,
-
VIEW: APPS.JTF_RS_DEFRESOURCES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.JTF_RS_DEFRESOURCES_V, object_name:JTF_RS_DEFRESOURCES_V, status:VALID,
-
View: JTF_RS_VENUE_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_VENUE_DTLS_VL, object_name:JTF_RS_VENUE_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='VENUE' , implementation_dba_data: APPS.JTF_RS_VENUE_DTLS_VL ,
-
View: JTF_RS_PARTNER_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTNER_DTLS_VL, object_name:JTF_RS_PARTNER_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='PARTNER' , implementation_dba_data: APPS.JTF_RS_PARTNER_DTLS_VL ,
-
View: CAC_TASK_RS_EXTNS_SEC
12.1.1
product: JTF - CRM Foundation , implementation_dba_data: Not implemented in this database ,
-
View: JTF_RS_SUPPLIER_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_SUPPLIER_DTLS_VL, object_name:JTF_RS_SUPPLIER_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='SUPPLIER_CONTACT' , implementation_dba_data: APPS.JTF_RS_SUPPLIER_DTLS_VL ,
-
View: JTF_RS_PARTNER_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_PARTNER_DTLS_VL, object_name:JTF_RS_PARTNER_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='PARTNER' , implementation_dba_data: APPS.JTF_RS_PARTNER_DTLS_VL ,
-
View: JTF_RS_SUPPLIER_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_SUPPLIER_DTLS_VL, object_name:JTF_RS_SUPPLIER_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='SUPPLIER_CONTACT' , implementation_dba_data: APPS.JTF_RS_SUPPLIER_DTLS_VL ,
-
View: JTF_RS_OTHER_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_OTHER_DTLS_VL, object_name:JTF_RS_OTHER_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='OTHER' , implementation_dba_data: APPS.JTF_RS_OTHER_DTLS_VL ,
-
VIEW: APPS.JTF_RS_DEFRESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.JTF_RS_DEFRESOURCES_V JTF.JTF_RS_DEFRESOURCES_V, object_name:JTF_RS_DEFRESOURCES_V, status:VALID,
-
View: JTF_RS_OTHER_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_OTHER_DTLS_VL, object_name:JTF_RS_OTHER_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='OTHER' , implementation_dba_data: APPS.JTF_RS_OTHER_DTLS_VL ,
-
VIEW: APPS.JTF_RS_VENUE_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_VENUE_DTLS_VL, object_name:JTF_RS_VENUE_DTLS_VL, status:VALID,
-
VIEW: APPS.JTF_RS_VENUE_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_VENUE_DTLS_VL, object_name:JTF_RS_VENUE_DTLS_VL, status:VALID,
-
VIEW: APPS.JTF_RS_SUPPLIER_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_SUPPLIER_DTLS_VL, object_name:JTF_RS_SUPPLIER_DTLS_VL, status:VALID,
-
VIEW: APPS.JTF_RS_SUPPLIER_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_SUPPLIER_DTLS_VL, object_name:JTF_RS_SUPPLIER_DTLS_VL, status:VALID,
-
View: JTF_RS_EMP_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_EMP_DTLS_VL, object_name:JTF_RS_EMP_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='EMPLOYEE' , implementation_dba_data: APPS.JTF_RS_EMP_DTLS_VL ,
-
View: CS_JTF_RS_RESOURCE_EXTNS_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_JTF_RS_RESOURCE_EXTNS_SEC, object_name:CS_JTF_RS_RESOURCE_EXTNS_SEC, status:VALID, product: CS - Service , description: Main resource view that stores all resource data. , implementation_dba_data: APPS.CS_JTF_RS_RESOURCE_EXTNS_SEC ,
-
View: CS_JTF_RS_RESOURCE_EXTNS_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_JTF_RS_RESOURCE_EXTNS_SEC, object_name:CS_JTF_RS_RESOURCE_EXTNS_SEC, status:VALID, product: CS - Service , description: Main resource view that stores all resource data. , implementation_dba_data: APPS.CS_JTF_RS_RESOURCE_EXTNS_SEC ,
-
View: JTF_RS_EMP_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_EMP_DTLS_VL, object_name:JTF_RS_EMP_DTLS_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the details of all the resources whose category='EMPLOYEE' , implementation_dba_data: APPS.JTF_RS_EMP_DTLS_VL ,
-
VIEW: APPS.JTF_RS_EMP_DTLS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_EMP_DTLS_VL, object_name:JTF_RS_EMP_DTLS_VL, status:VALID,
-
Lookup Type: HZ_PUI_OVERVIEW_INFO
12.2.2
product: AR - Receivables , meaning: Party UI Overview Table Attributes , description: Party UI Overview Table Attributes ,
-
VIEW: APPS.JTF_RS_DEFRESOURCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESOURCES_VL, object_name:JTF_RS_DEFRESOURCES_VL, status:VALID,
-
VIEW: APPS.JTF_RS_DEFRESOURCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESOURCES_VL, object_name:JTF_RS_DEFRESOURCES_VL, status:VALID,
-
VIEW: APPS.JTF_RS_EMP_DTLS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_EMP_DTLS_VL, object_name:JTF_RS_EMP_DTLS_VL, status:VALID,
-
View: JTF_RS_RESOURCE_EXTNS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS_VL, object_name:JTF_RS_RESOURCE_EXTNS_VL, status:VALID, product: JTF - CRM Foundation , description: Main resource view that stores all resource data. , implementation_dba_data: APPS.JTF_RS_RESOURCE_EXTNS_VL ,
-
View: JTF_RS_ACTIVE_RESOURCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_ACTIVE_RESOURCES_VL, object_name:JTF_RS_ACTIVE_RESOURCES_VL, status:VALID, product: JTF - CRM Foundation , description: This view stores active resources as of sysdate , implementation_dba_data: APPS.JTF_RS_ACTIVE_RESOURCES_VL ,
-
Lookup Type: HZ_PUI_OVERVIEW_INFO
12.1.1
product: AR - Receivables , meaning: Party UI Overview Table Attributes , description: Party UI Overview Table Attributes ,
-
View: JTF_RS_DEFRESOURCES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESOURCES_VL, object_name:JTF_RS_DEFRESOURCES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_RS_DEFRESOURCES_VL ,
-
View: JTF_RS_DEFRESOURCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_DEFRESOURCES_VL, object_name:JTF_RS_DEFRESOURCES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_RS_DEFRESOURCES_VL ,
-
View: JTF_RS_RESOURCE_EXTNS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_RESOURCE_EXTNS_VL, object_name:JTF_RS_RESOURCE_EXTNS_VL, status:VALID, product: JTF - CRM Foundation , description: Main resource view that stores all resource data. , implementation_dba_data: APPS.JTF_RS_RESOURCE_EXTNS_VL ,
-
View: JTF_RS_ACTIVE_RESOURCES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_ACTIVE_RESOURCES_VL, object_name:JTF_RS_ACTIVE_RESOURCES_VL, status:VALID, product: JTF - CRM Foundation , description: This view stores active resources as of sysdate , implementation_dba_data: APPS.JTF_RS_ACTIVE_RESOURCES_VL ,