I_ConfignRevsnStatus

DDL: I_CONFIGNREVSNSTATUS Type: view_entity BASIC Package: S_CBC_REV_REQ

Configuration Revision Status

I_ConfignRevsnStatus is a Basic CDS View that provides data about "Configuration Revision Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field ConfignRevsnStatus. 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
dd07l ConfignRevsnStatus from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ConfignRevsnStatusText _ConfignRevsnStatusText $projection.ConfignRevsnStatus = _ConfignRevsnStatusText.ConfignRevsnStatus

Annotations (11)

NameValueLevelField
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Configuration Revision Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey ConfignRevsnStatus view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP 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 (2)

KeyFieldSource TableSource FieldDescription
KEY ConfignRevsnStatus
_ConfignRevsnStatusText _ConfignRevsnStatusText
@AbapCatalog.viewEnhancementCategory: [#NONE]
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Configuration Revision Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: {
  representativeKey: 'ConfignRevsnStatus',
  resultSet.sizeCategory: #XS,
  dataCategory: #VALUE_HELP,
  usageType: {
    dataClass: #META,
    sizeCategory: #S,
    serviceQuality: #A
  }
}
@VDM.viewType: #BASIC
define view entity I_ConfignRevsnStatus as select from dd07l as ConfignRevsnStatus
association [0..*] to I_ConfignRevsnStatusText as _ConfignRevsnStatusText on $projection.ConfignRevsnStatus = _ConfignRevsnStatusText.ConfignRevsnStatus
{
      @ObjectModel.text.association: '_ConfignRevsnStatusText'
  key cast ( substring( domvalue_l, 1, 1 ) as cbc_rev_target_status preserving type ) as ConfignRevsnStatus,
      
      @UI.hidden: true
      cast(case domvalue_l
        when 'C' then 3
        when 'W' then 2
        when 'E' then 1
        when 'F' then 1
        else 0
        end as int1 preserving type )                           as ConfignRevsnStatusCriticality,
  
  
      _ConfignRevsnStatusText
}
where
      domname  = 'CBC_REV_TARGET_STATUS'
  and as4local = 'A'