I_CostingTypeText

DDL: I_COSTINGTYPETEXT Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
tck02 tck02 from

Associations (1)

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

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IFICOSTINGTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE 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 txkla
_Language _Language
@AbapCatalog: { 
  sqlViewName: 'IFICOSTINGTYPET',
  compiler.compareFilter: true,
  preserveKey: true }
@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling: { 
  type: #CLIENT_DEPENDENT,
  algorithm: #SESSION_VARIABLE }

@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 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
      txkla as CostingTypeName,

      _Language
}