Search Results jtf_rs_resource_extns_u2




Overview

JTF.JTF_RS_RESOURCE_EXTNS is the central repository of resource master data within Oracle E-Business Suite Release 12.1.1 and 12.2.2. The table stores descriptive, contact, organizational, and personal attributes for every resource known to the applications, regardless of whether that resource originates from Oracle HRMS, Oracle Trading Community Architecture (HZ), or a third-party or legacy source. Each row represents a single resource, identified by the surrogate primary key RESOURCE_ID. In ETRM metadata the table carries FND Design Data reference JTF.JTF_RS_RESOURCE_EXTNS, resides in the APPS_TS_TX_DATA tablespace (PCTFREE 10), and is documented with 86 columns and status VALID. Functionally, it acts as the single point of convergence for resources used across Sales, Service, Marketing, Collections, Contracts, and Territory Management, which is why it is referenced by an unusually large number of downstream tables.

From a Data Vault modeling perspective, the heuristic classification of this object is hub. The metadata identifies JTF_RS_RESOURCE_EXTNS as a hub, meaning it is best understood as a business-key-bearing entity whose primary key (RESOURCE_ID) is referenced by many surrounding link and satellite structures. This classification is a modeling suggestion derived from the foreign-key topology, not a physical constraint imposed by the EBS schema.

Key Information Stored

The table contains both the surrogate identity of a resource and the business keys that resolve it to external systems. The most operationally significant columns include:

The presence of SOURCE_* columns reflects the table's role as an integration point: HR, HZ, and external systems populate these fields so that Oracle EBS applications can consume resource data uniformly without querying each source system directly.

Common Use Cases and Queries

Because resources drive ownership, assignment, and access throughout EBS, JTF_RS_RESOURCE_EXTNS is heavily queried in reporting and integration scenarios. Typical patterns include:

  • Resolving resource identity for a user session. Applications frequently join USER_ID to FND_USER to display the resource's display name and email: SELECT r.resource_number, r.source_name, r.source_email FROM jtf_rs_resource_extns r, fnd_user u WHERE r.user_id = u.user_id AND u.user_name = :user_name;
  • Manager reporting hierarchies. MANAGING_EMPLOYEE_ID (index NU2) supports recursive or self-referencing queries to build reporting lines.
  • Territory and assignment lookups. The resource_id is the join column through JTF_TERR_RSC_ALL, JTF_TTY_ALIGNMENTS, and related territory tables.
  • Sales and collections alignment. JTF_RS_SALESREPS, AR_COLLECTORS, and AS_SALES_CREDITS all resolve resource attributes here for dashboards and credit assignment.
  • Party and contact integration. The CONTACT_ID, SUPPORT_SITE_ID, and PERSON_PARTY_ID columns link resources back to TCA, supporting 360-degree party views.
  • Case-insensitive name search. Function-based indexes FN1–FN6 allow efficient queries such as WHERE UPPER(SOURCE_LAST_NAME) = UPPER(:name).

For 12.2.2, the additional 86-column physical schema (including FS_SETUP_COMPLETE and SUPPORT_SITE) provides a superset of the 12.1.1 definition, so queries should always reference columns documented as present in the target release.

Related Objects

The table participates in an extensive web of dependencies. The most significant related objects include:

  • JTF_OBJECTS_B — referenced via CATEGORY, defining the resource category taxonomy.
  • HZ_ORG_CONTACTS — referenced via CONTACT_ID for the resource's contact identity.
  • HZ_PARTY_SITES — referenced via SUPPORT_SITE_ID for the resource's site.
  • FND_SECURITY_GROUPS — referenced via SECURITY_GROUP_ID for security partitioning.
  • JTF_RS_SALESREPS — the sales-representative extension, joined on RESOURCE_ID; a key table for quoting and territory assignment.
  • JTF_RS_GROUP_MEMBERS and JTF_RS_TEAM_MEMBERS — group and team membership, joined on RESOURCE_ID and TEAM_RESOURCE_ID.
  • AS_SALES_CREDITS — revenue credit allocation for resources, joined via SALESFORCE_ID.
  • CS_INCIDENTS_ALL_B — service incidents owned by a resource, joined via INCIDENT_OWNER_ID.
  • CS_CONTACTS — relates contacts to resources via CONTACT_ID.
  • AMS_ACT_RESOURCES — marketing activity resource assignments, joined on RESOURCE_ID; and OKC_K_ACCESSES — contract access granted to resources, joined on RESOURCE_ID.

These dependencies confirm that JTF_RS_RESOURCE_EXTNS behaves as a foundational hub: changes to a resource record cascade operationally across sales, service, marketing, collections, contracts, and territory modules throughout Oracle EBS 12.1.1 and 12.2.2.