I_ElectronicDocProcess

DDL: I_ELECTRONICDOCPROCESS Type: view_entity BASIC Package: GLO-EDO

eDocument Process

I_ElectronicDocProcess is a Basic CDS View that provides data about "eDocument Process" in SAP S/4HANA. It reads from 1 data source (edoprocess) and exposes 5 fields with key field ElectronicDocProcess. Part of development package GLO-EDO.

Data Sources (1)

SourceAliasJoin Type
edoprocess edoprocess from

Annotations (8)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label eDocument Process view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.representativeKey ElectronicDocProcess view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ElectronicDocProcess process
ElectronicDocReferenceProcess ref_process
ElectronicDocCountryISOCode intca
ElectronicDocProcessCategory process_category
ElectronicDocCommByService service
@AbapCatalog.viewEnhancementCategory: [#NONE]
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'eDocument Process'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
    serviceQuality: #A,
    sizeCategory: #S,
    dataClass: #MASTER
}
@ObjectModel.representativeKey: 'ElectronicDocProcess'
define view entity I_ElectronicDocProcess
  as select from edoprocess
{
  key process     as ElectronicDocProcess,
      ref_process as ElectronicDocReferenceProcess,
      intca       as ElectronicDocCountryISOCode,
      process_category as ElectronicDocProcessCategory,
      service     as ElectronicDocCommByService,     
      cast( case service
            when 'X' then 'X'
            when 'D' then 'X'
            else null end as xfeld ) as ElectronicDocIsCommByService
         
}