I_ClearingTypeText
Clearing Type - Text
I_ClearingTypeText is a Basic CDS View that provides data about "Clearing Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields ClearingType, Language. 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 (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Clearing Type - Text | view | |
| VDM.viewType | #BASIC | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.internalName | #LOCAL | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ClearingType | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Search.searchable | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ClearingType | |||
| KEY | Language | |||
| ClearingTypeName | ||||
| DomainValue | dd07t | domvalue_l | ||
| _Language | _Language |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@EndUserText.label: 'Clearing Type - Text'
@VDM.viewType: #BASIC
@Analytics: { dataExtraction.enabled: true, internalName: #LOCAL}
@ObjectModel: { usageType.sizeCategory: #S,
usageType.dataClass: #CUSTOMIZING,
usageType.serviceQuality: #A,
dataCategory: #TEXT,
representativeKey: 'ClearingType',
supportedCapabilities: [#EXTRACTION_DATA_SOURCE, #LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ],
modelingPattern: #LANGUAGE_DEPENDENT_TEXT }
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Search.searchable: true
define view entity I_ClearingTypeText as select from dd07t
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key cast( substring( domvalue_l, 1, 1) as fis_clrin ) as ClearingType,
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key cast( ddlanguage as spras preserving type ) as Language,
@Semantics.text: true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
cast(ddtext as fis_clrin_name preserving type ) as ClearingTypeName,
@Analytics.hidden: true
@Consumption.hidden: true
dd07t.domvalue_l as DomainValue,
_Language
}
where domname = 'CLRINF' and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"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