I_Inspectionresultstatustext

DDL: I_INSPECTIONRESULTSTATUSTEXT Type: view_entity BASIC Package: VDM_QM_INSPECTION

Inspection Result Status - Text

I_Inspectionresultstatustext is a Basic CDS View that provides data about "Inspection Result Status - Text" in SAP S/4HANA. It reads from 1 data source (tq76t) and exposes 3 fields with key fields Language, InspectionResultStatus. Part of development package VDM_QM_INSPECTION.

Data Sources (1)

SourceAliasJoin Type
tq76t tq76t from

Annotations (11)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language tq76t sprache
KEY InspectionResultStatus tq76t status
InspectionResultStatusText
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Inspection Result Status - Text'
@VDM: {
    viewType: #BASIC,
    lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@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: 'InspectionResultStatus'
}
@Analytics.technicalName: 'IINSPRESULTSTATT'
@Metadata.ignorePropagatedAnnotations: true
define view entity I_Inspectionresultstatustext as select from tq76t 
{
   @Semantics.language: true
   key tq76t.sprache as Language,
   key tq76t.status as InspectionResultStatus,
   @Semantics.text: true
   cast( tq76t.kurztext as vdm_qinspresultstatus_text preserving type  ) as InspectionResultStatusText
}