I_InspMethForInspSpecVH

DDL: I_INSPMETHFORINSPSPECVH SQL: IIMETHDINSPECVH Type: view COMPOSITE

Insp Meth Value Help for Insp Spec

I_InspMethForInspSpecVH is a Composite CDS View that provides data about "Insp Meth Value Help for Insp Spec" in SAP S/4HANA. It reads from 1 data source (I_AssgmtInspMethInspSpec) and exposes 11 fields with key fields InspectionMethod, InspectionMethodPlant, InspectionMethodVersion, InspectionSpecification, InspectionSpecificationPlant.

Data Sources (1)

SourceAliasJoin Type
I_AssgmtInspMethInspSpec I_AssgmtInspMethInspSpec from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IIMETHDINSPECVH view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Insp Meth Value Help for Insp Spec view
VDM.viewType #COMPOSITE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.dataCategory #VALUE_HELP view
AbapCatalog.preserveKey true view
Consumption.ranked true view
Search.searchable true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY InspectionMethod InspectionMethod
KEY InspectionMethodPlant InspectionMethodPlant Inspection Method Plant
KEY InspectionMethodVersion InspectionMethodVersion Inspection Method Version
KEY InspectionSpecification InspectionSpecification
KEY InspectionSpecificationPlant InspectionSpecificationPlant Inspection Specification Plant
KEY InspectionSpecificationVersion InspectionSpecificationVersion Inspection Specification Version
InspMethInformationField1
InspMethInformationField2
InspMethInformationField3
_InspectionMethodVersion I_AssgmtInspMethInspSpec _InspectionMethodVersion
_InspSpecificationVersion _InspSpecificationVersion
@AbapCatalog.sqlViewName: 'IIMETHDINSPECVH'
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Insp Meth Value Help for Insp Spec'
@VDM.viewType: #COMPOSITE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel:{usageType: {
    dataClass: #MIXED,
    sizeCategory: #L,
    serviceQuality: #C
},
    dataCategory: #VALUE_HELP}
@AbapCatalog.preserveKey:true

@Consumption.ranked: true
@Search.searchable: true
define view I_InspMethForInspSpecVH
  as select from I_AssgmtInspMethInspSpec
{
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8,
        ranking: #HIGH
      }
  key InspectionMethod,

      @EndUserText.label: 'Inspection Method Plant'
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8,
        ranking: #LOW
      }
  key InspectionMethodPlant,

      @EndUserText.label: 'Inspection Method Version'
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8,
        ranking: #LOW
      }
  key InspectionMethodVersion,
  key InspectionSpecification,
      @EndUserText.label: 'Inspection Specification Plant'
  key InspectionSpecificationPlant,
      @EndUserText.label: 'Inspection Specification Version'
  key InspectionSpecificationVersion,
      @UI.hidden: true
      I_AssgmtInspMethInspSpec._InspectionMethodVersion.InspMethInformationField1,
      @UI.hidden: true
      I_AssgmtInspMethInspSpec._InspectionMethodVersion.InspMethInformationField2,
      @UI.hidden: true
      I_AssgmtInspMethInspSpec._InspectionMethodVersion.InspMethInformationField3,
      /* Associations */
      I_AssgmtInspMethInspSpec._InspectionMethodVersion,

      /* Associations */
      _InspSpecificationVersion

}
where
      I_AssgmtInspMethInspSpec.InspectionMethodPlant   <> ' '
  and I_AssgmtInspMethInspSpec.InspectionMethod        <> ' '
  and I_AssgmtInspMethInspSpec.InspectionMethodVersion <> ' '
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ASSGMTINSPMETHINSPSPEC",
"I_INSPECTIONMETHODVERSION"
],
"ASSOCIATED":
[
"I_INSPECTIONMETHODVERSION",
"I_INSPSPECIFICATIONVERSION"
],
"BASE":
[
"I_ASSGMTINSPMETHINSPSPEC"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/