I_InspSpecificationVersionVH

DDL: I_INSPSPECIFICATIONVERSIONVH SQL: IINSPSPECVERSVH Type: view COMPOSITE

Master Inspection Characteristic Version

I_InspSpecificationVersionVH is a Composite CDS View that provides data about "Master Inspection Characteristic Version" in SAP S/4HANA. It reads from 1 data source (I_InspSpecificationVersion) and exposes 16 fields with key fields InspectionSpecificationPlant, InspectionSpecification, InspectionSpecificationVersion.

Data Sources (1)

SourceAliasJoin Type
I_InspSpecificationVersion I_InspSpecificationVersion from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IINSPSPECVERSVH view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Master Inspection Characteristic Version view
VDM.viewType #COMPOSITE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
Consumption.ranked true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey InspectionSpecificationVersion view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY InspectionSpecificationPlant InspectionSpecificationPlant
KEY InspectionSpecification InspectionSpecification
KEY InspectionSpecificationVersion InspectionSpecificationVersion
ValidityStartDate ValidityStartDate
InspectionSpecificationSrchTxt InspectionSpecificationSrchTxt
InspectionSpecificationStatus InspectionSpecificationStatus
InspSpecTransferType InspSpecTransferType
InspSpecCharacteristicType InspSpecCharacteristicType
QltyMstrDataAuthorizationGroup QltyMstrDataAuthorizationGroup
_InspSpecificationPlant _InspSpecificationPlant
_InspectionSpecification _InspectionSpecification
_InspectionSpecificationText _Text
_InspSpecStatus _InspSpecStatus
_InspSpecTransferType _InspSpecTransferType
_InspSpecCharcType _InspSpecCharcType
_QltyMstrDataAuthznGrp _QltyMstrDataAuthznGrp
@AbapCatalog.sqlViewName: 'IINSPSPECVERSVH'
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Master Inspection Characteristic Version'
@VDM.viewType: #COMPOSITE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.privilegedAssociations: ['_INSPECTIONSPECIFICATION']

@Search.searchable: true
@Consumption.ranked: true
@ObjectModel: {
    usageType: {
        dataClass: #MASTER,
        sizeCategory: #M, //expected number of rows < 100.000

        serviceQuality: #C // includes A,B as well

    },
    dataCategory: #VALUE_HELP
}
@ObjectModel.representativeKey: 'InspectionSpecificationVersion'

define view I_InspSpecificationVersionVH as select from I_InspSpecificationVersion
 
{
  @ObjectModel.foreignKey.association: '_InspSpecificationPlant'
  @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
  key InspectionSpecificationPlant,
  @ObjectModel.foreignKey.association: '_InspectionSpecification'
  @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
  @ObjectModel.text.association: '_InspectionSpecificationText'
  key InspectionSpecification,
  key InspectionSpecificationVersion,
  
  ValidityStartDate,
  @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
  InspectionSpecificationSrchTxt,
  InspectionSpecificationStatus,
  @Search: { defaultSearchElement: true, fuzzinessThreshold: 0.8, ranking: #LOW }
  InspSpecTransferType,
  InspSpecCharacteristicType,
  QltyMstrDataAuthorizationGroup,
  
  /* Associations */
  @Consumption.filter.hidden: true
  _InspSpecificationPlant,
  @Consumption.filter.hidden: true
  _InspectionSpecification,
  @Consumption.filter.hidden: true
  _Text as _InspectionSpecificationText,
  @Consumption.filter.hidden: true
  _InspSpecStatus,
  @Consumption.filter.hidden: true
  _InspSpecTransferType,
  @Consumption.filter.hidden: true
  _InspSpecCharcType,
  @Consumption.filter.hidden: true
  _QltyMstrDataAuthznGrp
  
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_INSPSPECIFICATIONVERSION"
],
"ASSOCIATED":
[
"I_INSPECTIONMSTRDATASTATUS",
"I_INSPECTIONSPECIFICATION",
"I_INSPSPECCHARCTYPE",
"I_INSPSPECIFICATIONVERSIONTEXT",
"I_INSPSPECTRANSFERTYPE",
"I_PLANT",
"I_QLTYMSTRDATAAUTHORIZATIONGRP"
],
"BASE":
[
"I_INSPSPECIFICATIONVERSION"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/