I_WorkViewScopeText

DDL: I_WORKVIEWSCOPETEXT Type: view_entity BASIC

Work Perspective Basic Scope - Text

I_WorkViewScopeText is a Basic CDS View that provides data about "Work Perspective Basic Scope - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, WorkViewScope. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t Scope from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_WorkView _WorkView $projection.WorkViewScope = _WorkView.WorkViewScope
[0..1] I_Language _language $projection.Language = _language.Language

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Work Perspective Basic Scope - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #TEXT view
ObjectModel.resultSet.sizeCategory #XS view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY WorkViewScope
WorkViewScopeText
_language _language
_WorkView _WorkView
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Work Perspective Basic Scope - Text'
@Metadata.ignorePropagatedAnnotations: true

@ObjectModel: {
  usageType: {
    serviceQuality: #A,
    sizeCategory:  #L,
    dataClass: #MASTER } }
@ObjectModel.dataCategory: #TEXT    

@ObjectModel.resultSet.sizeCategory: #XS
@VDM.viewType: #BASIC
  
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK", "KEY_CHECK" ]  } . */ 
define view entity I_WorkViewScopeText
  as select from dd07t as Scope
  association [0..*] to I_WorkView as _WorkView on $projection.WorkViewScope = _WorkView.WorkViewScope
  association [0..1] to I_Language   as _language on $projection.Language = _language.Language
{
      @Consumption.filter.hidden: true
      @Semantics.language: true
  key cast(ddlanguage as spras preserving type )                                       as Language,

      @UI.textArrangement: #TEXT_ONLY
      @ObjectModel.text.element: ['WorkViewScopeText']
      @Consumption.filter.hidden: true
  key cast( (substring(domvalue_l, 1, 16)) as ehfnd_wv_scope preserving type )         as WorkViewScope,

      @Semantics.text: true
      @Consumption.filter.hidden: true
      cast( (substring(ddtext, 1, 60)) as ehfnd_cmplnc_prps_sts_name preserving type ) as WorkViewScopeText,

      /* Associations */
      _language,
      _WorkView
}

where
      domname    = 'EHFND_WV_SCOPE'
  and ddlanguage = $session.system_language
  and as4local   = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_WORKVIEW"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/