I_ElectronicDocProcessAction

DDL: I_ELECTRONICDOCPROCESSACTION SQL: IEDOPROCACTION Type: view BASIC

eDocument Process Specific Action

I_ElectronicDocProcessAction is a Basic CDS View that provides data about "eDocument Process Specific Action" in SAP S/4HANA. It reads from 1 data source (edoactionproc) and exposes 3 fields with key fields ElectronicDocProcess, ElectronicDocAction, ElectronicDocActionVariant.

Data Sources (1)

SourceAliasJoin Type
edoactionproc edoactionproc from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IEDOPROCACTION view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label eDocument Process Specific Action view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ElectronicDocProcess process
KEY ElectronicDocAction edoaction
KEY ElectronicDocActionVariant action_variant
@AbapCatalog.sqlViewName: 'IEDOPROCACTION'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'eDocument Process Specific Action'

@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE

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

define view I_ElectronicDocProcessAction 
            as select from edoactionproc
{
  
  key process as ElectronicDocProcess,
  key edoaction as ElectronicDocAction,
 
  key action_variant as ElectronicDocActionVariant
  
}