C_EDCContentCheckFieldValue

DDL: C_EDCCONTENTCHECKFIELDVALUE Type: view_entity CONSUMPTION

EDC Content Mismatch Field Value

C_EDCContentCheckFieldValue is a Consumption CDS View that provides data about "EDC Content Mismatch Field Value" in SAP S/4HANA. It reads from 3 data sources (I_EDCCntntChkExecSqncNmbr, I_EDCContentCheckFieldValue, I_EDCResult) and exposes 12 fields with key fields EDCResultUUID, EDCContentCheckFieldLevel, EDCContentCheckFieldName. It is exposed through 1 OData service (EDC_PROCESS).

Data Sources (3)

SourceAliasJoin Type
I_EDCCntntChkExecSqncNmbr EDCCntntChkExecSqncNmbr inner
I_EDCContentCheckFieldValue EDCContentMismatchFieldVal inner
I_EDCResult EDCResult from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label EDC Content Mismatch Field Value view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

OData Services (1)

ServiceBindingVersionContractRelease
EDC_PROCESS UI_EDC_PROCESS_O2 V2 C1 NOT_RELEASED

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY EDCResultUUID I_EDCResult EDCResultUUID
KEY EDCContentCheckFieldLevel I_EDCContentCheckFieldValue EDCContentCheckFieldLevel
KEY EDCContentCheckFieldName I_EDCContentCheckFieldValue EDCContentCheckFieldName
EDCContentCheckItemKey
EDCContentCheckFieldValue I_EDCContentCheckFieldValue EDCContentCheckFieldValue
EDCContentCheckIsKeyField I_EDCContentCheckFieldValue EDCContentCheckIsKeyField
EDCType I_EDCResult EDCType
EDCValidationType I_EDCResult EDCValidationType
EDCCheckID I_EDCResult EDCCheckID
EDCCompany I_EDCResult EDCCompany
EDCOrganizationalUnit I_EDCResult EDCOrganizationalUnit
EDCOrganizationalUnitValue I_EDCResult EDCOrganizationalUnitValue
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'EDC Content Mismatch Field Value'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType:#CONSUMPTION
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #XXL,
  dataClass: #TRANSACTIONAL
}
define view entity C_EDCContentCheckFieldValue
  as select from I_EDCResult                 as EDCResult
    inner join   I_EDCCntntChkExecSqncNmbr   as EDCCntntChkExecSqncNmbr    on EDCResult.EDCResultUUID = EDCCntntChkExecSqncNmbr.EDCResultUUID
    inner join   I_EDCContentCheckFieldValue as EDCContentMismatchFieldVal on  EDCResult.EDCResultUUID                   = EDCContentMismatchFieldVal.EDCResultUUID
                                                                           and EDCCntntChkExecSqncNmbr.EDCResultSqncNmbr = EDCContentMismatchFieldVal.EDCResultSqncNmbr
{
  key EDCResult.EDCResultUUID,
  key EDCContentMismatchFieldVal.EDCContentCheckFieldLevel,
  key EDCContentMismatchFieldVal.EDCContentCheckFieldName,

      @ObjectModel.virtualElement
      @ObjectModel.virtualElementCalculatedBy: 'ABAP:CL_VRTL_ELMNT_CNTNTMISFLDVAL'
      cast(' ' as edc_content_check_item_key) as EDCContentCheckItemKey,

      EDCContentMismatchFieldVal.EDCContentCheckFieldValue,
      @Semantics.booleanIndicator: true
      EDCContentMismatchFieldVal.EDCContentCheckIsKeyField,

      EDCResult.EDCType,
      EDCResult.EDCValidationType,
      EDCResult.EDCCheckID,

      EDCResult.EDCCompany,
      EDCResult.EDCOrganizationalUnit,
      EDCResult.EDCOrganizationalUnitValue
}
where
  EDCContentMismatchFieldVal.EDCContentCheckIsKeyField = ' '