I_ConfignRevsnContextText

DDL: I_CONFIGNREVSNCONTEXTTEXT Type: view_entity BASIC Package: S_CBC_REV_REQ

Configuration Revision Context Text

I_ConfignRevsnContextText is a Basic CDS View that provides data about "Configuration Revision Context Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ConfignRevsnContext, Language. It has 1 association to related views. It is exposed through 1 OData service (CONFIGURATIONREVISIONMONITOR). Part of development package S_CBC_REV_REQ.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (10)

NameValueLevelField
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Configuration Revision Context Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey ConfignRevsnContext view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view

OData Services (1)

ServiceBindingVersionContractRelease
CONFIGURATIONREVISIONMONITOR CONFIGURATIONREVISIONMONITOR V4 C1 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ConfignRevsnContext
KEY Language
ConfignRevsnContextText
_Language _Language
@AbapCatalog.viewEnhancementCategory: [#NONE]
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Configuration Revision Context Text'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
  representativeKey: 'ConfignRevsnContext',
  resultSet.sizeCategory: #XS,
  usageType: {
    dataClass: #META,
    sizeCategory: #S,
    serviceQuality: #A
  }
}
@VDM.viewType: #BASIC
define view entity I_ConfignRevsnContextText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast ( substring( domvalue_l, 1, 1 ) as cbc_rev_context preserving type ) as ConfignRevsnContext,

      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast( ddlanguage as spras preserving type )                               as Language,

      @Semantics.text: true
      cast( substring( ddtext, 1, 30 ) as cbc_rev_context_description )         as ConfignRevsnContextText,

      _Language
}
where
      domname  = 'CONTEXT_INFO'
  and as4local = 'A'