Search Results cs_lookups
Overview
CS_LOOKUPS is a read-only view owned by the APPS schema in Oracle E-Business Suite Release 12.1.1 and 12.2.2. It presents all lookup values that belong to the Service (CS) product, exposing the reference data maintained in the Oracle Application Object Library lookup framework for that application. The view is registered as VALID in the E-Business Suite Technical Reference Manual (ETRM) and is defined over the FND_LOOKUP_VALUES synonym, filtering rows to the Service application context and to the language of the current session.
Because it consolidates lookup metadata into a single, product-scoped projection, CS_LOOKUPS serves as a stable interface for reporting, concurrent programs, personalizations, and integration extracts that need to decode Service lookup codes into their user-facing meanings. Rather than querying FND_LOOKUP_VALUES directly and reproducing the language and application filters, developers reference CS_LOOKUPS to guarantee that only Service lookups are returned and that the correct translated meaning is retrieved.
Underlying Base Objects
The view is defined over the FND_LOOKUP_VALUES synonym, which resolves to the APPLSYS.FND_LOOKUP_VALUES base table maintained by the Application Object Library. FND_LOOKUP_VALUES stores every lookup code across all applications, together with its meaning, description, effective dates, enabled flag, and fifteen descriptive flexfield attribute columns.
The WHERE clause of CS_LOOKUPS constrains the result set in three ways. First, VIEW_APPLICATION_ID is fixed at 170, the application identifier for Service. Second, LANGUAGE is limited to USERENV('LANG'), so each user sees the lookup meaning in the language of the current session. Third, SECURITY_GROUP_ID is compared against the value returned by FND_GLOBAL.LOOKUP_SECURITY_GROUP, a packaged function that enforces lookup-level security. Together these predicates ensure that the view returns only enabled, product-scoped, security-filtered, translated lookup rows. The dependency list documents FND_GLOBAL (PACKAGE) and FND_LOOKUP_VALUES (SYNONYM) as the referenced base objects.
Key Columns
- LOOKUP_TYPE — the lookup type (the grouping name, such as a Service status or category set) to which the code belongs.
- LOOKUP_CODE — the internal code stored on Service transactions and entities; joins to application data.
- MEANING — the user-facing, translated description of the code.
- DESCRIPTION — optional longer text describing the lookup value.
- ENABLED_FLAG — indicates whether the lookup value is currently active ('Y') or disabled ('N').
- START_DATE_ACTIVE / END_DATE_ACTIVE — the effective date range during which the lookup value is valid.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield context and segment columns for extended lookup attributes.
- TAG — a free-form tag column available for customer-specific annotation.
- Audit columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, and LAST_UPDATE_LOGIN track the record lifecycle.
Common Use Cases and Queries
Typical scenarios include decoding Service lookup codes in reports and OAF/Forms pages, validating which codes are active for a given date range, and extracting translated meanings for data migration or integration into external systems. The following query lists all enabled Service lookups for a specific type:
SELECT lookup_code, meaning FROM cs_lookups WHERE lookup_type = 'SERVICE_STATUS' AND enabled_flag = 'Y' ORDER BY lookup_code;SELECT lookup_type, lookup_code, meaning FROM cs_lookups WHERE lookup_type IN ('TASK_PRIORITY','TASK_STATUS') ORDER BY lookup_type, lookup_code;SELECT lookup_code, meaning, start_date_active, end_date_active FROM cs_lookups WHERE enabled_flag = 'Y' AND SYSDATE BETWEEN NVL(start_date_active, SYSDATE) AND NVL(end_date_active, SYSDATE);
Because the view filters on USERENV('LANG') and FND_GLOBAL.LOOKUP_SECURITY_GROUP, results automatically respect the caller's language and security profile, so developers should not add redundant filters for language or security group.
-
View: CS_LOOKUPS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_LOOKUPS, object_name:CS_LOOKUPS, status:VALID, product: CS - Service , description: A view of all the Lookups that belong to product CS. , implementation_dba_data: APPS.CS_LOOKUPS ,
-
View: CS_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_LOOKUPS, object_name:CS_LOOKUPS, status:VALID, product: CS - Service , description: A view of all the Lookups that belong to product CS. , implementation_dba_data: APPS.CS_LOOKUPS ,
-
View: CS_MESSAGES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_MESSAGES_V, object_name:CS_MESSAGES_V, status:VALID, product: CS - Service , description: All messages and their corresponding attributes , implementation_dba_data: APPS.CS_MESSAGES_V ,
-
View: CS_MESSAGES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_MESSAGES_V, object_name:CS_MESSAGES_V, status:VALID, product: CS - Service , description: All messages and their corresponding attributes , implementation_dba_data: APPS.CS_MESSAGES_V ,
-
View: CS_INTERACTIONS_V
12.2.2
product: CS - Service , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: CS_INTERACTIONS_V
12.1.1
product: CS - Service , description: - Retrofitted , implementation_dba_data: Not implemented in this database ,
-
View: CS_CP_AUDIT_MAINTAIN_V
12.1.1
product: CS - Service , description: View of the Customer Product Audit table , implementation_dba_data: Not implemented in this database ,
-
View: CS_CP_AUDIT_MAINT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_AUDIT_MAINT_V, object_name:CS_CP_AUDIT_MAINT_V, status:VALID, product: CS - Service , description: Audit information for customer products , implementation_dba_data: APPS.CS_CP_AUDIT_MAINT_V ,
-
View: CS_CP_AUDIT_MAINTAIN_V
12.2.2
product: CS - Service , description: View of the Customer Product Audit table , implementation_dba_data: Not implemented in this database ,
-
View: CS_SR_HZ_CUST_CONT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_CUST_CONT_V, object_name:CS_SR_HZ_CUST_CONT_V, status:VALID, product: CS - Service , description: This view lists all the customer contacts for party types PARTY_RELATIONSHIP and PERSON. , implementation_dba_data: APPS.CS_SR_HZ_CUST_CONT_V ,
-
View: CS_CP_AUDIT_MAINT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_CP_AUDIT_MAINT_V, object_name:CS_CP_AUDIT_MAINT_V, status:VALID, product: CS - Service , description: Audit information for customer products , implementation_dba_data: APPS.CS_CP_AUDIT_MAINT_V ,
-
View: CS_SR_HZ_CUST_CONT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_HZ_CUST_CONT_V, object_name:CS_SR_HZ_CUST_CONT_V, status:VALID, product: CS - Service , description: This view lists all the customer contacts for party types PARTY_RELATIONSHIP and PERSON. , implementation_dba_data: APPS.CS_SR_HZ_CUST_CONT_V ,
-
View: CS_SR_ALL_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_ALL_NOTES_V, object_name:CS_SR_ALL_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for Contract notes. , implementation_dba_data: APPS.CS_SR_ALL_NOTES_V ,
-
View: CS_SR_ALL_NOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_ALL_NOTES_V, object_name:CS_SR_ALL_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for Contract notes. , implementation_dba_data: APPS.CS_SR_ALL_NOTES_V ,
-
View: CS_INCIDENTS_WORKFLOW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_WORKFLOW_V, object_name:CS_INCIDENTS_WORKFLOW_V, status:VALID, product: CS - Service , description: Used by the Service Request Workflow , implementation_dba_data: APPS.CS_INCIDENTS_WORKFLOW_V ,
-
View: CS_SR_RES_CODE_MAPPING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_RES_CODE_MAPPING_V, object_name:CS_SR_RES_CODE_MAPPING_V, status:VALID, product: CS - Service , description: This view lists the mapping of resolution codes to service request types and inventory items. , implementation_dba_data: APPS.CS_SR_RES_CODE_MAPPING_V ,
-
View: CS_SR_RES_CODE_MAPPING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_RES_CODE_MAPPING_V, object_name:CS_SR_RES_CODE_MAPPING_V, status:VALID, product: CS - Service , description: This view lists the mapping of resolution codes to service request types and inventory items. , implementation_dba_data: APPS.CS_SR_RES_CODE_MAPPING_V ,
-
View: CS_SR_REPORT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_REPORT_V, object_name:CS_SR_REPORT_V, status:VALID, product: CS - Service , description: This view is used in Service Request Summary/Detail report. , implementation_dba_data: APPS.CS_SR_REPORT_V ,
-
View: CS_INCIDENTS_WORKFLOW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_WORKFLOW_V, object_name:CS_INCIDENTS_WORKFLOW_V, status:VALID, product: CS - Service , description: Used by the Service Request Workflow , implementation_dba_data: APPS.CS_INCIDENTS_WORKFLOW_V ,
-
View: CS_CONTACTS_V
12.2.2
product: CS - Service , description: Information regarding the Resources and their type of contacts in Installedbase , implementation_dba_data: Not implemented in this database ,
-
View: CS_SR_SERVICE_HISTORY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SERVICE_HISTORY_V, object_name:CS_SR_SERVICE_HISTORY_V, status:VALID, product: CS - Service , description: This view is being used by Service History Tab , implementation_dba_data: APPS.CS_SR_SERVICE_HISTORY_V ,
-
View: CS_SR_SEARCH_NO_CONT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_NO_CONT_V, object_name:CS_SR_SEARCH_NO_CONT_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table and in the Service History Bali Spreadtable of SR Tab , implementation_dba_data: APPS.CS_SR_SEARCH_NO_CONT_V ,
-
View: CS_SR_SERVICE_HISTORY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SERVICE_HISTORY_V, object_name:CS_SR_SERVICE_HISTORY_V, status:VALID, product: CS - Service , description: This view is being used by Service History Tab , implementation_dba_data: APPS.CS_SR_SERVICE_HISTORY_V ,
-
View: CS_SR_REPORT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_REPORT_V, object_name:CS_SR_REPORT_V, status:VALID, product: CS - Service , description: This view is used in Service Request Summary/Detail report. , implementation_dba_data: APPS.CS_SR_REPORT_V ,
-
View: CS_SR_SEARCH_NO_CONT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_NO_CONT_V, object_name:CS_SR_SEARCH_NO_CONT_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table and in the Service History Bali Spreadtable of SR Tab , implementation_dba_data: APPS.CS_SR_SEARCH_NO_CONT_V ,
-
View: CS_CONTACTS_V
12.1.1
product: CS - Service , description: Information regarding the Resources and their type of contacts in Installedbase , implementation_dba_data: Not implemented in this database ,
-
View: CSY_PERIODS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CSY_PERIODS_V, object_name:CSY_PERIODS_V, status:VALID, product: CS - Service , description: This view returns all the periods used by Embedded Analytics , implementation_dba_data: APPS.CSY_PERIODS_V ,
-
View: CS_SYSTEMS_RG_V
12.1.1
product: CS - Service , description: System Information , implementation_dba_data: Not implemented in this database ,
-
View: CS_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_V, object_name:CS_INCIDENTS_V, status:VALID, product: CS - Service , description: Service requests and their attributes. This view is used by the main service request form. , implementation_dba_data: APPS.CS_INCIDENTS_V ,
-
View: CS_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_V, object_name:CS_INCIDENTS_V, status:VALID, product: CS - Service , description: Service requests and their attributes. This view is used by the main service request form. , implementation_dba_data: APPS.CS_INCIDENTS_V ,
-
View: CS_MULTI_ORG_RULES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_MULTI_ORG_RULES_V, object_name:CS_MULTI_ORG_RULES_V, status:VALID, product: CS - Service , description: This view shows all the rules and rule order for Multi org rules. , implementation_dba_data: APPS.CS_MULTI_ORG_RULES_V ,
-
View: CS_CUST_PROD_MAINT_V
12.1.1
product: CS - Service , description: New View for Customer Products - Performance , implementation_dba_data: Not implemented in this database ,
-
View: CSY_PERIODS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CSY_PERIODS_V, object_name:CSY_PERIODS_V, status:VALID, product: CS - Service , description: This view returns all the periods used by Embedded Analytics , implementation_dba_data: APPS.CSY_PERIODS_V ,
-
View: CS_SYSTEMS_RG_V
12.2.2
product: CS - Service , description: System Information , implementation_dba_data: Not implemented in this database ,
-
View: CS_INST_CONTACT_DTLS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INST_CONTACT_DTLS_V, object_name:CS_INST_CONTACT_DTLS_V, status:VALID, product: CS - Service , description: This view lists the details of the contacts pertaining to Installation Details , implementation_dba_data: APPS.CS_INST_CONTACT_DTLS_V ,
-
View: CS_MULTI_ORG_RULES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_MULTI_ORG_RULES_V, object_name:CS_MULTI_ORG_RULES_V, status:VALID, product: CS - Service , description: This view shows all the rules and rule order for Multi org rules. , implementation_dba_data: APPS.CS_MULTI_ORG_RULES_V ,
-
View: CS_CP_MAINT_V
12.2.2
product: CS - Service , description: Products in the installed base , implementation_dba_data: Not implemented in this database ,
-
View: CS_CP_MAINT_V
12.1.1
product: CS - Service , description: Products in the installed base , implementation_dba_data: Not implemented in this database ,
-
View: CS_INST_CONTACT_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INST_CONTACT_DTLS_V, object_name:CS_INST_CONTACT_DTLS_V, status:VALID, product: CS - Service , description: This view lists the details of the contacts pertaining to Installation Details , implementation_dba_data: APPS.CS_INST_CONTACT_DTLS_V ,
-
View: CS_CUST_PROD_MAINT_V
12.2.2
product: CS - Service , description: New View for Customer Products - Performance , implementation_dba_data: Not implemented in this database ,
-
View: CS_KB_LINKED_SOLUTIONS_VIEW
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_LINKED_SOLUTIONS_VIEW, object_name:CS_KB_LINKED_SOLUTIONS_VIEW, status:VALID, product: CS - Service , description: Linked Solutions View , implementation_dba_data: APPS.CS_KB_LINKED_SOLUTIONS_VIEW ,
-
View: CS_KB_LINKED_SOLUTIONS_VIEW
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_KB_LINKED_SOLUTIONS_VIEW, object_name:CS_KB_LINKED_SOLUTIONS_VIEW, status:VALID, product: CS - Service , description: Linked Solutions View , implementation_dba_data: APPS.CS_KB_LINKED_SOLUTIONS_VIEW ,
-
View: CS_SR_CONTRACT_NOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_CONTRACT_NOTES_V, object_name:CS_SR_CONTRACT_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for Contract notes. , implementation_dba_data: APPS.CS_SR_CONTRACT_NOTES_V ,
-
View: CS_SR_NOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_NOTES_V, object_name:CS_SR_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for SR notes. , implementation_dba_data: APPS.CS_SR_NOTES_V ,
-
View: CS_SR_TASK_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_TASK_NOTES_V, object_name:CS_SR_TASK_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for SR task Debrief Notes. , implementation_dba_data: APPS.CS_SR_TASK_NOTES_V ,
-
View: CS_ACC_CP_RG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_ACC_CP_RG_V, object_name:CS_ACC_CP_RG_V, status:VALID, product: CS - Service , description: This view is used by the main service request form for a record group to retrieve install base information. , implementation_dba_data: APPS.CS_ACC_CP_RG_V ,
-
View: CS_SR_TASK_NOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_TASK_NOTES_V, object_name:CS_SR_TASK_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for SR task Debrief Notes. , implementation_dba_data: APPS.CS_SR_TASK_NOTES_V ,
-
View: CS_SR_CONTRACT_NOTES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_CONTRACT_NOTES_V, object_name:CS_SR_CONTRACT_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for Contract notes. , implementation_dba_data: APPS.CS_SR_CONTRACT_NOTES_V ,
-
View: CS_SR_TASK_DEBRIEF_NOTES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_TASK_DEBRIEF_NOTES_V, object_name:CS_SR_TASK_DEBRIEF_NOTES_V, status:VALID, product: CS - Service , description: This is the base view in the notes section of the workbench tab for Task debrief notes. , implementation_dba_data: APPS.CS_SR_TASK_DEBRIEF_NOTES_V ,
-
View: CS_ACC_CP_RG_V_1155
12.1.1
product: CS - Service , description: This view is used by the main service request form for a record group to retrieve install base information. , implementation_dba_data: Not implemented in this database ,