I_KanbanControlCycleCatText

DDL: I_KANBANCONTROLCYCLECATTEXT SQL: IPPKANBANCCCATTX Type: view BASIC Package: VDM_PP_KAB

Kanban Control Cycle Category - Text

I_KanbanControlCycleCatText is a Basic CDS View that provides data about "Kanban Control Cycle Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields KanbanControlCycleCategory, Language. It has 1 association to related views. Part of development package VDM_PP_KAB.

Data Sources (1)

SourceAliasJoin Type
dd07t txt from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPPKANBANCCCATTX view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
EndUserText.label Kanban Control Cycle Category - Text view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey KanbanControlCycleCategory view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY KanbanControlCycleCategory
KEY Language
KanbanControlCycleCategoryName
_Language _Language
@AbapCatalog.sqlViewName: 'IPPKANBANCCCATTX'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Kanban Control Cycle Category - Text'

@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'KanbanControlCycleCategory'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #L, dataClass: #META}
@ObjectModel.supportedCapabilities: [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations:true

@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API

define view I_KanbanControlCycleCatText
  as select from dd07t as txt
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.text.element: 'KanbanControlCycleCategoryName'
  key cast(substring(txt.domvalue_l, 1, 1) as pph_rksta preserving type) as KanbanControlCycleCategory,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(txt.ddlanguage as spras preserving type)                      as Language,
      @Semantics.text: true
      cast(txt.ddtext as controlcyclecategoryname preserving type)       as KanbanControlCycleCategoryName,

      // Associations

      _Language
}
where
      domname  = 'RKSTA'
  and as4local = 'A';