I_ProdnVersLockText

DDL: I_PRODNVERSLOCKTEXT SQL: IPVLOCKTXT Type: view BASIC

Production Version Lock Text

I_ProdnVersLockText is a Basic CDS View that provides data about "Production Version Lock Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ProductionVersionIsLocked, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPVLOCKTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Production Version Lock Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ProductionVersionIsLocked view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ProductionVersionIsLocked
KEY Language
ProductionVersionLockText ddtext
_Language _Language
@AbapCatalog.sqlViewName: 'IPVLOCKTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Production Version Lock Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'ProductionVersionIsLocked'
@ObjectModel.usageType:{ serviceQuality: #A, sizeCategory : #S, dataClass: #MASTER }
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_ProdnVersLockText
  as select from dd07t
   association [0..1] to I_Language      as _Language      on $projection.Language = _Language.Language
{
  key  substring( domvalue_l, 1, 1 )        as ProductionVersionIsLocked,
       @ObjectModel.foreignKey.association: '_Language'
       @Semantics.language: true     
  key  cast(ddlanguage as spras)                       as Language,
       @Semantics.text: true
       ddtext                                    as ProductionVersionLockText,
       _Language

}
where domname    = 'MKSP' and as4local = 'A'
  
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/