I_EDCDataSourceFieldDetail
EDC Check Data Source Field Description
I_EDCDataSourceFieldDetail is a Basic CDS View that provides data about "EDC Check Data Source Field Description" in SAP S/4HANA. It reads from 2 data sources (dd03nd, dd04t) and exposes 5 fields with key fields EDCDataSourceName, EDCDataSourceFieldName. Part of development package GLO-EDO-EDC.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | EDC Check Data Source Field Description | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'EDC Check Data Source Field Description'
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType:#BASIC
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #XXL,
dataClass: #MASTER
}
define view entity I_EDCDataSourceFieldDetail
as select from dd03nd as CDSDataSource
inner join dd04t as DataElementDescription on CDSDataSource.rollname = DataElementDescription.rollname
{
key CDSDataSource.strucobjn as EDCDataSourceName,
key CDSDataSource.fieldname as EDCDataSourceFieldName,
CDSDataSource.keyflag as EDCDataSourceIsKeyField,
DataElementDescription.scrtext_l as EDCDataSourceFieldDescription,
DataElementDescription.ddlanguage as Language
}
where
CDSDataSource.nodename = '.NODE1'
and CDSDataSource.as4local = 'A'
and DataElementDescription.as4local = 'A'
and DataElementDescription.ddlanguage = $session.system_language
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