C_EDCContentCheckFieldValue
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)
| Source | Alias | Join Type |
|---|---|---|
| I_EDCCntntChkExecSqncNmbr | EDCCntntChkExecSqncNmbr | inner |
| I_EDCContentCheckFieldValue | EDCContentMismatchFieldVal | inner |
| I_EDCResult | EDCResult | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| EDC_PROCESS | UI_EDC_PROCESS_O2 | V2 | C1 | NOT_RELEASED |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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 = ' '
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA