Search Results job_categories
Overview
APPS.BIS_JOB_CATEGORIES_V is a reporting and integration view in the Oracle E-Business Suite that exposes the set of valid job category values defined within the Human Resources lookup framework. The view is part of the Business Intelligence System (BIS) family of database objects, which Oracle provides to support analytical reporting, data extraction, and downstream integration requirements. Rather than presenting transactional or employee-level data, BIS_JOB_CATEGORIES_V functions as a lightweight reference view that surfaces lookup codes and their descriptive meanings for the JOB_CATEGORIES lookup type.
In practice, the view serves as a denormalized, query-friendly access point to the HR_LOOKUPS table. It allows report developers, concurrent programs, and integration interfaces to retrieve job category identifiers and descriptions without needing to know the underlying lookup type value or join conditions. Because it is defined over a standard HR lookup, the view respects the same setup data that governs job category selection in Oracle HRMS and related modules.
Underlying Base Objects
The view is defined directly over a single base object: the HR_LOOKUPS table. According to the documented view text, the definition is:
SELECT lookup_code ID, meaning VALUE, lookup_code lookup_code, meaning Meaning FROM hr_lookups WHERE lookup_type = 'JOB_CATEGORIES'
The ETRM metadata for version 12.2.2 lists no documented referenced base objects, but the view SQL itself plainly identifies HR_LOOKUPS as the sole source. The WHERE clause restricts rows to those whose LOOKUP_TYPE equals 'JOB_CATEGORIES', meaning the view returns only the lookup values belonging to that specific lookup type. The view does not join to any additional tables, and it does not perform aggregation or transformation beyond column aliasing. Consequently, its contents are entirely dependent on the current, enabled and disabled lookup values configured in the HR_LOOKUPS table for the JOB_CATEGORIES lookup type.
Key Columns
The view exposes four columns, each an alias of a column from HR_LOOKUPS:
- ID — An alias for
LOOKUP_CODE, representing the internal code of the job category. This value is typically the stored, language-independent identifier used for referential and integration purposes. - VALUE — An alias for
MEANING, providing the user-facing, translatable description of the job category. This is the value typically displayed in reports and list of values. - LOOKUP_CODE — The original
LOOKUP_CODEcolumn, exposed both as theIDalias and under its native name for compatibility with code that expects the standard column. - MEANING — The original
MEANINGcolumn, exposed both as theVALUEalias and under its native name.
The duplication of columns under both aliases means BI Publisher reports and other consumers can reference either the generic ID/VALUE naming convention or the native LOOKUP_CODE/MEANING naming without additional view changes.
Common Use Cases and Queries
The view is commonly used when building reports, LOVs, or integration extracts that must present a stable list of job categories. Typical applications include reporting on workforce composition by job category, validating inbound interface values, and populating selection lists in custom forms. A basic query retrieving all job categories is:
SELECT id, value FROM apps.bis_job_categories_v ORDER BY value;
A query matching the native column names would be:
SELECT lookup_code, meaning FROM apps.bis_job_categories_v;
Because the view covers only the JOB_CATEGORIES lookup type, it is not suitable for retrieving other lookup classifications. Where translation is required, developers should be aware that the MEANING value returned reflects the base-language meaning stored in HR_LOOKUPS; translated meanings reside in the HR_LOOKUPS_TL table, which this view does not reference. For multilingual or translated reporting, a join to HR_LOOKUPS_TL may be required. Finally, since the view exposes all rows of the lookup type regardless of enabled status, consumers may need to filter on the underlying lookup attributes if only active job categories are desired.
-
Lookup Type: JOB_CATEGORIES
12.1.1
product: PER - Human Resources , meaning: JOB CATEGORIES , description: Categories of jobs ,
-
Lookup Type: JOB_CATEGORIES
12.2.2
product: PER - Human Resources , meaning: JOB CATEGORIES , description: Categories of jobs ,
-
VIEW: APPS.BIS_JOB_CATEGORIES_V
12.1.1
-
VIEW: APPS.HRI_CL_JOB_CAT_X_V
12.1.1
-
VIEW: APPS.HRI_CL_JOB_CAT_V
12.2.2
-
VIEW: APPS.HRI_CL_JOB_CAT_V
12.1.1
-
VIEW: APPS.HRI_CL_JOB_CAT_X_V
12.2.2
-
VIEW: APPS.HRI_CL_JOB_CAT_JOB_V
12.2.2
-
VIEW: APPS.HRI_CL_JOB_CAT_JOB_V
12.1.1
-
View: BIS_JOB_CATEGORIES_V
12.2.2
product: BIS - Applications BIS , implementation_dba_data: Not implemented in this database ,
-
View: BIS_JOB_CATEGORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:BIS.BIS_JOB_CATEGORIES_V, object_name:BIS_JOB_CATEGORIES_V, status:VALID, product: BIS - Applications BIS , implementation_dba_data: APPS.BIS_JOB_CATEGORIES_V ,
-
APPS.HRBISOFO SQL Statements
12.2.2
-
View: HRI_CL_JOB_CAT_X_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRI_CL_JOB_CAT_X_V, object_name:HRI_CL_JOB_CAT_X_V, status:VALID, product: HRI - Human Resources Intelligence (Obsolete) , implementation_dba_data: APPS.HRI_CL_JOB_CAT_X_V ,
-
APPS.HRBISOFO SQL Statements
12.1.1
-
View: HRI_CL_JOB_CAT_X_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:HRI.HRI_CL_JOB_CAT_X_V, object_name:HRI_CL_JOB_CAT_X_V, status:VALID, product: HRI - Human Resources Intelligence , implementation_dba_data: APPS.HRI_CL_JOB_CAT_X_V ,
-
APPS.HRI_EDW_DIM_JOB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HRBISOFO
12.1.1
-
PACKAGE BODY: APPS.HRBISOFO
12.2.2
-
APPS.HR_PARAMETER_HRMNPSUM SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HRI_EDW_DIM_JOB
12.1.1
-
APPS.PAY_CN_EXT SQL Statements
12.2.2
-
APPS.PAY_CN_EXT SQL Statements
12.1.1
-
APPS.HRI_PARAMETERS SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HR_PARAMETER_HRMNPSUM
12.1.1
-
APPS.HR_BIS_ALERTS dependencies on HR_REPORTS
12.1.1
-
APPS.HRBISOFO dependencies on HR_LOOKUPS
12.1.1
-
APPS.PAY_CN_EXT dependencies on HR_GENERAL
12.2.2
-
APPS.PAY_CN_EXT dependencies on HR_GENERAL
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
APPS.PAY_CN_EXT dependencies on PER_JOB_EXTRA_INFO
12.1.1
-
APPS.HRBISOFO dependencies on PER_JOB_EXTRA_INFO
12.2.2
-
APPS.HR_PARAMETER_HRMNPSUM dependencies on FND_COMMON_LOOKUPS
12.1.1
-
APPS.PAY_CN_EXT dependencies on PER_JOB_EXTRA_INFO
12.2.2
-
APPS.HRI_EDW_DIM_JOB dependencies on PER_JOB_EXTRA_INFO
12.1.1
-
APPS.HRBISOFO dependencies on PER_ASSIGNMENTS_X
12.1.1
-
APPS.HRBISOFO dependencies on PER_JOB_EXTRA_INFO
12.1.1
-
APPS.HRBISOFO dependencies on PER_ASSIGNMENTS_X
12.2.2
-
APPS.HRBISOFO dependencies on HR_LOOKUPS
12.2.2
-
APPS.HRBISOFO dependencies on PER_JOBS
12.1.1
-
APPS.HRBISOFO dependencies on PER_JOBS
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
APPS.HRI_EDW_DIM_JOB dependencies on HR_LOOKUPS
12.1.1
-
APPS.HRI_PARAMETERS dependencies on FND_COMMON_LOOKUPS
12.1.1
-
APPS.HR_PARAMETER_HRMNPSUM dependencies on DUAL
12.1.1
-
APPS.PAY_CN_EXT dependencies on PER_ALL_ASSIGNMENTS_F
12.1.1
-
APPS.PAY_CN_EXT dependencies on PER_ALL_ASSIGNMENTS_F
12.2.2
-
PACKAGE BODY: APPS.HR_BIS_ALERTS
12.1.1
-
PACKAGE BODY: APPS.HRI_PARAMETERS
12.1.1
-
PACKAGE BODY: APPS.PAY_CN_EXT
12.1.1
-
PACKAGE BODY: APPS.PAY_CN_EXT
12.2.2