Search Results emp_category
Overview
APPS.JTF_RS_EMP_DTLS_VL is a reporting and integration view within the Oracle E-Business Suite resource management schema. It presents a flattened, human-readable projection of employee-level resource records sourced from the broader resource extensions layer of the CRM/Resource Manager foundation. The suffix "VL" indicates that the object is a validated, translatable view, meaning display values for certain derived attributes are resolved through the translation framework while the underlying identifiers remain intact.
In Oracle EBS 12.1.1 and 12.2.2 the view is owned by the APPS schema and is primarily consumed by modules such as Field Service, TeleService, Service Request, iSupport, and resource scheduling components. It serves as the canonical read-only source for employee resource details, providing denormalised access to identities, contact information, organisational assignments, cost attributes, and job context without requiring the caller to join the numerous underlying resource and HR tables directly. The view is not a table-backed entity and holds no data of its own; every row is derived at query time.
Underlying Base Objects
Per the documented ETRM metadata for 12.2.2, the only referenced base object is JTF_RS_RESOURCE_EXTNS_VL, itself a validated view over the resource extensions entity. JTF_RS_EMP_DTLS_VL selects a defined column list from that parent view and applies a single restrictive predicate: rsc.category = 'EMPLOYEE'. This filter is the defining characteristic of the view, ensuring that only resource records classified as employees are returned, excluding other resource categories such as teams, groups, or non-employee resources.
Because the parent JTF_RS_RESOURCE_EXTNS_VL consolidates data that ultimately originates in resource, party, and HR person structures, the view inherits that lineage. Column-level aliasing in the defining query renames parent attributes to business-friendly names, for example SOURCE_FIRST_NAME becomes FIRST_NAME and SOURCE_CATEGORY becomes EMP_CATEGORY.
Key Columns
- RESOURCE_ID — Primary identifier of the resource record.
- RESOURCE_NUMBER — System-generated resource number.
- SOURCE_ID / PERSON_PARTY_ID — Links to the originating person or party entity.
- FIRST_NAME, LAST_NAME, MIDDLE_NAME, FULL_NAME — Employee name attributes derived from source columns.
- EMPLOYEE_NUMBER — The HR employee number (source_number).
- EMP_CATEGORY — Exposes source_category; the column most relevant to searches for "emp_category", distinguishing employee classification.
- EMP_STATUS — Active or inactive status of the employee resource.
- JOB_ID, JOB_TITLE, MANAGER_PERSON_ID, MANAGER_NAME — Employment position and reporting hierarchy.
- EMAIL, PHONE — Contact details.
- ORG_ID, ORG_NAME — Business group / operating unit context.
- COST_PER_HR, COST_CENTER, CHARGE_TO_COST_CENTER, COMPENSATION_CURRENCY_CODE — Costing and billing attributes.
- START_DATE_ACTIVE, END_DATE_ACTIVE, EFFECTIVE_START_DATE, EFFECTIVE_END_DATE — Validity and effective dating.
Common Use Cases and Queries
The view is typically used to populate resource pickers, resolve employee contact details on service requests, and drive scheduling or dispatch logic. A common query retrieves active employees within a business group:
SELECT resource_id, employee_number, full_name, emp_category, email FROM apps.jtf_rs_emp_dtls_vl WHERE org_id = :p_org_id AND TRUNC(SYSDATE) BETWEEN effective_start_date AND NVL(effective_end_date, TRUNC(SYSDATE));SELECT full_name, job_title, manager_name FROM apps.jtf_rs_emp_dtls_vl WHERE emp_status = 'ACTIVE';SELECT resource_id, cost_per_hr, cost_center FROM apps.jtf_rs_emp_dtls_vl WHERE emp_category = :p_category;
Because the view is read-only and always filtered to employees, it should be used for reporting and integration rather than for transactional updates, which must target the underlying resource tables.
-
VIEW: APPS.JTF_RS_EMP_DTLS_VL
12.1.1
-
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: 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: APPS.JTF_RS_EMP_DTLS_VL
12.2.2
-
View: JTF_RS_EMPLOYEES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_EMPLOYEES_VL, object_name:JTF_RS_EMPLOYEES_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the list of all Employees that can be importedor is already present in Resource Manager , implementation_dba_data: APPS.JTF_RS_EMPLOYEES_VL ,
-
View: JTF_RS_EMPLOYEES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_EMPLOYEES_VL, object_name:JTF_RS_EMPLOYEES_VL, status:VALID, product: JTF - CRM Foundation , description: This view has the list of all Employees that can be importedor is already present in Resource Manager , implementation_dba_data: APPS.JTF_RS_EMPLOYEES_VL ,
-
VIEW: BEN.BEN_CWB_PERSON_INFO#
12.2.2
-
VIEW: APPS.JTF_RS_EMPLOYEES_VL
12.2.2
-
VIEW: APPS.JTF_RS_EMPLOYEES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_EMPLOYEES_VL, object_name:JTF_RS_EMPLOYEES_VL, status:VALID,
-
VIEW: APPS.JTF_RS_EMPLOYEES_VL
12.1.1
-
VIEW: APPS.JTF_RS_EMPLOYEES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JTF.JTF_RS_EMPLOYEES_VL, object_name:JTF_RS_EMPLOYEES_VL, status:VALID,
-
APPS.BEN_CPI_SHD SQL Statements
12.2.2
-
APPS.BEN_CPI_SHD SQL Statements
12.1.1
-
VIEW: APPS.HXC_RESOURCE_ALL_ELIG_PREF_V
12.2.2
-
VIEW: APPS.HXC_RESOURCE_ALL_ELIG_PREF_V
12.1.1
-
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: 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,
-
View: HXC_RESOURCE_ALL_ELIG_PREF_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_ALL_ELIG_PREF_V, object_name:HXC_RESOURCE_ALL_ELIG_PREF_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RESOURCE_ALL_ELIG_PREF_V ,
-
View: BENBV_CWB_PERSON_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CWB_PERSON_INFO_V, object_name:BENBV_CWB_PERSON_INFO_V, status:VALID, product: BEN - Advanced Benefits , description: This view captures Person Information for Compensation Workbench , implementation_dba_data: APPS.BENBV_CWB_PERSON_INFO_V ,
-
View: BENBV_CWB_PERSON_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CWB_PERSON_INFO_V, object_name:BENBV_CWB_PERSON_INFO_V, status:VALID, product: BEN - Advanced Benefits , description: This view captures Person Information for Compensation Workbench , implementation_dba_data: APPS.BENBV_CWB_PERSON_INFO_V ,
-
View: HXC_RESOURCE_ALL_ELIG_PREF_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_ALL_ELIG_PREF_V, object_name:HXC_RESOURCE_ALL_ELIG_PREF_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RESOURCE_ALL_ELIG_PREF_V ,
-
VIEW: BEN.BEN_CWB_PERSON_INFO#
12.2.2
owner:BEN, object_type:VIEW, object_name:BEN_CWB_PERSON_INFO#, status:VALID,
-
Lookup Type: HXC_ELIG_CRITERIA_TYPE
12.1.1
product: HXC - Time and Labor Engine , meaning: OTL ELIG CRITERIA TYPE , description: Eligibility Criteria Rule ,
-
VIEW: APPS.BENBV_CWB_PERSON_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CWB_PERSON_INFO_V, object_name:BENBV_CWB_PERSON_INFO_V, status:VALID,
-
VIEW: APPS.BENBV_CWB_PERSON_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BENBV_CWB_PERSON_INFO_V, object_name:BENBV_CWB_PERSON_INFO_V, status:VALID,
-
APPS.HXC_PREFERENCE_EVALUATION SQL Statements
12.2.2
-
Lookup Type: HXC_ELIG_CRITERIA_TYPE
12.2.2
product: HXC - Time and Labor Engine , meaning: OTL ELIG CRITERIA TYPE , description: Eligibility Criteria Rule ,
-
APPS.HXC_PREFERENCE_EVALUATION SQL Statements
12.1.1
-
APPS.BEN_CWB_PERSON_INFO_PKG SQL Statements
12.1.1
-
APPS.BEN_CWB_PERSON_INFO_PKG SQL Statements
12.2.2
-
View: BEN_CWB_WS_DOWNLOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CWB_WS_DOWNLOAD_V, object_name:BEN_CWB_WS_DOWNLOAD_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_CWB_WS_DOWNLOAD_V ,
-
View: BEN_CWB_WS_DOWNLOAD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CWB_WS_DOWNLOAD_V, object_name:BEN_CWB_WS_DOWNLOAD_V, status:VALID, product: BEN - Advanced Benefits , implementation_dba_data: APPS.BEN_CWB_WS_DOWNLOAD_V ,
-
APPS.BEN_CPI_INS SQL Statements
12.2.2
-
APPS.BEN_CPI_INS SQL Statements
12.1.1
-
TABLE: BEN.BEN_CWB_PERSON_INFO
12.1.1
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CWB_PERSON_INFO, object_name:BEN_CWB_PERSON_INFO, status:VALID,
-
VIEW: APPS.BEN_CWB_WS_DOWNLOAD_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CWB_WS_DOWNLOAD_V, object_name:BEN_CWB_WS_DOWNLOAD_V, status:VALID,
-
VIEW: APPS.BEN_CWB_WS_DOWNLOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BEN.BEN_CWB_WS_DOWNLOAD_V, object_name:BEN_CWB_WS_DOWNLOAD_V, status:VALID,
-
TABLE: BEN.BEN_CWB_PERSON_INFO
12.2.2
owner:BEN, object_type:TABLE, fnd_design_data:BEN.BEN_CWB_PERSON_INFO, object_name:BEN_CWB_PERSON_INFO, status:VALID,
-
View: HXC_RESOURCE_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_RULES_V, object_name:HXC_RESOURCE_RULES_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RESOURCE_RULES_V ,
-
VIEW: APPS.HXC_RESOURCE_RULES_V
12.2.2
-
VIEW: APPS.HXC_RESOURCE_RULES_V
12.1.1
-
PACKAGE BODY: APPS.BEN_CPI_SHD
12.1.1
-
View: HXC_RESOURCE_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_RULES_V, object_name:HXC_RESOURCE_RULES_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RESOURCE_RULES_V ,
-
PACKAGE BODY: APPS.BEN_CPI_SHD
12.2.2
-
VIEW: APPS.HXC_RESOURCE_RULES_PERSON_V
12.1.1
-
APPS.BEN_CPI_UPD SQL Statements
12.1.1
-
APPS.BEN_CPI_UPD SQL Statements
12.2.2
-
View: HXC_RESOURCE_RULES_PERSON_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_RULES_PERSON_V, object_name:HXC_RESOURCE_RULES_PERSON_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RESOURCE_RULES_PERSON_V ,
-
View: HXC_RESOURCE_RULES_PERSON_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HXC.HXC_RESOURCE_RULES_PERSON_V, object_name:HXC_RESOURCE_RULES_PERSON_V, status:VALID, product: HXC - Time and Labor Engine , implementation_dba_data: APPS.HXC_RESOURCE_RULES_PERSON_V ,
-
VIEW: APPS.HXC_RESOURCE_RULES_PERSON_V
12.2.2