I_CmplncDisclTypeText
Compliance Disclosure Type - Text
I_CmplncDisclTypeText is a Basic CDS View that provides data about "Compliance Disclosure Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, CmplncDisclType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Compliance Disclosure Type - Text | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | CmplncDisclType | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | CmplncDisclType | |||
| CmplncDisclTypeTxt | ddtext | |||
| _Language | _Language | |||
| _CmplncDisclTypeVH | _CmplncDisclTypeVH |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@EndUserText.label: 'Compliance Disclosure Type - Text'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ObjectModel: {
representativeKey: 'CmplncDisclType',
dataCategory: #TEXT,
usageType:{
serviceQuality: #B,
sizeCategory: #S,
dataClass: #MASTER
}
}
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Consumption.ranked: true
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity I_CmplncDisclTypeText
as select from dd07t
association to parent I_CmplncDisclTypeVH as _CmplncDisclTypeVH on $projection.CmplncDisclType = _CmplncDisclTypeVH.CmplncDisclType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast(ddlanguage as spras preserving type ) as Language,
@ObjectModel.text.element: ['CmplncDisclTypeTxt']
key cast(domvalue_l as ehfnd_cd_type ) as CmplncDisclType,
@Semantics.text: true
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
ddtext as CmplncDisclTypeTxt,
_Language,
_CmplncDisclTypeVH
}
where
as4local = 'A'
and as4vers = '0000'
and domname = 'EHFND_CD_TYPE'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_CMPLNCDISCLTYPEVH",
"I_LANGUAGE"
],
"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