I_CostingTypeText

DDL: I_COSTINGTYPETEXT Type: view_entity BASIC Package: FINS_PCP_CUST_VDM

Costing Type - Text

I_CostingTypeText is a Basic CDS View that provides data about "Costing Type - Text" in SAP S/4HANA. It reads from 1 data source (tck02) and exposes 4 fields with key fields Language, CostingType. It has 1 association to related views. Part of development package FINS_PCP_CUST_VDM.

Data Sources (1)

SourceAliasJoin Type
tck02 tck02 from

Associations (1)

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

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CostingType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
EndUserText.label Costing Type - Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY CostingType kalka
CostingTypeName
_Language _Language
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API }

@ObjectModel: {
  dataCategory: #TEXT,
  representativeKey: 'CostingType',
  usageType: {
    serviceQuality: #A,
    sizeCategory: #S,
    dataClass: #CUSTOMIZING },
  supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE,
                           #LANGUAGE_DEPENDENT_TEXT,
                           #CDS_MODELING_ASSOCIATION_TARGET ],
  modelingPattern: #LANGUAGE_DEPENDENT_TEXT }

@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@EndUserText.label: 'Costing Type - Text'

define view entity I_CostingTypeText
  as select from tck02
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key spras                                                 as Language,
  key kalka                                                 as CostingType,
      @Search.defaultSearchElement: true
      @Semantics.text: true
      cast(txkla as fpc_costing_type_name preserving type) as CostingTypeName,

      _Language
}