Search Results cug_sr_type_attributes
Overview
APPS.CUG_INCIDNT_ATTR_VALS_V is a reporting and integration view in the Oracle E-Business Suite (12.1.1 and 12.2.2) that exposes service request (SR) type attribute configurations together with the lookup definitions that govern them. It is part of the Oracle TeleService / Customer Support foundation, specifically the Common Understanding Group (CUG) incident attribute framework. The view resolves the relationship between SR type attribute map definitions and the FND_LOOKUPS values of lookup type CUG_SR_TYPE_ATTRIBUTES, providing a denormalized projection that is convenient for querying without needing knowledge of the underlying mapping and value tables.
The view is defined as a DISTINCT join across three source objects, filtered so that only currently active and displayed attributes are returned. It is commonly referenced when the user searches for cug_sr_type_attributes, since that is the lookup type driving the visibility of the attribute codes returned by the view.
Underlying Base Objects
The view is defined over the following documented base objects:
CUG_SR_TYPE_ATTR_MAPS_VL(VIEW) — the SR type attribute mapping definition, supplying the attribute code, incident type, mandatory/displayed/duplicate-check flags, default value, active dates, and sequence number.CUG_INCIDNT_ATTR_VALS_VL(VIEW) — the incident attribute value records, supplying the incident-linked attribute values and the descriptive flexfield (DFF) columnsATTRIBUTE1throughATTRIBUTE15plusATTRIBUTE_CATEGORY.FND_LOOKUPS(VIEW) — the lookup definitions restricted toLKUP.LOOKUP_TYPE = 'CUG_SR_TYPE_ATTRIBUTES', supplying the description and lookup effective dates.FND_GLOBAL(PACKAGE) — referenced for session context (user, login, responsibility) used by the underlying VL views.
The join condition between the mapping and value views is an outer join on SR_ATTRIBUTE_CODE and INCIDENT_ID = 0, producing a per-SR-type attribute blueprint that is not yet tied to a specific incident. The lookup join is on LOOKUP_CODE = SR_ATTRIBUTE_CODE.
Key Columns
SR_TYPE_ATTR_MAP_ID— primary key of the SR type attribute mapping record.SR_ATTRIBUTE_CODE— the attribute identifier; also the lookup code inCUG_SR_TYPE_ATTRIBUTES.INCIDENT_TYPE_ID— the SR (incident) type to which the attribute applies.SR_ATTR_MANDATORY_FLAG,SR_ATTR_DISPLAYED_FLAG,SR_ATTR_DUP_CHECK_FLAG— behavioral flags governing whether the attribute is required, displayed, and duplicate-checked.SR_ATTRIBUTE_LIST_NAME,SR_ATTR_DEFAULT_VALUE— the value-list name and default value for the attribute.START_DATE_ACTIVE,END_DATE_ACTIVE— effective date range of the mapping.INCIDNT_ATTR_VAL_ID,ROW_ID,OBJECT_VERSION_NUMBER— identifying and concurrency columns from the attribute value view.INCIDENT_ID,SR_ATTRIBUTE_VALUE,OVERRIDE_ADDR_VALID_FLAG— incident linkage and value columns.ATTRIBUTE_CATEGORY,ATTRIBUTE1–ATTRIBUTE15— DFF context and segments.DESCRIPTION,SR_ATTR_LKUP_START_DATE,SR_ATTR_LKUP_END_DATE— lookup description and effective dates.SR_TYPE_ATTR_SEQ_NUM— display sequence.
Common Use Cases and Queries
The view is most often used to enumerate the active, displayed attributes available for a given incident type, and to resolve attribute descriptions from the lookup. Typical reporting includes attribute configuration audits and integration extracts feeding service request interfaces.
Sample query returning the active attribute blueprint for an incident type:
SELECT sr_attribute_code, description, sr_attr_mandatory_flag, sr_attr_default_value, sr_attribute_list_name FROM apps.cug_incidnt_attr_vals_v WHERE incident_type_id = :p_type_id ORDER BY sr_type_attr_seq_num;
Query joining to incidents for captured values:
SELECT v.incident_id, v.sr_attribute_code, v.sr_attribute_value, v.attribute_category FROM apps.cug_incidnt_attr_vals_v v WHERE v.incident_id = :p_incident_id;
Because the view pre-filters on TRUNC(SYSDATE) against START_DATE_ACTIVE and END_DATE_ACTIVE of the mapping, and requires SR_ATTR_DISPLAYED_FLAG = 'Y', no additional date or flag filtering is necessary for active-attribute reporting. Reports seeking historical or disabled attributes must query the base CUG_SR_TYPE_ATTR_MAPS_VL view directly instead.
-
Lookup Type: CUG_SR_TYPE_ATTRIBUTES
12.1.1
product: CUG - Citizen Interaction Center , meaning: SR Type Attributes for CIC , description: A Lookup Type which contains a list of all SR Attributes ,
-
Lookup Type: CUG_SR_TYPE_ATTRIBUTES
12.2.2
product: CUG - Citizen Interaction Center , meaning: SR Type Attributes for CIC , description: A Lookup Type which contains a list of all SR Attributes ,
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.CUG_INCIDNT_ATTR_VALS_V
12.1.1
-
VIEW: APPS.CUG_INCIDNT_ATTR_VALS_V
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
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 ,
-
APPS.CS_CIC_ATTRIBUTE_PUB SQL Statements
12.2.2
-
APPS.CUG_INCIDNT_ATTR_VALS_PVT SQL Statements
12.1.1
-
APPS.CUG_INCIDNT_ATTR_VALS_PVT SQL Statements
12.2.2
-
APPS.CUG_WF_EMAIL_UTIL SQL Statements
12.2.2
-
APPS.CUG_WF_EMAIL_UTIL SQL Statements
12.1.1
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
APPS.CUG_SR_ATTRIBUTE_INTF SQL Statements
12.2.2
-
APPS.CUG_SR_ATTRIBUTE_INTF SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CS_CIC_ATTRIBUTE_PUB
12.2.2
-
PACKAGE BODY: APPS.CUG_INCIDNT_ATTR_VALS_PVT
12.1.1
-
PACKAGE BODY: APPS.CUG_INCIDNT_ATTR_VALS_PVT
12.2.2
-
APPS.CS_CIC_ATTRIBUTE_PUB dependencies on FND_LOOKUPS
12.2.2
-
APPS.CUG_WF_EMAIL_UTIL dependencies on FND_LOOKUPS
12.2.2
-
APPS.CUG_WF_EMAIL_UTIL dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.1.1
-
PACKAGE BODY: APPS.CUG_SR_ATTRIBUTE_INTF
12.1.1
-
APPS.CUG_WF_EMAIL_UTIL dependencies on FND_LOOKUPS
12.1.1
-
APPS.CUG_WF_EMAIL_UTIL dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.2.2
-
PACKAGE BODY: APPS.CUG_SR_ATTRIBUTE_INTF
12.2.2
-
APPS.CUG_INCIDNT_ATTR_VALS_PVT dependencies on FND_LOOKUPS
12.2.2
-
APPS.CUG_INCIDNT_ATTR_VALS_PVT dependencies on FND_LOOKUPS
12.1.1
-
PACKAGE BODY: APPS.CUG_WF_EMAIL_UTIL
12.1.1
-
APPS.CUG_SR_ATTRIBUTE_INTF dependencies on CS_INCIDENT_TYPES_VL
12.1.1
-
APPS.CUG_SR_ATTRIBUTE_INTF dependencies on CS_INCIDENT_TYPES_VL
12.2.2
-
PACKAGE BODY: APPS.CUG_WF_EMAIL_UTIL
12.2.2
-
APPS.CUG_SR_ATTRIBUTE_INTF dependencies on FND_LOOKUP_VALUES
12.1.1
-
APPS.CUG_SR_ATTRIBUTE_INTF dependencies on FND_LOOKUP_VALUES
12.2.2
-
eTRM - CUG Tables and Views
12.1.1
description: This is the Translation Table for the CUG_TSK_TYP_ATTR_MAPS_B Table ,
-
eTRM - CUG Tables and Views
12.2.2
description: This is the Translation Table for the CUG_TSK_TYP_ATTR_MAPS_B Table ,