I_InspSpecRsltCalculationText

DDL: I_INSPSPECRSLTCALCULATIONTEXT Type: view_entity BASIC Package: VDM_QM_INSPECTION

Characteristic Result Calculation - Text

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

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (11)

NameValueLevelField
EndUserText.label Characteristic Result Calculation - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey InspSpecResultCalculation view
Analytics.technicalName IINSPRSLTCALCT view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InspSpecResultCalculation
KEY Language ddlanguage
InspSpecResultCalculationText
_InspSpecResultCalculation _InspSpecResultCalculation
_Language _Language
@EndUserText.label: 'Characteristic Result Calculation - Text' //same as DDL description

@VDM: {
    viewType: #BASIC,
    lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.supportedCapabilities:
    [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel: {
    usageType: {
        dataClass: #META,
        sizeCategory: #S,
        serviceQuality: #A
    },
    dataCategory: #TEXT,
    representativeKey: 'InspSpecResultCalculation'
}
@Analytics.technicalName: 'IINSPRSLTCALCT'
@Metadata.ignorePropagatedAnnotations: true
define view entity I_InspSpecRsltCalculationText
  as select from dd07t

  association [0..1] to I_Language                as _Language                  on $projection.Language = _Language.Language

  association [1..1] to I_InspSpecRsltCalculation as _InspSpecResultCalculation on $projection.InspSpecResultCalculation = _InspSpecResultCalculation.InspSpecResultCalculation

{
  key cast ( substring( domvalue_l, 1, 1 ) as vdm_qkzformel preserving type ) as InspSpecResultCalculation,
      @Semantics.language
  key ddlanguage                                                              as Language,
      @Semantics.text
      cast( ddtext as vdm_qkzformel_text preserving type )                    as InspSpecResultCalculationText,

      /* Associations */
      _InspSpecResultCalculation,
      _Language

}
where
      domname  = 'QKZFORMEL'
  and as4local = 'A'