Search Results cac_sr_schedules_vl
Overview
The view APPS.CAC_SR_SCHEDULES_VL is a seeded, valid database object in Oracle E-Business Suite releases 12.1.1 and 12.2.2, owned by the APPS schema and catalogued under the JTF – CRM Foundation product family. It exposes schedule definitions maintained by the CRM Service Request scheduling framework (the CAC_SR_SCHEDULES entity set). The _VL suffix denotes a "translated" or language view: the view joins the base table and its translation table using the session language, returning the translated SCHEDULE_NAME and SCHEDULE_DESC attributes for the current user environment. Because it resolves multilanguage (MLS) text at query time, the view is the preferred reporting and integration surface for schedule metadata; it abstracts the underlying multi-table structure into a single row per schedule with no language join required by the caller.
Underlying Base Objects
The view is defined over two synonyms:
CAC_SR_SCHEDULES_B— the base table holding language-independent schedule attributes (identifiers, template references, category, activation dates, audit columns).CAC_SR_SCHEDULES_TL— the translation table holding language-dependent text, keyed bySCHEDULE_IDandLANGUAGE.
The view text joins them on JSSTL.SCHEDULE_ID = JSSB.SCHEDULE_ID and constrains the translation row with JSSTL.LANGUAGE = USERENV('LANG'), so each query returns exactly one row per schedule for the caller's session language. The view exposes the base table's ROWID as ROW_ID, and passes through the object version numbers (OBJECT_VERSION_NUMBER, TEMPLATE_OVN) used for optimistic locking.
Key Columns
ROW_ID— the row identifier from the base table, useful for updates and diagnostics.SCHEDULE_ID— primary key of the schedule and the join key between base and translation tables.SCHEDULE_NAME— the translated, user-facing name of the schedule.SCHEDULE_DESC— the translated description; this is the column users most commonly search for as "schedule_desc".TEMPLATE_ID/TEMPLATE_OVN— reference to the schedule template and its version.SCHEDULE_CATEGORY— classification of the schedule within the scheduling framework.START_DATE_ACTIVE,END_DATE_ACTIVE,DELETED_DATE— effective-dating and soft-delete controls; rows with a non-nullDELETED_DATEor an inactive date range should normally be excluded from active-schedule reporting.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— standard audit columns.
Common Use Cases and Queries
Typical uses include LOV and validation queries in Oracle Forms-based CRM screens, concurrent program extracts, and custom reports that must display schedule text in the run-time language. A basic listing of active schedules is:
SELECT SCHEDULE_ID, SCHEDULE_NAME, SCHEDULE_DESC FROM APPS.CAC_SR_SCHEDULES_VL WHERE DELETED_DATE IS NULL AND TRUNC(SYSDATE) BETWEEN NVL(START_DATE_ACTIVE, SYSDATE) AND NVL(END_DATE_ACTIVE, SYSDATE);SELECT SCHEDULE_ID, SCHEDULE_DESC FROM APPS.CAC_SR_SCHEDULES_VL WHERE UPPER(SCHEDULE_DESC) LIKE UPPER('%' || :p_search || '%');— a description-driven search, matching the "schedule_desc" lookup pattern.SELECT SCHEDULE_CATEGORY, COUNT(*) FROM APPS.CAC_SR_SCHEDULES_VL GROUP BY SCHEDULE_CATEGORY;— a category distribution report.
Because translated text is resolved through USERENV('LANG'), results vary by the session's NLS_LANG setting, and callers should not apply language predicates themselves. The view is read-only; DML must target the base and translation tables through the supported CRM APIs.
-
View: CAC_SR_SCHEDULES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.CAC_SR_SCHEDULES_VL JTF.CAC_SR_SCHEDULES_VL, object_name:CAC_SR_SCHEDULES_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.CAC_SR_SCHEDULES_VL ,
-
View: CAC_SR_SCHEDULES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.CAC_SR_SCHEDULES_VL JTF.CAC_SR_SCHEDULES_VL, object_name:CAC_SR_SCHEDULES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.CAC_SR_SCHEDULES_VL ,
-
View: CAC_SR_SCHEDULES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.CAC_SR_SCHEDULES_VL JTF.CAC_SR_SCHEDULES_VL, object_name:CAC_SR_SCHEDULES_VL, status:VALID, product: JTF - CRM Foundation , implementation_dba_data: APPS.CAC_SR_SCHEDULES_VL ,
-
View: CAC_SR_SCHEDULES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.CAC_SR_SCHEDULES_VL JTF.CAC_SR_SCHEDULES_VL, object_name:CAC_SR_SCHEDULES_VL, status:VALID, product: FND - Application Object Library , implementation_dba_data: APPS.CAC_SR_SCHEDULES_VL ,
-
Lookup Type: BEN_ELIG_OBJ_TYPE
12.1.1
product: PER - Human Resources , meaning: Eligibility Object Type ,
-
Lookup Type: BEN_ELIG_OBJ_TYPE
12.2.2
product: PER - Human Resources , meaning: Eligibility Object Type ,
-
PACKAGE BODY: APPS.PER_GET_ELIG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_GET_ELIG, status:VALID,
-
SYNONYM: APPS.CAC_SR_SCHEDULES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CAC_SR_SCHEDULES_TL, status:VALID,
-
SYNONYM: APPS.CAC_SR_SCHEDULES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CAC_SR_SCHEDULES_TL, status:VALID,
-
APPS.HR_SCH_ELIG_OBJ_PKG SQL Statements
12.2.2
-
APPS.PER_GET_ELIG SQL Statements
12.1.1
-
SYNONYM: APPS.CAC_SR_SCHEDULES_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CAC_SR_SCHEDULES_B, status:VALID,
-
APPS.PER_GET_ELIG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.PER_GET_ELIG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_GET_ELIG, status:VALID,
-
SYNONYM: APPS.CAC_SR_SCHEDULES_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CAC_SR_SCHEDULES_B, status:VALID,
-
APPS.HR_SCH_ELIG_OBJ_PKG SQL Statements
12.1.1
-
VIEW: APPS.CAC_SR_SCHEDULES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:FND.CAC_SR_SCHEDULES_VL JTF.CAC_SR_SCHEDULES_VL, object_name:CAC_SR_SCHEDULES_VL, status:VALID,
-
PACKAGE BODY: APPS.HR_SCH_ELIG_OBJ_PKG
12.1.1
-
VIEW: APPS.CAC_SR_SCHEDULES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:FND.CAC_SR_SCHEDULES_VL JTF.CAC_SR_SCHEDULES_VL, object_name:CAC_SR_SCHEDULES_VL, status:VALID,
-
PACKAGE BODY: APPS.HR_SCH_ELIG_OBJ_PKG
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.PER_GET_ELIG
12.1.1
-
PACKAGE BODY: APPS.PER_GET_ELIG
12.2.2
-
APPS.PER_GET_ELIG dependencies on CAC_SR_SCHEDULES_VL
12.1.1
-
APPS.PER_GET_ELIG dependencies on CAC_SR_SCHEDULES_VL
12.2.2
-
APPS.HR_SCH_ELIG_OBJ_PKG dependencies on BEN_ELIG_OBJ_F
12.1.1
-
APPS.HR_SCH_ELIG_OBJ_PKG dependencies on BEN_ELIG_OBJ_F
12.2.2
-
APPS.HR_SCH_ELIG_OBJ_PKG dependencies on BEN_ELIG_OBJ_API
12.1.1
-
APPS.HR_SCH_ELIG_OBJ_PKG dependencies on BEN_ELIG_OBJ_API
12.2.2
-
APPS.PER_GET_ELIG dependencies on HR_UTILITY
12.2.2
-
APPS.PER_GET_ELIG dependencies on HR_UTILITY
12.1.1
-
12.2.2 DBA Data
12.2.2
-
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 - 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 - FND Tables and Views
12.1.1
description: No longer used ,
-
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 - 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.1.1
description: No longer used ,