I_ConfInterfaceOriginText

DDL: I_CONFINTERFACEORIGINTEXT Type: view_entity BASIC Package: VDM_PP_CNF

Confirmation Interface Origin - Text

I_ConfInterfaceOriginText is a Basic CDS View that provides data about "Confirmation Interface Origin - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ConfirmationInterfaceOrigin. It has 1 association to related views. Part of development package VDM_PP_CNF.

Data Sources (1)

SourceAliasJoin Type
dd07t t from

Associations (1)

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

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName ICONFINTFORIGTXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey ConfirmationInterfaceOrigin view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S 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 Interface Origin - Text view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ConfirmationInterfaceOrigin
DomainValue dd07t domvalue_l
ConfirmationInterfaceOrignName
_ConfInterfaceOrigin _ConfInterfaceOrigin
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@Analytics.technicalName: 'ICONFINTFORIGTXT'
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'ConfirmationInterfaceOrigin'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #META}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Confirmation Interface Origin - Text'

/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ]  } */
define view entity I_ConfInterfaceOriginText
  as select from dd07t as t
  association to parent I_ConfInterfaceOrigin as _ConfInterfaceOrigin on $projection.ConfirmationInterfaceOrigin = _ConfInterfaceOrigin.ConfirmationInterfaceOrigin  
  association [0..1] to I_Language            as _Language            on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Language'      
      @Semantics.language: true
  key cast(t.ddlanguage as spras preserving type)                     as Language,
      @ObjectModel.foreignKey.association: '_ConfInterfaceOrigin'  
      @ObjectModel.text.element: ['ConfirmationInterfaceOrignName']
  key cast(substring(t.domvalue_l, 1, 1) as ru_orini preserving type) as ConfirmationInterfaceOrigin,
      @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 confintforiginname preserving type)            as ConfirmationInterfaceOrignName,
    
      // Associations

      _ConfInterfaceOrigin,
      _Language
}
  where t.domname = 'RU_ORINI'
    and t.as4local = 'A'
    and t.as4vers  = '0000';