Search Results jtf_rs_rep_managers
Overview
JTF_RS_REP_MANAGERS is a denormalized table in the JTF (CRM Foundation) schema that stores the reporting hierarchy of group members within Oracle E-Business Suite 12.1.1 and 12.2.2. It is a core component of the Resource Manager infrastructure, which underpins assignment, escalation, and territory management across CRM modules such as Sales, Service, and TeleSales. Rather than traversing a normalized recursive relationship each time a manager chain is needed, the table materializes the reporting lines — including hierarchical level depth — for members of resource groups.
From the ETRM relationship data, the object references JTF_RS_GROUPS_B, JTF_RS_RESOURCE_EXTNS, and FND_SECURITY_GROUPS via foreign keys, and carries a 37-column schema with the surrogate primary key JTF_RS_REP_MANAGERS_PK on DENORM_MGR_ID. Because the primary key is a surrogate and the object links resources to managers within groups, the heuristic Data Vault classification is link — it resolves many-to-many relationships between resources and their managers rather than describing a single business entity as a hub would.
Key Information Stored
The table's most significant columns fall into identity, hierarchy, and audit categories:
- DENORM_MGR_ID — the surrogate primary key (JTF_RS_REP_MANAGERS_PK); the unique index JTF_RS_REP_MANAGERS_U1 also targets this column.
- RESOURCE_ID — the group member (resource) whose reporting line is being stored; FK to JTF_RS_RESOURCE_EXTNS.
- PARENT_RESOURCE_ID — the reported-to resource at the immediate parent level.
- MANAGER_PERSON_ID and PERSON_ID — person-level identifiers for the manager and member, useful when joining to HR/PER tables.
- GROUP_ID — the resource group context for the hierarchy; FK to JTF_RS_GROUPS_B.
- HIERARCHY_TYPE — differentiates the kind of hierarchy modeled (for example, sales or service reporting).
- REPORTS_TO_FLAG — indicates whether the referenced manager is the active reporting target.
- DENORM_LEVEL — the pre-computed depth of the resource in the hierarchy tree, the denormalization that gives the table its name.
- PAR_ROLE_RELATE_ID and CHILD_ROLE_RELATE_ID — role-based relationship identifiers for the parent/child role linkage.
- START_DATE_ACTIVE / END_DATE_ACTIVE — effective dating of each reporting relationship.
- SECURITY_GROUP_ID — multi-tenant/security partitioning; FK to FND_SECURITY_GROUPS.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, OBJECT_VERSION_NUMBER — standard EBS concurrent-safe audit and optimistic locking columns; ATTRIBUTE1–15 and ATTRIBUTE_CATEGORY provide the usual flex placeholders.
Common Use Cases and Queries
Typical scenarios include building manager roll-up reports for sales teams, driving assignment rules in territory and lead management, and validating escalation routing. A common pattern retrieves a resource's full manager chain within a group, ordered by DENORM_LEVEL:
SELECT RESOURCE_ID, PARENT_RESOURCE_ID, MANAGER_PERSON_ID, DENORM_LEVEL FROM JTF_RS_REP_MANAGERS WHERE GROUP_ID = :p_group AND REPORTS_TO_FLAG = 'Y' ORDER BY DENORM_LEVEL;- Joining to JTF_RS_RESOURCE_EXTNS to resolve resource names, and to JTF_RS_GROUPS_B to filter by group name.
- Filtering on START_DATE_ACTIVE / END_DATE_ACTIVE to obtain point-in-time hierarchy snapshots for backdated reporting.
- Using MANAGER_PERSON_ID for HR-aligned headcount and span-of-control analysis.
Because the table is denormalized, reporting queries avoid recursive CONNECT BY traversal, which improves performance for high-volume CRM dashboards.
Related Objects
- JTF_RS_GROUPS_B — joined on GROUP_ID; defines the resource group context for each hierarchy entry.
- JTF_RS_RESOURCE_EXTNS — joined on RESOURCE_ID; the extended resource definition supplying names and attributes.
- FND_SECURITY_GROUPS — joined on SECURITY_GROUP_ID; enforces security partitioning.
- JTF_RS_RESOURCE_GROUPS and other resource membership views — frequently combined to reconcile group membership against the reporting hierarchy.
- JTF_RS_TEAMS / team assignment tables — consume manager relationships when resolving escalation and assignment chains.
- JTF_RS_REP_MANAGERS_PK / _U1 indexes — enforce uniqueness on DENORM_MGR_ID and support lookup performance.
-
Table: JTF_RS_REP_MANAGERS
12.2.2
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_REP_MANAGERS, object_name:JTF_RS_REP_MANAGERS, status:VALID, product: JTF - CRM Foundation , description: Denormalized table that stores the reporting hierarchy of group members , implementation_dba_data: JTF.JTF_RS_REP_MANAGERS ,
-
Table: JTF_RS_REP_MANAGERS
12.1.1
owner:JTF, object_type:TABLE, fnd_design_data:JTF.JTF_RS_REP_MANAGERS, object_name:JTF_RS_REP_MANAGERS, status:VALID, product: JTF - CRM Foundation , description: Denormalized table that stores the reporting hierarchy of group members , implementation_dba_data: JTF.JTF_RS_REP_MANAGERS ,
-
VIEW: APPS.JTF_RS_GRP_HIER_V
12.2.2
-
VIEW: APPS.JTF_RS_GRP_HIER_V
12.1.1
-
APPS.CN_PAYMENT_SECURITY_PVT SQL Statements
12.1.1
-
VIEW: APPS.JTF_RS_GRP_HIER_MEM_V
12.1.1
-
VIEW: APPS.JTF_RS_GRP_HIER_MEM_V
12.2.2
-
VIEW: JTF.JTF_RS_REP_MANAGERS#
12.2.2
owner:JTF, object_type:VIEW, object_name:JTF_RS_REP_MANAGERS#, status:VALID,
-
APPS.CN_PAYMENT_SECURITY_PVT SQL Statements
12.2.2
-
VIEW: APPS.JTF_RS_REP_MANAGERS_VL
12.2.2
-
APPS.JTF_RS_REP_MANAGERS_PKG SQL Statements
12.1.1
-
APPS.JTF_RS_REP_MANAGERS_PKG SQL Statements
12.2.2
-
VIEW: APPS.AS_RPT_MANAGERS_V
12.2.2
-
VIEW: APPS.AS_RPT_MANAGERS_V
12.1.1
-
VIEW: APPS.JTF_RS_REP_MANAGERS_VL
12.1.1
-
SYNONYM: APPS.JTF_RS_REP_MANAGERS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_REP_MANAGERS, status:VALID,
-
VIEW: JTF.JTF_RS_REP_MANAGERS#
12.2.2
-
SYNONYM: APPS.JTF_RS_REP_MANAGERS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_REP_MANAGERS, status:VALID,
-
PACKAGE BODY: APPS.JTF_RS_REP_MANAGERS_PKG
12.1.1
-
APPS.IEX_COLL_CAMP_SCHD_RPT_PKG SQL Statements
12.2.2
-
VIEW: APPS.JTF_TTY_SRCH_MY_RESOURCES_V
12.2.2
-
APPS.ASP_CONTACT_PREF_SECURITY_PUB SQL Statements
12.2.2
-
VIEW: APPS.JTF_TTY_SRCH_MY_RESOURCES_V
12.1.1
-
PACKAGE BODY: APPS.JTF_RS_REP_MANAGERS_PKG
12.2.2
-
VIEW: APPS.JTF_TTY_MY_DIRECTS_V
12.1.1
-
APPS.ASP_CONTACT_PREF_SECURITY_PUB SQL Statements
12.1.1
-
VIEW: APPS.JTF_TTY_MY_RESOURCES_V
12.1.1
-
APPS.IEX_PROMISE_RECON_RPT_PKG SQL Statements
12.2.2
-
APPS.CN_WKSHT_GET_PUB SQL Statements
12.2.2
-
VIEW: APPS.JTF_TTY_MY_RESOURCES_V
12.2.2
-
VIEW: APPS.JTF_TTY_MY_DIRECTS_V
12.2.2
-
PACKAGE BODY: APPS.ASP_CONTACT_PREF_SECURITY_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:ASP_CONTACT_PREF_SECURITY_PUB, status:VALID,
-
PACKAGE BODY: APPS.JTF_RS_REP_MANAGERS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_RS_REP_MANAGERS_PKG, status:VALID,
-
View: JTF_RS_GRP_HIER_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GRP_HIER_V, object_name:JTF_RS_GRP_HIER_V, status:VALID, product: JTF - CRM Foundation , description: This view is used for defining the Meta data for the 'Groups' spreadtable in Group Hierarchy Form. , implementation_dba_data: APPS.JTF_RS_GRP_HIER_V ,
-
PACKAGE BODY: APPS.AST_OFL_LEAD_ASSIGN_PARAM
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:AST_OFL_LEAD_ASSIGN_PARAM, status:VALID,
-
APPS.CN_WKSHT_GET_PUB SQL Statements
12.1.1
-
View: JTF_TTY_MY_DIRECTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_MY_DIRECTS_V, object_name:JTF_TTY_MY_DIRECTS_V, status:VALID, product: JTF - CRM Foundation , description: Shows all the direct reports of a salesperson , implementation_dba_data: APPS.JTF_TTY_MY_DIRECTS_V ,
-
APPS.ASO_APR_RESOURCE_HANDLER SQL Statements
12.2.2
-
View: JTF_RS_GRP_HIER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GRP_HIER_V, object_name:JTF_RS_GRP_HIER_V, status:VALID, product: JTF - CRM Foundation , description: This view is used for defining the Meta data for the 'Groups' spreadtable in Group Hierarchy Form. , implementation_dba_data: APPS.JTF_RS_GRP_HIER_V ,
-
View: JTF_RS_GRP_HIER_MEM_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GRP_HIER_MEM_V, object_name:JTF_RS_GRP_HIER_MEM_V, status:VALID, product: JTF - CRM Foundation , description: This view is used for defining the Meta data for the 'Members' spreadtable in Group Hierarchy Form. , implementation_dba_data: APPS.JTF_RS_GRP_HIER_MEM_V ,
-
View: JTF_RS_GRP_HIER_MEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_GRP_HIER_MEM_V, object_name:JTF_RS_GRP_HIER_MEM_V, status:VALID, product: JTF - CRM Foundation , description: This view is used for defining the Meta data for the 'Members' spreadtable in Group Hierarchy Form. , implementation_dba_data: APPS.JTF_RS_GRP_HIER_MEM_V ,
-
PACKAGE BODY: APPS.JTF_RS_REP_MANAGERS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_RS_REP_MANAGERS_PKG, status:VALID,
-
PACKAGE BODY: APPS.AST_OFL_LEAD_ASSIGN_PARAM
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:AST_OFL_LEAD_ASSIGN_PARAM, status:VALID,
-
PACKAGE BODY: APPS.JTF_TTY_NACCT_SALES_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TTY_NACCT_SALES_PUB, status:VALID,
-
PACKAGE BODY: APPS.JTF_TTY_NACCT_SALES_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TTY_NACCT_SALES_PUB, status:VALID,
-
View: JTF_TTY_SRCH_MY_RESOURCES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_TTY_SRCH_MY_RESOURCES_V, object_name:JTF_TTY_SRCH_MY_RESOURCES_V, status:VALID, product: JTF - CRM Foundation , description: Shows all the direct and indirect reports of a salesperson , implementation_dba_data: APPS.JTF_TTY_SRCH_MY_RESOURCES_V ,
-
PACKAGE: APPS.JTF_RS_CONC_REPMGR_PUB
12.1.1
-
PACKAGE BODY: APPS.JTF_TTY_ALIGN_ACTIVATE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TTY_ALIGN_ACTIVATE_PKG, status:VALID,
-
PACKAGE BODY: APPS.JTF_TTY_WEBADI_SALSTEAM_UPDATE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JTF_TTY_WEBADI_SALSTEAM_UPDATE, status:VALID,
-
PACKAGE BODY: APPS.ASO_SECURITY_INT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:ASO_SECURITY_INT, status:VALID,