Search Results sr_attribute_code
Overview
The CUG_INCIDNT_ATTR_VALS_B table is a core data object within the Oracle E-Business Suite Citizen Interaction Center (CUG) module. It functions as the primary repository for storing the runtime values of configurable Service Request (SR) attributes. These attributes are defined for specific Service Request Types, allowing for the capture of extended, type-specific information beyond the standard incident fields. The table's role is critical for enabling flexible data collection and tracking within the service request management process, directly supporting the customization of the incident handling workflow in releases 12.1.1 and 12.2.2.
Key Information Stored
The table stores the linkage between a service request, a specific attribute, and its assigned value. The primary identifier for each stored attribute value is the INCIDNT_ATTR_VAL_ID. The two most significant business key columns are SR_ATTRIBUTE_CODE, which identifies the specific configurable attribute (e.g., 'PRIORITY_CODE', 'ASSET_NUMBER'), and INCIDENT_ID, which links the value to a specific service request in the CS_INCIDENTS_ALL_B table. Together, these columns form a unique constraint (INCIDNT_ATTR_VALS_B_UK1), ensuring only one value per attribute per incident is stored. The table likely contains additional columns to hold the actual attribute value (potentially in a generic format or referenced elsewhere) and standard WHO columns for auditing.
Common Use Cases and Queries
A primary use case is generating reports that include custom SR attribute data. For instance, an organization can query all service requests of a specific type to analyze values for a custom "Resolution Code" attribute. Another common scenario involves data validation or migration scripts that need to access or update these extended attributes. A sample query to retrieve attribute values for a specific incident would be:
- SELECT sr_attribute_code, [value_column] FROM cug_incidnt_attr_vals_b WHERE incident_id = <incident_id>;
Given the user's search for "sr_attribute_code," a typical development or support task involves finding all incidents where a particular custom attribute is set: SELECT incident_id FROM cug_incidnt_attr_vals_b WHERE sr_attribute_code = '<ATTRIBUTE_CODE>';
Related Objects
The table is centrally connected to other key EBS objects through documented foreign key relationships. Its primary link to the Service Requests core table is via the INCIDENT_ID column, which references CS_INCIDENTS_ALL_B. This establishes the fundamental connection between an extended attribute value and its parent service request. For translatable attributes, the table is the source for the related Translation table, CUG_INCIDNT_ATTR_VALS_TL, which is joined using the primary key INCIDNT_ATTR_VAL_ID. This TL table stores language-specific versions of the attribute values where applicable.
-
Table: CUG_INCIDNT_ATTR_VALS_B
12.1.1
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_INCIDNT_ATTR_VALS_B, object_name:CUG_INCIDNT_ATTR_VALS_B, status:VALID, product: CUG - Citizen Interaction Center , description: This Table contains the runtime values of the Service Request Attributes configured for a Service Request Type , implementation_dba_data: CUG.CUG_INCIDNT_ATTR_VALS_B ,
-
Table: CUG_INCIDNT_ATTR_VALS_B
12.2.2
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_INCIDNT_ATTR_VALS_B, object_name:CUG_INCIDNT_ATTR_VALS_B, status:VALID, product: CUG - Citizen Interaction Center , description: This Table contains the runtime values of the Service Request Attributes configured for a Service Request Type , implementation_dba_data: CUG.CUG_INCIDNT_ATTR_VALS_B ,
-
Table: CUG_SR_TYPE_ATTR_MAPS_B
12.1.1
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_SR_TYPE_ATTR_MAPS_B, object_name:CUG_SR_TYPE_ATTR_MAPS_B, status:VALID, product: CUG - Citizen Interaction Center , description: This Table stores the mapping between Service Request Types and Service Request Attributes , implementation_dba_data: CUG.CUG_SR_TYPE_ATTR_MAPS_B ,
-
Table: CUG_SR_TYPE_ATTR_MAPS_B
12.2.2
owner:CUG, object_type:TABLE, fnd_design_data:CUG.CUG_SR_TYPE_ATTR_MAPS_B, object_name:CUG_SR_TYPE_ATTR_MAPS_B, status:VALID, product: CUG - Citizen Interaction Center , description: This Table stores the mapping between Service Request Types and Service Request Attributes , implementation_dba_data: CUG.CUG_SR_TYPE_ATTR_MAPS_B ,
-
View: CUG_INCIDNT_ATTR_VALS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_INCIDNT_ATTR_VALS_VL, object_name:CUG_INCIDNT_ATTR_VALS_VL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the multi-lingual view for the run time attribute capture form. Joins the tables CUG_INCIDNT_ATTR_VALS_B and CUG_INCIDNT_ATTR_VALS_TL. , implementation_dba_data: APPS.CUG_INCIDNT_ATTR_VALS_VL ,
-
View: CUG_INCIDNT_ATTR_VALS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_INCIDNT_ATTR_VALS_VL, object_name:CUG_INCIDNT_ATTR_VALS_VL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the multi-lingual view for the run time attribute capture form. Joins the tables CUG_INCIDNT_ATTR_VALS_B and CUG_INCIDNT_ATTR_VALS_TL. , implementation_dba_data: APPS.CUG_INCIDNT_ATTR_VALS_VL ,
-
View: CUG_TSK_TYP_ATTR_DEPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_VL, object_name:CUG_TSK_TYP_ATTR_DEPS_VL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the multi-lingual view used for the configuration of the Service Reqiest Type- Task Type Attribute capture form. Joins the tables CUG_TSK_TYP_ATTR_DEPS_B and CUG_TSK_TYP_ATTR_DEPS_B . , implementation_dba_data: APPS.CUG_TSK_TYP_ATTR_DEPS_VL ,
-
View: CUG_TSK_TYP_ATTR_DEPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_TSK_TYP_ATTR_DEPS_VL, object_name:CUG_TSK_TYP_ATTR_DEPS_VL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the multi-lingual view used for the configuration of the Service Reqiest Type- Task Type Attribute capture form. Joins the tables CUG_TSK_TYP_ATTR_DEPS_B and CUG_TSK_TYP_ATTR_DEPS_B . , implementation_dba_data: APPS.CUG_TSK_TYP_ATTR_DEPS_VL ,
-
View: CUG_SR_TYPE_ATTR_MAPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_SR_TYPE_ATTR_MAPS_VL, object_name:CUG_SR_TYPE_ATTR_MAPS_VL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the multi-lingual view used for the configuration of the Service Reqiest Attribute capture form. Joins the tables CUG_SR_TYPE_ATTR_MAPS_B and CUG_SR_TYPE_ATTR_MAPS_TL. , implementation_dba_data: APPS.CUG_SR_TYPE_ATTR_MAPS_VL ,
-
View: CUG_SR_TYPE_ATTR_MAPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_SR_TYPE_ATTR_MAPS_VL, object_name:CUG_SR_TYPE_ATTR_MAPS_VL, status:VALID, product: CUG - Citizen Interaction Center , description: This is the multi-lingual view used for the configuration of the Service Reqiest Attribute capture form. Joins the tables CUG_SR_TYPE_ATTR_MAPS_B and CUG_SR_TYPE_ATTR_MAPS_TL. , implementation_dba_data: APPS.CUG_SR_TYPE_ATTR_MAPS_VL ,
-
View: CUG_INCIDNT_ATTR_VALS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_INCIDNT_ATTR_VALS_V, object_name:CUG_INCIDNT_ATTR_VALS_V, status:VALID, product: CUG - Citizen Interaction Center , description: This view is used by the Run time form to capture the details of a Service Request specific to CIC application. The details include Incident Address, Over ride Address Validation Flag and the SR attributes. , implementation_dba_data: APPS.CUG_INCIDNT_ATTR_VALS_V ,
-
View: CUG_INCIDNT_ATTR_VALS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:CUG.CUG_INCIDNT_ATTR_VALS_V, object_name:CUG_INCIDNT_ATTR_VALS_V, status:VALID, product: CUG - Citizen Interaction Center , description: This view is used by the Run time form to capture the details of a Service Request specific to CIC application. The details include Incident Address, Over ride Address Validation Flag and the SR attributes. , implementation_dba_data: APPS.CUG_INCIDNT_ATTR_VALS_V ,