I_InspectionResultStatus

DDL: I_INSPECTIONRESULTSTATUS SQL: IINSPRESULTSTAT Type: view BASIC

Inspection Result Status

I_InspectionResultStatus is a Basic CDS View that provides data about "Inspection Result Status" in SAP S/4HANA. It reads from 1 data source (tq76) and exposes 3 fields with key field InspectionResultStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tq76 tq76 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_Inspectionresultstatustext _Text $projection.InspectionResultStatus = _Text.InspectionResultStatus

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IINSPRESULTSTAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Inspection Result Status view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.representativeKey InspectionResultStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY InspectionResultStatus tq76 status
InspectionResultStatusText
_Text _Text
@AbapCatalog.sqlViewName: 'IINSPRESULTSTAT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Inspection Result Status'
@VDM: {
    viewType: #BASIC,
    lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.supportedCapabilities:
    [ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
@ObjectModel.representativeKey: 'InspectionResultStatus'
@ObjectModel.usageType: {
    dataClass: #META,
    sizeCategory: #S,
    serviceQuality: #A
}
@Metadata.ignorePropagatedAnnotations: true
define view I_InspectionResultStatus as select from tq76 
   association [0..*] to I_Inspectionresultstatustext as _Text 
     on $projection.InspectionResultStatus = _Text.InspectionResultStatus
{
   @ObjectModel.text.association: '_Text'
  key tq76.status as InspectionResultStatus,    
  
   // Do show text field directly in consumption/odata layer; in such a layer text is consumed via association _Text

   @UI.hidden: true
   _Text[1:Language = $session.system_language].InspectionResultStatusText,
   
  //Associations

   _Text    
}  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSPECTIONRESULTSTATUSTEXT",
"TQ76"
],
"ASSOCIATED":
[
"I_INSPECTIONRESULTSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/