Search Results item_serial_number
Overview
CS_SR_SEARCH_NO_CONT_V is a Service (CS) module view owned by the APPS schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It is a non-contractual variant of the Service Request search view family, designed to satisfy lookups performed from the SR find window as rendered on the Bali spread table, and from the Service History Bali spread table on the Service Request tab. The view exposes a flattened, denormalized projection of service request header data drawn from CS_INCIDENTS_B_SEC and its multilingual translation tables, together with selected customer, item, and party attributes. Its primary role is to feed the searchable grid that service agents use to locate existing service requests by criteria such as incident number, serial number, status, severity, or customer, without requiring the agent to query the transactional tables directly. Because it is a view rather than a table, all filtering, sorting, and display are performed at runtime, ensuring that the underlying service request records remain the single source of truth. The "NO_CONT" suffix conventionally denotes that the query path is optimized for non-contract-related service requests, distinguishing it from contract-aware search views used elsewhere in the SR finder.
Underlying Base Objects
The view is defined over a documented set of base objects, most of which are referenced through APPS synonyms in the standard EBS manner. The core transactional source is CS_INCIDENTS_B_SEC, a view over the secure service request base, which supplies incident identifiers, status, type, urgency, severity, ownership, dates, and the resource and financial attributes. Multilingual names are resolved by correlated subqueries against CS_INCIDENT_TYPES_TL, CS_INCIDENT_SEVERITIES_TL, CS_INCIDENT_STATUSES_TL, and CS_INCIDENT_URGENCIES_TL, each filtered by USERENV('LANG') so that the description returned matches the session language. The summary text is sourced from CS_INCIDENTS_ALL_TL. Customer and location context is gathered from HZ_CUST_ACCOUNTS, HZ_PARTIES, HZ_PARTY_SITES, HZ_LOCATIONS, and HZ_TIMEZONES. Product and serial context is linked through CSI_ITEM_INSTANCES and MTL_SYSTEM_ITEMS_KFV. Resource group assignment and creation-channel lookups are provided by JTF_RS_GROUPS_VL, JTF_RS_GROUP_USAGES, CS_LOOKUPS, and FND_GLOBAL.
Key Columns
- INCIDENT_ID, INCIDENT_NUMBER — Primary key and human-readable SR number; INCIDENT_NUMBER_N is a duplicate alias used by the Bali grid.
- SUMMARY — The SR summary line from CS_INCIDENTS_ALL_TL, central to search results.
- CURRENT_SERIAL_NUMBER (CURRENT_SERIAL_NUMBER_NV) — The serial number associated with the current item instance; this is the column most commonly matched against a user-supplied "item_serial_number" search term.
- INVENTORY_ITEM_ID — Foreign key to the inventory item on the service request, resolvable to item name via MTL_SYSTEM_ITEMS_KFV.
- INCIDENT_TYPE, SEVERITY, STATUS_CODE, URGENCY — Language-aware descriptive names resolved from the respective _TL tables.
- CUSTOMER_ID, ACCOUNT_ID, SITE_ID, CUSTOMER_SITE_ID — Customer and site context from the HZ model.
- INCIDENT_DATE, EXPECTED_RESOLUTION_DATE, ACTUAL_RESOLUTION_DATE, DATE_CLOSED, CLOSE_DATE — Lifecycle timestamps for aging and SLA analysis.
- ORG_ID — Operating unit identifier, essential for multi-org security filtering.
- RESOURCE_TYPE, RESOURCE_SUBTYPE_ID, INCIDENT_OWNER_ID — Ownership and resource-group attribution.
Common Use Cases and Queries
The most frequent use case is locating service requests by serial number when the agent does not know the SR number. A representative query is:
SELECT incident_number, summary, current_serial_number_nv, status_code, severity, incident_date FROM apps.cs_sr_search_no_cont_v WHERE current_serial_number_nv = :p_serial_number AND org_id = :p_org_id;
A broader item-and-serial search can join the inventory item description:
SELECT v.incident_number, v.summary, m.concatenated_segments item, v.current_serial_number_nv FROM apps.cs_sr_search_no_cont_v v, apps.mtl_system_items_kfv m WHERE v.inventory_item_id = m.inventory_item_id AND v.current_serial_number_nv LIKE :p_serial || '%' ORDER BY v.incident_date DESC;
Additional scenarios include building open-SR aging reports filtered by status and close date, constructing customer-facing service history extracts, and supporting OBIEE or custom concurrent-program reporting where the Bali spread table is not used but the same flattened SR projection is required. Because the view inherits the security predicates of CS_INCIDENTS_B_SEC, adopters should always constrain queries by ORG_ID and applicable resource-group criteria to avoid unauthorized data exposure.
-
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_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_SR_ACCESS_RESP_SEC
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_SR_ACCESS_RESP_SEC
12.2.2
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_INCIDENTS_B_SEC
12.1.1
product: CS - Service , implementation_dba_data: Not implemented in this database ,
-
View: CS_INCIDENTS_ALL_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_ALL_VL, object_name:CS_INCIDENTS_ALL_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_ALL_B and CS_INCIDENTS_ALL_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_ALL_VL ,
-
View: CS_SR_INCIDENTS_V_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V_SEC, object_name:CS_SR_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V_SEC ,
-
View: CS_INCIDENTS_B_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_B_SEC, object_name:CS_INCIDENTS_B_SEC, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_INCIDENTS_B_SEC ,
-
View: CS_INCIDENTS_VL_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_VL_SEC FND.CS_INCIDENTS_VL_SEC, object_name:CS_INCIDENTS_VL_SEC, status:VALID, product: CS - Service , description: Multi-lingual Secured view based on CS_INCIDENTS_ALL_B_SEC_V view and CS_INCIDENTS_ALL_TL table. , implementation_dba_data: APPS.CS_INCIDENTS_VL_SEC ,
-
View: CS_INCIDENTS_ALL_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_ALL_VL, object_name:CS_INCIDENTS_ALL_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_ALL_B and CS_INCIDENTS_ALL_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_ALL_VL ,
-
View: CS_SR_INCIDENTS_V_SEC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V_SEC, object_name:CS_SR_INCIDENTS_V_SEC, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V_SEC ,
-
View: CS_SR_INCIDENTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V, object_name:CS_SR_INCIDENTS_V, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V ,
-
View: CS_INCIDENTS_VL_SEC
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_VL_SEC FND.CS_INCIDENTS_VL_SEC, object_name:CS_INCIDENTS_VL_SEC, status:VALID, product: CS - Service , implementation_dba_data: APPS.CS_INCIDENTS_VL_SEC ,
-
View: CS_SR_INCIDENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_INCIDENTS_V, object_name:CS_SR_INCIDENTS_V, status:VALID, product: CS - Service , description: Base view for SR main form. , implementation_dba_data: APPS.CS_SR_INCIDENTS_V ,
-
View: CS_SR_SEARCH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_V, object_name:CS_SR_SEARCH_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table , implementation_dba_data: APPS.CS_SR_SEARCH_V ,
-
View: CS_SR_SEARCH_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_SR_SEARCH_V, object_name:CS_SR_SEARCH_V, status:VALID, product: CS - Service , description: This view is used in the SR find window on Bali spread table , implementation_dba_data: APPS.CS_SR_SEARCH_V ,
-
View: CS_INCIDENTS_AUDIT_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_AUDIT_VL, object_name:CS_INCIDENTS_AUDIT_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_AUDIT_B and CS_INCIDENTS_AUDIT_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_AUDIT_VL ,
-
View: CS_INCIDENTS_AUDIT_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_INCIDENTS_AUDIT_VL, object_name:CS_INCIDENTS_AUDIT_VL, status:VALID, product: CS - Service , description: Multi-lingual view for CS_INCIDENTS_AUDIT_B and CS_INCIDENTS_AUDIT_TL tables. , implementation_dba_data: APPS.CS_INCIDENTS_AUDIT_VL ,