R_EDCCheckIDPosition

DDL: R_EDCCHECKIDPOSITION Type: view_entity BASIC Package: GLO-EDO-EDC

eDocument Consistency Check ID Position

R_EDCCheckIDPosition is a Basic CDS View that provides data about "eDocument Consistency Check ID Position" in SAP S/4HANA. It reads from 1 data source (edccheckidpos) and exposes 5 fields with key fields EDCType, EDCValidationType, EDCCheckID. Part of development package GLO-EDO-EDC.

Data Sources (1)

SourceAliasJoin Type
edccheckidpos edccheckidpos from

Annotations (7)

NameValueLevelField
EndUserText.label eDocument Consistency Check ID Position view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY EDCType contype
KEY EDCValidationType convaltype
KEY EDCCheckID check_id
EDCCheckPositionNumber check_id_num
EDCCheckExecutionSequence exec_seqn
@EndUserText.label: 'eDocument Consistency Check ID Position'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #A,
  sizeCategory: #S
  }
define view entity R_EDCCheckIDPosition
  as select from edccheckidpos
{
  key contype      as EDCType,
  key convaltype   as EDCValidationType,
  key check_id     as EDCCheckID,
      check_id_num as EDCCheckPositionNumber,
      exec_seqn    as EDCCheckExecutionSequence
}