I_InspectionValuationRsltText

DDL: I_INSPECTIONVALUATIONRSLTTEXT SQL: IINSPVALTNRSLTT Type: view BASIC

Inspection Result Valuation Text

I_InspectionValuationRsltText is a Basic CDS View that provides data about "Inspection Result Valuation Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields InspectionValuationResult, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IINSPVALTNRSLTT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Inspection Result Valuation Text view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey InspectionValuationResult view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY InspectionValuationResult
KEY Language ddlanguage
InspectionValuationResultText
_InspectionValuationResult _InspectionValuationResult
_Language _Language
@AbapCatalog.sqlViewName: 'IINSPVALTNRSLTT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Inspection Result Valuation Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType: {
    dataClass: #META,
    sizeCategory: #S,
    serviceQuality: #A 
}
@ObjectModel.representativeKey: 'InspectionValuationResult'
@Metadata.ignorePropagatedAnnotations: true

define view I_InspectionValuationRsltText as select from dd07t

   association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
   association [1..1] to I_InspectionValuationResult as _InspectionValuationResult on $projection.InspectionValuationResult = _InspectionValuationResult.InspectionValuationResult
{
    key cast ( substring( domvalue_l, 1, 1 ) as vdm_qeebewertg ) as InspectionValuationResult,
    @Semantics.language
    @ObjectModel.foreignKey.association: '_Language'
    key ddlanguage as Language,

    @Semantics.text
    cast( ddtext as vdm_qeebewertg_text ) as InspectionValuationResultText, 

    /* Associations */
    _InspectionValuationResult,
    _Language 
}
where domname = 'QEEBEWERTG' and as4local = 'A'
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_INSPECTIONVALUATIONRESULT",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/