I_ElectronicDocProcessText

DDL: I_ELECTRONICDOCPROCESSTEXT Type: view BASIC

eDocument Process Text

I_ElectronicDocProcessText is a Basic CDS View that provides data about "eDocument Process Text" in SAP S/4HANA. It reads from 1 data source (edoprocesst) and exposes 3 fields with key fields Language, ElectronicDocProcess.

Data Sources (1)

SourceAliasJoin Type
edoprocesst edoprocesst from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IEDOPROCESST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label eDocument Process Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #TEXT view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY ElectronicDocProcess process
ElectronicDocProcessText procdesc
@AbapCatalog: {
  sqlViewName: 'IEDOPROCESST',
  compiler.compareFilter: true,
  preserveKey: true 
  }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'eDocument Process Text'

@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #A,
  sizeCategory: #S
  }

@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
define view I_ElectronicDocProcessText
  as select from edoprocesst
{
      @Semantics.language: true
      @UI.hidden: true
  key spras    as Language,
      @Search: {
       defaultSearchElement: true,
       ranking: #HIGH,
       fuzzinessThreshold: 0.8 }
  key process  as ElectronicDocProcess,

      @Semantics.text: true
      @Search: {
       defaultSearchElement: true,
       ranking: #LOW,
       fuzzinessThreshold: 0.8 }
      procdesc as ElectronicDocProcessText
} where spras = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"EDOPROCESST"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/