I_ConfirmationRecordTypeText

DDL: I_CONFIRMATIONRECORDTYPETEXT SQL: ICONFRECDTYPETXT Type: view BASIC

Confirmation Record Type - Text

I_ConfirmationRecordTypeText is a Basic CDS View that provides data about "Confirmation Record Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields OrderConfirmationRecordType, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t t from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_ConfirmationRecordType _ConfirmationRecordType $projection.OrderConfirmationRecordType = _ConfirmationRecordType.OrderConfirmationRecordType
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ICONFRECDTYPETXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey OrderConfirmationRecordType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
EndUserText.label Confirmation Record Type - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY OrderConfirmationRecordType
KEY Language
DomainValue dd07t domvalue_l
OrderConfirmationRecdTypeName
_ConfirmationRecordType _ConfirmationRecordType
_Language _Language
@AbapCatalog.sqlViewName: 'ICONFRECDTYPETXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataExtraction.enabled: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #SEARCHABLE_ENTITY, #EXTRACTION_DATA_SOURCE]
@ObjectModel.representativeKey: 'OrderConfirmationRecordType'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #L, dataClass: #META}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Confirmation Record Type - Text'

/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ]  } */
define view I_ConfirmationRecordTypeText
  as select from dd07t as t
  association [1..1] to I_ConfirmationRecordType as _ConfirmationRecordType on $projection.OrderConfirmationRecordType = _ConfirmationRecordType.OrderConfirmationRecordType  
  association [0..1] to I_Language               as _Language               on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_ConfirmationRecordType'  
      @ObjectModel.text.element: ['OrderConfirmationRecdTypeName']
  key cast(substring(t.domvalue_l, 1, 3) as co_satza preserving type) as OrderConfirmationRecordType,
      @ObjectModel.foreignKey.association: '_Language'      
      @Semantics.language: true
  key cast(t.ddlanguage as spras preserving type)                     as Language,
      @Analytics.hidden: true
      @Consumption.hidden: true
      t.domvalue_l                                                    as DomainValue,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      cast(t.ddtext as confrecdtypename preserving type)              as OrderConfirmationRecdTypeName,
    
      // Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT] 
      _ConfirmationRecordType,
      _Language
}
  where t.domname = 'CO_SATZA'
    and t.as4local = 'A'
    and t.as4vers  = '0000';