I_ChgMgmtDeferralStatusText

DDL: I_CHGMGMTDEFERRALSTATUSTEXT SQL: ICMDEFERRALSTST Type: view BASIC

Change Mangament Deferral Status Text

I_ChgMgmtDeferralStatusText is a Basic CDS View that provides data about "Change Mangament Deferral Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, ChgMgmtDeferralStatus. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (14)

NameValueLevelField
EndUserText.label Change Mangament Deferral Status Text view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName ICMDEFERRALSTST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ChgMgmtDeferralStatus view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language dd07t ddlanguage
KEY ChgMgmtDeferralStatus
ChgMgmtDeferralStatusText dd07t ddtext
_ChgMgmtDeferralStatus _ChgMgmtDeferralStatus
_Language _Language
@EndUserText.label: 'Change Mangament Deferral Status Text'

@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC

@AbapCatalog.sqlViewName: 'ICMDEFERRALSTST'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey:true

@Metadata.ignorePropagatedAnnotations: true

@ClientHandling.algorithm: #SESSION_VARIABLE

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ChgMgmtDeferralStatus'
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #META}

/*+[hideWarning] { "IDS" : [ "KEY_CHECK", "CALCULATED_FIELD_CHECK" ] }*/
define view I_ChgMgmtDeferralStatusText
  as select from dd07t
  association [1..1] to I_ChgMgmtDeferralStatus as _ChgMgmtDeferralStatus on $projection.ChgMgmtDeferralStatus = _ChgMgmtDeferralStatus.ChgMgmtDeferralStatus
  association [0..1] to I_Language              as _Language              on $projection.Language = _Language.Language
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key dd07t.ddlanguage                                    as Language,
      @ObjectModel.foreignKey.association: '_ChgMgmtDeferralStatus'
  key cast(dd07t.domvalue_l as /iam/deferral_status_cd)   as ChgMgmtDeferralStatus,
      @Semantics.text: true
      dd07t.ddtext                                        as ChgMgmtDeferralStatusText,

      _ChgMgmtDeferralStatus,
      _Language
}
where
      dd07t.domname  = '/IAM/DEFERRAL_STATUS_CD'
  and dd07t.as4local = 'A'