I_WorkViewComplianceTypeText
Work Perspective Compliance Type - Text
I_WorkViewComplianceTypeText is a Basic CDS View that provides data about "Work Perspective Compliance Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, CategoryFlag. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _language | $projection.Language = _language.Language |
| [0..*] | I_WorkViewAssgmt | _WorkViewAssgmt | $projection.CategoryFlag = _WorkViewAssgmt.WorkViewDataType |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Work Perspective Compliance Type - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #BASIC | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | CategoryFlag | |||
| CmplncType | ||||
| _language | _language | |||
| _WorkViewAssgmt | _WorkViewAssgmt |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Work Perspective Compliance Type - Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_WorkViewComplianceTypeText
as select from dd07t
association [0..1] to I_Language as _language on $projection.Language = _language.Language
association [0..*] to I_WorkViewAssgmt as _WorkViewAssgmt on $projection.CategoryFlag = _WorkViewAssgmt.WorkViewDataType
{
@Semantics.language: true
@Consumption.filter.hidden: true
key cast(ddlanguage as spras preserving type ) as Language,
@UI.textArrangement: #TEXT_ONLY
@ObjectModel.text.element: ['CmplncType']
@Consumption.filter.hidden: true
key cast( (substring(domvalue_l, 1, 1)) as ehfnd_wv_status preserving type ) as CategoryFlag,
@Semantics.text: true
@Consumption.filter.hidden: true
cast( (substring(ddtext, 1, 30)) as ehfnd_shelp_name preserving type ) as CmplncType,
/* Associations */
_language,
_WorkViewAssgmt
}
where
domname = 'EHFND_WV_CMPLTYPE'
and ddlanguage = $session.system_language
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_WORKVIEWASSGMT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA