I_ElectronicDocMetaStatusText
Electronic Document Meta Status - Text
I_ElectronicDocMetaStatusText is a Composite CDS View that provides data about "Electronic Document Meta Status - Text" in SAP S/4HANA. It reads from 2 data sources (dd07t, dd07t) and exposes 6 fields with key fields Language, ElectronicDocMetaStatus, ElectronicDocMetaStatus.
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Electronic Document Meta Status - Text | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #COMPOSITE | view | |
| AbapCatalog.sqlViewName | IEDOCSTATUSTEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | ddlanguage | ||
| KEY | ElectronicDocMetaStatus | |||
| ElectronicDocMetaStatusText | ddtext | |||
| KEY | ElectronicDocMetaStatus | |||
| ElectronicDocMetaStatusText | ddtext | |||
| ElectronicDocMetaStatusIntgr |
@EndUserText.label: 'Electronic Document Meta Status - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #COMPOSITE
@AbapCatalog.sqlViewName: 'IEDOCSTATUSTEXT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
define view I_ElectronicDocMetaStatusText
as select from dd07t
{
@Semantics.language
key ddlanguage as Language,
key cast(substring(domvalue_l, 1, 4) as edoc_metastatus) as ElectronicDocMetaStatus,
@Semantics.text
ddtext as ElectronicDocMetaStatusText,
cast(
case domvalue_l
when '0001' then 3
when '0002' then 2
when '0003' then 1
else 0
end as abap.int4) as ElectronicDocMetaStatusIntgr
}
where
domname = 'EDOC_METASTATUS'
and as4local = 'A'
union select from dd07t
{
key ddlanguage as Language,
key '' as ElectronicDocMetaStatus,
ddtext as ElectronicDocMetaStatusText,
cast(2 as abap.int4) as ElectronicDocMetaStatusIntgr
}
where
domname = 'EDOC_METASTATUS'
and as4local = 'A'
and domvalue_l = '0002'
/*+[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