R_EDCResultMetaStatusText
eDocument Consistency Result Meta Status
R_EDCResultMetaStatusText is a Basic CDS View that provides data about "eDocument Consistency Result Meta Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields EDCResultMetaStatus, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | eDocument Consistency Result Meta Status | 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 | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EDCResultMetaStatus | |||
| KEY | Language | ddlanguage | ||
| EDCResultMetaStatusText | ddtext |
@EndUserText.label: 'eDocument Consistency Result Meta Status'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #A,
sizeCategory: #S
}
@ObjectModel.dataCategory: #TEXT
@ObjectModel.resultSet.sizeCategory: #XS
define view entity R_EDCResultMetaStatusText
as select from dd07t
{
@ObjectModel.text.element: [ 'EDCResultMetaStatusText' ]
@UI.textArrangement: #TEXT_ONLY
key cast(domvalue_l as edc_res_metastat) as EDCResultMetaStatus,
@Semantics.language
@UI.hidden: true
key ddlanguage as Language,
@Semantics.text: true
ddtext as EDCResultMetaStatusText
}
where
domname = 'EDC_RES_METASTAT'
and as4local = 'A'
and ddlanguage = $session.system_language;
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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