I_EntProjChangeIndicator

DDL: I_ENTPROJCHANGEINDICATOR Type: view BASIC

Chg Ind for Chg Documents of Ent Proj

I_EntProjChangeIndicator is a Basic CDS View that provides data about "Chg Ind for Chg Documents of Ent Proj" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ChangeDocItemChangeType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EntProjChangeIndicatorText _Text $projection.ChangeDocItemChangeType = _Text.ChangeDocItemChangeType

Annotations (12)

NameValueLevelField
EndUserText.label Chg Ind for Chg Documents of Ent Proj view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AbapCatalog.sqlViewName IPROJCHGIND view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ChangeDocItemChangeType view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ChangeDocItemChangeType
DomainValue dd07l domvalue_l
_Text _Text
@EndUserText.label: 'Chg Ind for Chg Documents of Ent Proj'

@VDM: {
   viewType: #BASIC,
   lifecycle.contract.type: #SAP_INTERNAL_API
}

@AbapCatalog: {
   sqlViewName: 'IPROJCHGIND',
   compiler.compareFilter: true,
   preserveKey: true
}

// Authorization handling

@AccessControl.authorizationCheck: #NOT_REQUIRED

//TODO: what is this for ?

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel: {
   representativeKey: 'ChangeDocItemChangeType',
   usageType: {
     serviceQuality: #C,
     sizeCategory: #S,
     dataClass: #CUSTOMIZING
   }
}

define view I_EntProjChangeIndicator as select from dd07l

  association [0..*] to I_EntProjChangeIndicatorText as _Text on $projection.ChangeDocItemChangeType = _Text.ChangeDocItemChangeType

{
      
      @ObjectModel.text.association: '_Text'
      key cast ( substring( domvalue_l, 1, 2 ) as cdchngind ) as ChangeDocItemChangeType,
      dd07l.domvalue_l as DomainValue,
      _Text
}

where
      domname  = '/S4PPM/CHANGEDOC_CHNGIND' and
      as4vers  = '0000'                     and
      as4local = 'A'