I_ClearingType

DDL: I_CLEARINGTYPE Type: view_entity BASIC

Clearing Type

I_ClearingType is a Basic CDS View (Dimension) that provides data about "Clearing Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ClearingType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ClearingTypeText _Text $projection.ClearingType = _Text.ClearingType

Annotations (15)

NameValueLevelField
EndUserText.label Clearing Type view
VDM.viewType #BASIC view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ObjectModel.representativeKey ClearingType view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.allowExtensions true view
Search.searchable true view
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ClearingType
DomainValue dd07l domvalue_l
_Text _Text
@AbapCatalog.viewEnhancementCategory: [#NONE]

@EndUserText.label: 'Clearing Type'

@VDM.viewType: #BASIC
@Analytics: { dataCategory: #DIMENSION, dataExtraction.enabled: true, internalName: #LOCAL }
@ObjectModel: { representativeKey: 'ClearingType',
                usageType.sizeCategory: #S,
                usageType.dataClass:  #CUSTOMIZING,
                usageType.serviceQuality: #A,
                supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE, #SEARCHABLE_ENTITY],
                modelingPattern: #ANALYTICAL_DIMENSION }                   

@Metadata.ignorePropagatedAnnotations: true  
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.allowExtensions:true

@Search.searchable: true
@Consumption.ranked: true

define view entity I_ClearingType 
as select from
dd07l
association [0..*] to I_ClearingTypeText as _Text on $projection.ClearingType = _Text.ClearingType
{
  @ObjectModel.text.association: '_Text'
  key  cast( substring( domvalue_l, 1, 1) as fis_clrin ) as ClearingType,  
  @Analytics.hidden: true
  @Consumption.hidden: true
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  dd07l.domvalue_l as DomainValue,  
  _Text
}
where 
  dd07l.domname = 'CLRINF' and   dd07l.as4local = 'A';    
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_CLEARINGTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/