Search Results cug_sr_type_attr_maps_vl
Overview
APPS.CUG_SR_TYPE_ATTR_MAPS_VL is a multi-lingual (ML) view owned by the APPS schema and delivered as part of the CUG - Citizen Interaction Center product within Oracle E-Business Suite 12.1.1 and 12.2.2. Its role is to expose the configuration metadata that governs the Service Request Attribute capture form, specifically the mapping of Service Request attributes to a given Service Request (incident) type. The view supplies the translated, language-specific default value for each mapped attribute alongside the installation-independent setup data held in the base table.
Because it is a "_VL" view—Oracle's standard naming convention for a view that joins a "_B" base table with its "_TL" translation table—it returns exactly the set of rows whose translation matches the session language, determined through USERENV('LANG'). This makes it the appropriate object for reporting, form LOVs, and integration queries that must render attribute labels and default values in the runtime user's language without duplicating language-filtering logic in every consumer. The view status is documented as VALID in the ETRM for both releases.
Underlying Base Objects
The view is defined over two documented base objects, both referenced through synonyms from APPS: CUG_SR_TYPE_ATTR_MAPS_B (the base table holding language-independent attribute mapping definitions) and CUG_SR_TYPE_ATTR_MAPS_TL (the translation table holding the language-specific text, including the attribute default value). The two are joined on SR_TYPE_ATTR_MAP_ID, and the translation side is further constrained by T.LANGUAGE = USERENV('LANG').
All non-translated columns are projected from the B table alias; only SR_ATTR_DEFAULT_VALUE is taken from the TL table alias (T). In addition, the view exposes B.ROWID as ROW_ID, which permits downstream tooling to identify the underlying base-table row. Because the join is an inner join between B and TL, a mapping record will not appear in this view unless a translation row exists for the current session language.
Key Columns
- SR_TYPE_ATTR_MAP_ID — Primary identifier linking the base and translation records; the join key of the view.
- INCIDENT_TYPE_ID — The Service Request / incident type to which the attribute mapping applies.
- SR_ATTRIBUTE_CODE — The code of the Service Request attribute being mapped onto the capture form.
- SR_ATTR_MANDATORY_FLAG — Indicates whether the attribute must be populated on the form.
- SR_ATTR_DISPLAYED_FLAG — Controls whether the attribute is displayed on the capture form.
- SR_ATTR_DUP_CHECK_FLAG — Indicates whether duplicate checking is applied to the attribute value.
- SR_ATTRIBUTE_LIST_NAME — Name of the value list (LOV) associated with the attribute.
- SR_TYPE_ATTR_SEQ_NUM — Display sequence of the attribute within the type's capture form.
- SR_ATTR_DEFAULT_VALUE — Language-specific default value for the attribute (sourced from the TL table).
- START_DATE_ACTIVE / END_DATE_ACTIVE — Effective dating that bounds when the mapping is active.
- TEMPLATE_ID — Template associated with the attribute mapping.
- REQD_FOR_CLOSE_FLAG, SHOW_ON_UPDATE_FLAG, UPDATE_ALLOWED_FLAG — Behavioral flags governing required-for-close status, visibility on update, and whether the value may be changed.
- OBJECT_VERSION_NUMBER, CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, LAST_UPDATE_DATE — Standard WHO/audit columns.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1..ATTRIBUTE15 — Descriptive flexfield (DFF) context and segment columns.
Common Use Cases and Queries
The view is typically used to render or audit the attribute capture configuration for a given Service Request type, to verify mandatory and displayed attributes, and to resolve language-specific default values in custom reports or integrations.
Listing the active attribute configuration for a specific incident type:
SELECT sr_attribute_code, sr_type_attr_seq_num, sr_attr_mandatory_flag, sr_attr_displayed_flag, sr_attr_default_valueFROM apps.cug_sr_type_attr_maps_vlWHERE incident_type_id = :p_incident_type_idAND TRUNC(SYSDATE) BETWEEN NVL(start_date_active, TRUNC(SYSDATE))AND NVL(end_date_active, TRUNC(SYSDATE))ORDER BY sr_type_attr_seq_num;
Identifying mandatory attributes required for close with their value lists:
SELECT sr_attribute_code, sr_attribute_list_name, reqd_for_close_flag, update_allowed_flagFROM apps.cug_sr_type_attr_maps_vlWHERE incident_type_id = :p_incident_type_idAND sr_attr_mandatory_flag = 'Y'AND reqd_for_close_flag = 'Y';
Because SR_ATTR_DEFAULT_VALUE is drawn from the translation table, any query filtering or grouping on default values is implicitly language-scoped to the session's USERENV('LANG') setting; consumers requiring a specific language must initialize the session language accordingly before querying the view.
-
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 ,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.CUG_INCIDNT_ATTR_VALS_V
12.1.1
-
VIEW: APPS.CUG_INCIDNT_ATTR_VALS_V
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.CUG_SR_TYPE_ATTR_MAPS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CUG_SR_TYPE_ATTR_MAPS_TL, status:VALID,
-
SYNONYM: APPS.CUG_SR_TYPE_ATTR_MAPS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CUG_SR_TYPE_ATTR_MAPS_TL, status:VALID,
-
SYNONYM: APPS.CUG_SR_TYPE_ATTR_MAPS_B
12.2.2
owner:APPS, object_type:SYNONYM, object_name:CUG_SR_TYPE_ATTR_MAPS_B, status:VALID,
-
SYNONYM: APPS.CUG_SR_TYPE_ATTR_MAPS_B
12.1.1
owner:APPS, object_type:SYNONYM, object_name:CUG_SR_TYPE_ATTR_MAPS_B, status:VALID,
-
View: CS_TEMPLATE_DETAILS_V
12.2.2
product: CS - Service , description: This view has all the attributes for the templates. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.CUG_WF_EMAIL_UTIL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_WF_EMAIL_UTIL, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_DUP_CHK_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_DUP_CHK_PVT, status:VALID,
-
PACKAGE BODY: APPS.CS_SR_DUP_CHK_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CS_SR_DUP_CHK_PVT, status:VALID,
-
View: CS_TEMPLATE_DETAILS_V
12.1.1
product: CS - Service , description: This view has all the attributes for the templates. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.CUG_WF_EMAIL_UTIL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_WF_EMAIL_UTIL, status:VALID,
-
PACKAGE BODY: APPS.CUG_SR_ATTRIBUTE_INTF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_SR_ATTRIBUTE_INTF, status:VALID,
-
PACKAGE BODY: APPS.CUG_SR_ATTRIBUTE_INTF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_SR_ATTRIBUTE_INTF, status:VALID,
-
PACKAGE BODY: APPS.CUG_GENERIC_WF_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_GENERIC_WF_PKG, status:VALID,
-
PACKAGE BODY: APPS.CUG_GENERIC_WF_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:CUG_GENERIC_WF_PKG, status:VALID,
-
VIEW: APPS.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,
-
VIEW: APPS.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,
-
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.CUG_SR_ATTRIBUTE_INTF SQL Statements
12.2.2
-
APPS.CUG_SR_ATTRIBUTE_INTF SQL Statements
12.1.1
-
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,
-
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 ,
-
APPS.CUG_GENERIC_WF_PKG dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.2.2
-
APPS.CUG_GENERIC_WF_PKG dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.1.1
-
APPS.CS_SR_DUP_CHK_PVT dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.1.1
-
APPS.CUG_SR_ATTRIBUTE_INTF dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.2.2
-
APPS.CUG_WF_EMAIL_UTIL dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.2.2
-
APPS.CUG_SR_ATTRIBUTE_INTF dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.1.1
-
APPS.CUG_WF_EMAIL_UTIL dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.1.1
-
APPS.CS_SR_DUP_CHK_PVT dependencies on CUG_SR_TYPE_ATTR_MAPS_VL
12.2.2
-
APPS.CUG_GENERIC_WF_PKG SQL Statements
12.2.2
-
APPS.CUG_GENERIC_WF_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.CUG_SR_ATTRIBUTE_INTF
12.1.1
-
PACKAGE BODY: APPS.CUG_SR_ATTRIBUTE_INTF
12.2.2
-
APPS.CS_SR_DUP_CHK_PVT SQL Statements
12.1.1
-
APPS.CS_SR_DUP_CHK_PVT SQL Statements
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 ,