Search Results cs_brm_3d_service_request_v
Overview
CS_BRM_3D_SERVICE_REQUEST_V is an APPS-owned database view within the Oracle E-Business Suite Service (CS) module. Its description identifies it as the "3D Service Request View used by the Business Rule Monitor." The view exposes a consolidated, denormalized projection of service request (incident) data, including status, type, urgency, severity, ownership, customer, and product attributes, joined to descriptive translation tables so that human-readable names accompany the underlying identifier columns.
A defining characteristic of this view is its RECORD_STATUS column, which is hard-coded to the literal value 'HISTORIC'. This signals that the view is designed to return historical or audited versions of service request records rather than the live transactional rows. It draws its "current-state" measurements from audit columns (prefixed OLD_) on the CS_INCIDENTS_AUDIT_B table, effectively reconstructing the state of a service request as captured in the audit trail. The companion OBJECT_TYPE column is likewise a constant, set to 'CS_BRM_3D_SERVICE_REQUEST_V', giving downstream consumers a stable literal tag for the source object. The view is implemented in APPS and carries VALID status in the ETRM metadata, indicating it is a supported and active dictionary object in both 12.1.1 and 12.2.2.
Underlying Base Objects
The view text joins a set of incident, audit, reference, party, and product tables, most referenced through APPS synonyms:
- CS_INCIDENTS_B_SEC (VIEW) — supplies the secure incident base row, including customer linkage (
CUSTOMER_ID). - CS_INCIDENTS_AUDIT_B (SYNONYM) — the audit history table that drives the view, providing
OLD_INCIDENT_*columns used as the effective status, type, urgency, severity, owner, and date values. - CS_INCIDENT_STATUSES_TL, CS_INCIDENT_TYPES_TL, CS_INCIDENT_URGENCIES_TL, CS_INCIDENT_SEVERITIES_TL (SYNONYMS) — translation (TL) tables supplying the
NAMEvalues for each coded attribute, joined with an outer join onLANGUAGE = USERENV('LANG'). - PER_PEOPLE_F (VIEW), JTF_RS_RESOURCE_EXTNS (SYNONYM) — resolve the incident owner to a person and resource record (
FULL_NAME). - HZ_PARTIES, HZ_CUST_ACCOUNTS (SYNONYMS) — provide company name (
PARTY_NAME) and account number. - MTL_SYSTEM_ITEMS_VL (VIEW) — supplies concatenated segments and description for the customer product.
- Documented packaged dependencies include HR_GENERAL, HR_PERSON_NAME, HR_SECURITY, which support name formatting and row-level security.
Key Columns
- RECORD_STATUS — constant
'HISTORIC'; the searched column, confirming audited/historic context. - OBJECT_TYPE / OBJECT_ID — constant type tag and the incident identifier.
- INCIDENT_ID — the service request primary key.
- INCIDENT_STATUS_ID / INCIDENT_STATUS_NAME — status code and translated name.
- INCIDENT_TYPE_ID / INCIDENT_TYPE_NAME, INCIDENT_URGENCY_ID / _NAME, INCIDENT_SEVERITY_ID / _NAME — coded classification and descriptions.
- INCIDENT_OWNER_ID / INCIDENT_OWNER_NAME — assigned resource and full name.
- INCIDENT_DATE, EXPECTED_RESOLUTION_DATE, OBLIGATION_DATE, CLOSE_DATE — key service-level dates.
- CUSTOMER_ID, COMPANY_NAME, ACCOUNT_NUMBER — customer and account context.
- CUSTOMER_PRODUCT_ID, PRODUCT_NAME, PRODUCT_DESCRIPITION — item instance and product details (note the documented spelling of the last column).
- CREATED_BY, CREATION_DATE, LAST_UPDATE_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — auditing/WHO columns.
Common Use Cases and Queries
Typical consumers include Business Rule Monitor logic, service-analytics reports, and integration extracts that require the historical progression of service requests. The constant RECORD_STATUS allows a caller to filter or label rows as historic without inspecting underlying audit tables.
- Query historical incidents for a given customer:
SELECT INCIDENT_ID, INCIDENT_STATUS_NAME, RECORD_STATUS FROM CS_BRM_3D_SERVICE_REQUEST_V WHERE CUSTOMER_ID = :p_customer_id; - Report aging by status:
SELECT INCIDENT_STATUS_NAME, COUNT(*) FROM CS_BRM_3D_SERVICE_REQUEST_V WHERE RECORD_STATUS = 'HISTORIC' GROUP BY INCIDENT_STATUS_NAME; - Filter by owner and date:
SELECT INCIDENT_ID, INCIDENT_OWNER_NAME, INCIDENT_DATE FROM CS_BRM_3D_SERVICE_REQUEST_V WHERE INCIDENT_OWNER_ID = :p_owner AND INCIDENT_DATE >= :p_from_date;
Because RECORD_STATUS is a literal, it should be treated as an informational discriminator rather than a variable filter value, and joins to the audit base table should be preserved to maintain historical fidelity.
-
View: CS_BRM_3D_SERVICE_REQUEST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_BRM_3D_SERVICE_REQUEST_V, object_name:CS_BRM_3D_SERVICE_REQUEST_V, status:VALID, product: CS - Service , description: 3D Service Request View used by the Business Rule Monitor. , implementation_dba_data: APPS.CS_BRM_3D_SERVICE_REQUEST_V ,
-
View: CS_BRM_3D_SERVICE_REQUEST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_BRM_3D_SERVICE_REQUEST_V, object_name:CS_BRM_3D_SERVICE_REQUEST_V, status:VALID, product: CS - Service , description: 3D Service Request View used by the Business Rule Monitor. , implementation_dba_data: APPS.CS_BRM_3D_SERVICE_REQUEST_V ,
-
VIEW: APPS.CS_BRM_3D_SERVICE_REQUEST_V
12.1.1
-
VIEW: APPS.CS_BRM_3D_SERVICE_REQUEST_V
12.2.2
-
Lookup Type: BRM_OBJECT_TYPE
12.2.2
product: JTF - CRM Foundation , meaning: BRM OBJECT TYPE , description: Objects as used by the Business Rule Workbench ,
-
SYNONYM: APPS.CS_INCIDENT_STATUSES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_STATUSES_TL, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_B_SEC
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_B_SEC, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_AUDIT_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_AUDIT_B, status:VALID,
-
Lookup Type: BRM_OBJECT_TYPE
12.1.1
product: JTF - CRM Foundation , meaning: BRM OBJECT TYPE , description: Objects as used by the Business Rule Workbench ,
-
SYNONYM: APPS.CS_INCIDENT_STATUSES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_STATUSES_TL, status:VALID,
-
SYNONYM: APPS.CS_INCIDENT_URGENCIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_URGENCIES_TL, status:VALID,
-
Lookup Type: JTF_BRM_OBJECT_TYPE
12.1.1
product: JTF - CRM Foundation , meaning: JTF BRM OBJECT TYPE , description: Objects as used by the Business Rule Workbench ,
-
Lookup Type: JTF_BRM_OBJECT_TYPE
12.2.2
product: JTF - CRM Foundation , meaning: JTF BRM OBJECT TYPE , description: Objects as used by the Business Rule Workbench ,
-
SYNONYM: APPS.CS_INCIDENT_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_TYPES_TL, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_AUDIT_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_AUDIT_B, status:VALID,
-
SYNONYM: APPS.CS_INCIDENT_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_TYPES_TL, status:VALID,
-
SYNONYM: APPS.CS_INCIDENT_SEVERITIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_SEVERITIES_TL, status:VALID,
-
SYNONYM: APPS.CS_INCIDENT_SEVERITIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_SEVERITIES_TL, status:VALID,
-
SYNONYM: APPS.CS_INCIDENT_URGENCIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENT_URGENCIES_TL, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.CS_BRM_3D_SERVICE_REQUEST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_BRM_3D_SERVICE_REQUEST_V, object_name:CS_BRM_3D_SERVICE_REQUEST_V, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CS_BRM_3D_SERVICE_REQUEST_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CS.CS_BRM_3D_SERVICE_REQUEST_V, object_name:CS_BRM_3D_SERVICE_REQUEST_V, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_ALL_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_ALL_B, status:VALID,
-
SYNONYM: APPS.CS_INCIDENTS_ALL_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CS_INCIDENTS_ALL_B, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
SYNONYM: APPS.JTF_RS_RESOURCE_EXTNS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_RESOURCE_EXTNS, status:VALID,
-
SYNONYM: APPS.JTF_RS_RESOURCE_EXTNS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JTF_RS_RESOURCE_EXTNS, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE BODY: APPS.JTF_ESCWFACTIVITY_PVT
12.2.2
-
PACKAGE BODY: APPS.JTF_ESCWFACTIVITY_PVT
12.1.1
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
VIEW: APPS.MTL_SYSTEM_ITEMS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:INV.MTL_SYSTEM_ITEMS_VL, object_name:MTL_SYSTEM_ITEMS_VL, status:VALID,
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
APPS.JTF_ESCWFACTIVITY_PVT dependencies on AK_OBJECTS_VL
12.1.1
-
SYNONYM: APPS.HZ_CUST_ACCOUNTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_CUST_ACCOUNTS, status:VALID,
-
APPS.JTF_ESCWFACTIVITY_PVT dependencies on AK_OBJECTS_VL
12.2.2
-
VIEW: APPS.PER_PEOPLE_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
APPS.JTF_ESCWFACTIVITY_PVT dependencies on JTF_TASKS_VL
12.2.2
-
APPS.JTF_ESCWFACTIVITY_PVT dependencies on JTF_TASKS_VL
12.1.1
-
APPS.JTF_ESCWFACTIVITY_PVT dependencies on JTF_TASKS_V
12.2.2
-
APPS.JTF_ESCWFACTIVITY_PVT dependencies on JTF_TASKS_V
12.1.1
-
SYNONYM: APPS.HZ_PARTIES
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,