I_ConditionCalculationTypeText

DDL: I_CONDITIONCALCULATIONTYPETEXT SQL: ICNDNCALCTYPET Type: view BASIC Package: VPRCCORE

Condition Calculation Type - Text

I_ConditionCalculationTypeText is a Basic CDS View that provides data about "Condition Calculation Type - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, ConditionCalculationType. It has 2 associations to related views. Part of development package VPRCCORE.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICNDNCALCTYPET view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
EndUserText.label Condition Calculation Type - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.representativeKey ConditionCalculationType view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY ConditionCalculationType
ConditionCalculationTypeName
_ConditionCalculationType _ConditionCalculationType
_Language _Language
@AbapCatalog.sqlViewName: 'ICNDNCALCTYPET'
@AbapCatalog.preserveKey:true 
@AbapCatalog.compiler.compareFilter:true
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #META
@EndUserText.label: 'Condition Calculation Type - Text'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@ObjectModel.supportedCapabilities:
    [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel.representativeKey: 'ConditionCalculationType'
@Metadata.ignorePropagatedAnnotations:true
define view I_ConditionCalculationTypeText
  as select from dd07t
  association [0..1] to I_ConditionCalculationType as _ConditionCalculationType on $projection.ConditionCalculationType = _ConditionCalculationType.ConditionCalculationType
  association [0..1] to I_Language                 as _Language                 on $projection.Language = _Language.Language
{
      @Semantics.language:true
  key cast( ddlanguage as spras )                                         as Language,
      @ObjectModel.foreignKey.association: '_ConditionCalculationType'
  key cast ( substring( domvalue_l, 1, 3 ) as krech_long )                as ConditionCalculationType,
      @Semantics.text:true
      cast ( substring ( ddtext, 1, 30 ) as prct_calculation_type_descr ) as ConditionCalculationTypeName,
      _ConditionCalculationType,
      _Language
}
where
      domname  = 'KRECH3'
  and as4local = 'A'