R_EDCRepresentationTypeText
EDC Representation Type Text
R_EDCRepresentationTypeText is a Basic CDS View that provides data about "EDC Representation Type Text" in SAP S/4HANA. It reads from 1 data source (R_EDCRepresentationType) and exposes 3 fields with key fields EDCType, Language, EDCRepresentationType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| R_EDCRepresentationType | R_EDCRepresentationType | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | EDC Representation Type Text | 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 |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | EDCType | EDCType | ||
| KEY | Language | edcreptypet | spras | |
| KEY | EDCRepresentationType | EDCRepresentationType |
@EndUserText.label: 'EDC Representation Type Text'
@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
define view entity R_EDCRepresentationTypeText
as select from R_EDCRepresentationType
association [1..1] to edcconrelreptypt on $projection.EDCType = EDCCONRELREPTYPT.contype
and $projection.EDCRepresentationType = EDCCONRELREPTYPT.reptyp
and EDCCONRELREPTYPT.spras = $session.system_language
association [1..1] to edcreptypet on $projection.EDCRepresentationType = EDCREPTYPET.representationtype
and EDCREPTYPET.spras = $session.system_language
{
key EDCType,
@Semantics.language:true
key edcreptypet.spras as Language,
@ObjectModel.text.element: [ 'EDCRepresentationTypeText' ]
@UI.textArrangement: #TEXT_ONLY
key EDCRepresentationType,
@Semantics.text: true
// edcreptypet.representationtype_desc,
// edcconrelreptypt.ui_reptyp_desc,
case when edcconrelreptypt.ui_reptyp_desc is initial or edcconrelreptypt.ui_reptyp_desc is null then edcreptypet.representationtype_desc
else edcconrelreptypt.ui_reptyp_desc
end as EDCRepresentationTypeText
}
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