R_EDCRepresentationTypeText

DDL: R_EDCREPRESENTATIONTYPETEXT Type: view_entity BASIC

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)

SourceAliasJoin Type
R_EDCRepresentationType R_EDCRepresentationType from

Annotations (8)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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

}