I_ElectronicDocInterfaceTypeVH

DDL: I_ELECTRONICDOCINTERFACETYPEVH Type: view COMPOSITE Package: GLO-EDO

eDocument Interface Type

I_ElectronicDocInterfaceTypeVH is a Composite CDS View that provides data about "eDocument Interface Type" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 2 fields with key field ElectronicDocInterfaceType. Part of development package GLO-EDO.

Data Sources (1)

SourceAliasJoin Type
I_DomainFixedValueText _DomainFixedValueText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IEDOINTERFACETVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label eDocument Interface Type view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ElectronicDocInterfaceType DomainValue
ElectronicDocInterfaceTypeText DomainText
@AbapCatalog: {
  sqlViewName: 'IEDOINTERFACETVH',
  compiler.compareFilter: true,
  preserveKey: true
  }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'eDocument Interface Type'

@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  dataClass: #MIXED,
  serviceQuality: #X,
  sizeCategory: #M
  }
@ObjectModel.dataCategory:#VALUE_HELP 
@Search.searchable: true

define view I_ElectronicDocInterfaceTypeVH 
  as select from I_DomainFixedValueText as _DomainFixedValueText
{
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key DomainValue as ElectronicDocInterfaceType,
      DomainText as ElectronicDocInterfaceTypeText
      
} where SAPDataDictionaryDomain      = 'EDOC_INTERFACE_TYPE'
  and _DomainFixedValueText.Language = $session.system_language;