I_ProjDmndAssgmtStatusText

DDL: I_PROJDMNDASSGMTSTATUSTEXT Type: view_entity BASIC Package: PS_DMND_VDM_WORK

Assignment Status for Proj Demands – Text

I_ProjDmndAssgmtStatusText is a Basic CDS View that provides data about "Assignment Status for Proj Demands – Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, ProjDmndAssgmtStatus. It has 1 association to related views. Part of development package PS_DMND_VDM_WORK.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

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

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ProjDmndAssgmtStatus view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Assignment Status for Proj Demands – Text view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ProjDmndAssgmtStatus
ProjDmndAssgmtStatusText dd07t ddtext
_Language _Language
_AssignmentStatus _AssignmentStatus
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:{ representativeKey: 'ProjDmndAssgmtStatus',
               dataCategory: #TEXT,
               usageType: {
               serviceQuality: #A,
               sizeCategory:   #S,
               dataClass:      #CUSTOMIZING},
               supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]}
//               sapObjectNodeType.name: 'ProjectDemandAssignmentStatus' 

@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@EndUserText.label: 'Assignment Status for Proj Demands – Text'
@Search.searchable: true

define view entity I_ProjDmndAssgmtStatusText
  as select from dd07t
  association        to parent I_ProjDmndAssgmtStatus as _AssignmentStatus on $projection.ProjDmndAssgmtStatus = _AssignmentStatus.ProjDmndAssgmtStatus
  association [0..1] to I_Language                    as _Language         on $projection.Language = _Language.Language
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast( dd07t.ddlanguage as spras preserving type )                  as Language,
      @ObjectModel.foreignKey.association: '_AssignmentStatus'
  key cast( substring(domvalue_l, 1, 2 ) as tv_proj_dmnd_assgmt_status ) as ProjDmndAssgmtStatus,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking:#LOW
      @Semantics.text: true
      dd07t.ddtext                                                       as ProjDmndAssgmtStatusText,
      
      _Language,
      _AssignmentStatus
}
where
      domname  = 'PROJ_DMND_ASSGMT_STATUS'
  and as4local = 'A'