Search Results emp_cat_code
Overview
IGS_PS_EMP_CATS_WL_HR_V is an Oracle E-Business Suite view owned by the APPS schema and defined in the Oracle Student System (IGS) product family. It exposes employment category workload data associated with a calendar category, joined to Oracle HRMS lookup values so that the internal employment category code is presented alongside its descriptive meaning. The view acts as a reporting and integration convenience layer: consumers do not have to resolve the HR_LOOKUPS relationship or apply the enabled/date-effectiveness filters themselves. This is directly relevant to a search on emp_cat_code, because that column is one of the principal outputs of the view. In 12.1.1 and 12.2.2 the object is read-only from the perspective of the APPS consumer; it is a query surface, not a DML target.
Underlying Base Objects
The view is defined over two base objects:
- IGS_PS_EMP_CATS_WL — the driving table (aliased ECW), holding the calendar category and the expected workload number per employment category.
- HR_LOOKUPS — the HRMS lookup table (aliased HRLKUP), providing the descriptive meaning for each employment category code.
The ETRM metadata lists no additional referenced base objects, so the definition is a straightforward equijoin between these two tables. The join predicate is ecw.emp_cat_code = hrlkup.lookup_code, restricted by hrlkup.lookup_type = 'EMP_CAT', hrlkup.enabled_flag = 'Y', and the date-effectiveness condition SYSDATE BETWEEN NVL(hrlkup.start_date_active,SYSDATE) AND NVL(hrlkup.end_date_active,SYSDATE). The ROWID of IGS_PS_EMP_CATS_WL is surfaced as ROW_ID. Because the filters are applied inside the view, only currently enabled and currently effective EMP_CAT lookups appear in the result set.
Key Columns
- ROW_ID — the ROWID of the IGS_PS_EMP_CATS_WL row, useful for identifying the underlying record.
- CAL_CAT_CODE — the calendar category code carried from the workload table.
- EMP_CAT_CODE — the employment category lookup code; the column named in the search term.
- EMP_CAT_DESC — the lookup MEANING, i.e. the descriptive text for the employment category.
- EXPECTED_WL_NUM — the expected workload number recorded against the employment category and calendar category.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS audit columns.
Common Use Cases and Queries
Typical uses include reporting expected workload by employment category, validating that a given employment category is effective, and feeding integrations that require the descriptive category text rather than the code. A simple lookup by category is:
SELECT emp_cat_code, emp_cat_desc, cal_cat_code, expected_wl_num FROM apps.igs_ps_emp_cats_wl_hr_v WHERE emp_cat_code = :p_emp_cat_code;SELECT cal_cat_code, emp_cat_desc, expected_wl_num FROM apps.igs_ps_emp_cats_wl_hr_v ORDER BY cal_cat_code, emp_cat_code;
Because the enabled and date-effectiveness filters are embedded, a row absent from the view may still exist in IGS_PS_EMP_CATS_WL with a disabled or expired lookup; troubleshooting should therefore query the base tables directly when a code is unexpectedly missing.
-
VIEW: APPS.IGS_PS_EMP_CATS_WL_HR_V
12.1.1
-
View: IGS_PS_EMP_CATS_WL_HR_V
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the workload for employment categories. Data will be fetched from Lookups of HR (HR installed) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_EMP_CATS_WL_OSS_V
12.1.1
-
View: IGS_PS_EMP_CATS_WL_OSS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_EMP_CATS_WL_OSS_V, object_name:IGS_PS_EMP_CATS_WL_OSS_V, status:VALID, product: IGS - Student System , description: This entity describes the workload for employment categories. Data will be fetched from lookups of OSS (HR not installed). , implementation_dba_data: APPS.IGS_PS_EMP_CATS_WL_OSS_V ,
-
View: IGS_PS_EMP_CATS_WL_OSS_V
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the workload for employment categories. Data will be fetched from lookups of OSS (HR not installed). , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_EMP_CATS_WL_HR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_EMP_CATS_WL_HR_V, object_name:IGS_PS_EMP_CATS_WL_HR_V, status:VALID, product: IGS - Student System , description: This entity describes the workload for employment categories. Data will be fetched from Lookups of HR (HR installed) , implementation_dba_data: APPS.IGS_PS_EMP_CATS_WL_HR_V ,
-
TABLE: IGS.IGS_PS_EMP_CATS_WL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_EMP_CATS_WL, object_name:IGS_PS_EMP_CATS_WL, status:VALID,
-
VIEW: APPS.IGS_PS_EMP_CATS_WL_OSS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_EMP_CATS_WL_OSS_V, object_name:IGS_PS_EMP_CATS_WL_OSS_V, status:VALID,
-
VIEW: APPS.IGS_PS_EMP_CATS_WL_HR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_EMP_CATS_WL_HR_V, object_name:IGS_PS_EMP_CATS_WL_HR_V, status:VALID,
-
Table: IGS_PS_EMP_CATS_WL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_EMP_CATS_WL, object_name:IGS_PS_EMP_CATS_WL, status:VALID, product: IGS - Student System , description: This entity describes the workload for employment categories. Data will be fetch from Lookups of HR, if HR installed or else it will get the values from lookups of Student System , implementation_dba_data: IGS.IGS_PS_EMP_CATS_WL ,
-
Table: IGS_PS_EMP_CATS_WL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the workload for employment categories. Data will be fetch from Lookups of HR, if HR installed or else it will get the values from lookups of Student System , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PS_EMP_CATS_WL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_EMP_CATS_WL_PKG
12.1.1
-
APPS.IGS_PS_EMP_CATS_WL_PKG dependencies on IGS_PS_EMP_CATS_WL
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,