Search Results jtf_rs_defresources_v
Overview
JTF_RS_DEFRESOURCES_V is a read-only database view owned by the APPS schema in Oracle E-Business Suite. It is registered under the FND – Application Object Library product and carries a VALID status in both release 12.1.1 and 12.2.2. The view exposes resource definitions maintained within the JTF Resource Manager (part of the CRM Foundation / Territory and Resource Management stack) and joins each resource to its category description, producing a denormalized, reporting-friendly projection of resource master data.
Its role is primarily reporting and integration. Rather than requiring consumers to join the resource extension entity to the object lookup themselves, JTF_RS_DEFRESOURCES_V already performs that join and flattens both descriptive attributes (name, address, contact points, status) and administrative attributes (cost per hour, currency, commissionability, hold flags, flexfield segments) into a single row per resource. This makes it a convenient source for customer-facing reports, OTBI/BIP data models, interfaces, and concurrent programs that need a stable, denormalized resource picture.
Underlying Base Objects
The view text is defined over exactly two documented objects:
- JTF_RS_RESOURCE_EXTNS_VL (VIEW) — aliased
RSC. This is the primary driver; it is the resource extension view that supplies resource identity, source/contact details, and the majority of the projected columns. - JTF_OBJECTS_VL (VIEW) — aliased
OBJ. This is joined solely to translate the resource category code into a meaningful description viaOBJ.NAME, aliased asCATG_MEANING.
The join predicate is RSC.CATEGORY = OBJ.OBJECT_CODE. Because both operands are themselves views (_VL suffixed, indicating they resolve to language-dependent or extension layer definitions), JTF_RS_DEFRESOURCES_V sits at the top of a small view chain rather than directly on base tables. All columns, including the ROWID exposed as ROW_ID, are inherited from the resource extension view.
Key Columns
The view projects a broad column list. Notable groupings include:
- Identity and audit —
ROW_ID,RESOURCE_ID,RESOURCE_NUMBER,RESOURCE_NAME,USER_ID,USER_NAME, plus the standardCREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN, andOBJECT_VERSION_NUMBER. - Classification —
CATEGORY(the code) andCATG_MEANING(the description obtained fromJTF_OBJECTS_VL.NAME). - Source/contact detail —
SOURCE_NAME,SOURCE_EMAIL,SOURCE_PHONE,SOURCE_MOBILE_PHONE,SOURCE_PAGER, and the structured address fields (SOURCE_ADDRESS1–4,SOURCE_CITY,SOURCE_STATE,SOURCE_POSTAL_CODE,SOURCE_COUNTRY, and related fields). - Organizational context —
SOURCE_ORG_ID,SOURCE_ORG_NAME,SOURCE_MGR_ID,SOURCE_MGR_NAME,SOURCE_BUSINESS_GRP_ID,SOURCE_BUSINESS_GRP_NAME,SERVER_GROUP_ID,ASSIGNED_TO_GROUP_ID,COMP_SERVICE_TEAM_ID. - Financial and status attributes —
COST_PER_HR,COST_CENTER,CHARGE_TO_COST_CENTER,COMPENSATION_CURRENCY_CODE,COMMISSIONABLE_FLAG,HOLD_REASON_CODE,HOLD_PAYMENT,SOURCE_STATUS, and the active date rangeSTART_DATE_ACTIVE/END_DATE_ACTIVE. - Flexfield support —
ATTRIBUTE_CATEGORYandATTRIBUTE1throughATTRIBUTE15.
Common Use Cases and Queries
Typical scenarios include building resource directories, validating active resources for assignment, and feeding downstream integration extracts. A simple listing of active resources with their category description and contact details follows:
- Filter on
END_DATE_ACTIVEto isolate currently valid resources. - Join to FND_USER or HR tables on
USER_IDorMANAGING_EMPLOYEE_IDfor extended attributes. - Group by
CATG_MEANINGfor resource headcount by category.
Sample SQL:
SELECT resource_id, resource_number, resource_name, catg_meaning,
source_email, source_phone, source_org_name, cost_per_hr
FROM apps.jtf_rs_defresources_v
WHERE TRUNC(SYSDATE) BETWEEN NVL(start_date_active, SYSDATE)
AND NVL(end_date_active, SYSDATE)
ORDER BY catg_meaning, resource_name;
Because the view is a non-updatable projection over other views, it must be treated strictly as a query/reporting interface; DML against resource definitions is performed through the underlying Resource Manager APIs, not this object.
-
View: 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, product: FND - Application Object Library , implementation_dba_data: APPS.JTF_RS_DEFRESOURCES_V ,
-
View: 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, product: FND - Application Object Library , implementation_dba_data: APPS.JTF_RS_DEFRESOURCES_V ,
-
View: 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, product: JTF - CRM Foundation , implementation_dba_data: APPS.JTF_RS_DEFRESOURCES_V ,
-
PACKAGE BODY: APPS.CN_WEBSERVICE_PUB
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CN_WEBSERVICE_PUB, status:VALID,
-
APPS.CN_WEBSERVICE_PUB SQL Statements
12.2.2
-
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,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
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,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.CN_WEBSERVICE_PUB
12.2.2
-
VIEW: APPS.JTF_OBJECTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_OBJECTS_VL, object_name:JTF_OBJECTS_VL, status:VALID,
-
VIEW: APPS.JTF_OBJECTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_OBJECTS_VL, object_name:JTF_OBJECTS_VL, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
APPS.CN_WEBSERVICE_PUB dependencies on JTF_RS_DEFRESOURCES_V
12.2.2
-
APPS.CN_WEBSERVICE_PUB dependencies on FND_USER
12.2.2
-
APPS.CN_WEBSERVICE_PUB dependencies on JTF_RS_SALESREPS
12.2.2
-
12.2.2 DBA Data
12.2.2
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
12.1.1 DBA Data
12.1.1
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,
-
eTRM - JTF Tables and Views
12.1.1
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - FND Tables and Views
12.2.2
description: No longer used ,
-
eTRM - JTF Tables and Views
12.2.2
description: Interface table to store data that needs to be displayed in Excel ,
-
eTRM - FND Tables and Views
12.1.1
description: No longer used ,