I_BlockCategoryText

DDL: I_BLOCKCATEGORYTEXT Type: view BASIC

Block Category - Text

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

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (14)

NameValueLevelField
EndUserText.label Block Category - Text view
ObjectModel.representativeKey BlockCategory view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IBLOCKCATEGORYT view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BlockCategory
KEY Language ddlanguage
BlockCategoryDesc
_BlockCategory _BlockCategory
_Language _Language
@EndUserText:   {label:                   'Block Category - Text'}
@ObjectModel:   {representativeKey:       'BlockCategory',
                 dataCategory:            #TEXT,
                 usageType:               {serviceQuality: #A,
                                           sizeCategory:   #S,
                                           dataClass:      #CUSTOMIZING},
                 modelingPattern:          #LANGUAGE_DEPENDENT_TEXT,
                 supportedCapabilities:  [ #LANGUAGE_DEPENDENT_TEXT,
                                           #CDS_MODELING_DATA_SOURCE,
                                           #CDS_MODELING_ASSOCIATION_TARGET,
                                           #SQL_DATA_SOURCE,
                                           #SEARCHABLE_ENTITY]}
@VDM:           {viewType:                 #BASIC}
@AbapCatalog:   {compiler:                 {compareFilter: true},
                 sqlViewName:              'IBLOCKCATEGORYT',
                 preserveKey:               true}
@AccessControl: {authorizationCheck:       #NOT_REQUIRED}
@ClientHandling.algorithm:                 #SESSION_VARIABLE
@Metadata:      {ignorePropagatedAnnotations: true}

define view I_BlockCategoryText
  as select from dd07t
  association [0..1] to I_BlockCategory as _BlockCategory on $projection.BlockCategory = _BlockCategory.BlockCategory
  association [0..1] to I_Language      as _Language      on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_BlockCategory'
  key cast(substring(domvalue_l, 1, 1) as /scmtms/block_category preserving type) as BlockCategory,
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                                                                  as Language,
      @Semantics.text: true
      cast(ddtext as /scmtms/vdm_block_cat_desc preserving type)                  as BlockCategoryDesc,

      /* Associations */
      _BlockCategory,
      _Language
}
where
      domname  = '/SCMTMS/BLOCK_CATEGORY'
  and as4local = 'A';
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_BLOCKCATEGORY",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/