I_InspectionMethod

DDL: I_INSPECTIONMETHOD SQL: IINSPMETHOD Type: view COMPOSITE

Inspection Method Master Record

I_InspectionMethod is a Composite CDS View that provides data about "Inspection Method Master Record" in SAP S/4HANA. It has 1 association to related views.

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Plant _InspectionMethodPlant $projection.InspectionMethodPlant = _InspectionMethodPlant.Plant

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IINSPMETHOD view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Inspection Method Master Record view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.representativeKey InspectionMethod view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY InspectionMethodPlant InspectionMethodPlant
KEY InspectionMethod InspectionMethod
_InspectionMethodPlant _InspectionMethodPlant
@AbapCatalog.sqlViewName: 'IINSPMETHOD'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Inspection Method Master Record'
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ObjectModel.representativeKey: 'InspectionMethod'
@ObjectModel.usageType: { serviceQuality: #A, sizeCategory: #M, dataClass: #TRANSACTIONAL }
@Metadata.ignorePropagatedAnnotations: true

/* avoid multiple results for the same werks/pmtnr with 'distinct' in select. Therefore 'version' is no field in this view! */
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view I_InspectionMethod as select distinct from I_InspectionMethodVersion

  association [0..1] to I_Plant as _InspectionMethodPlant
            on $projection.InspectionMethodPlant = _InspectionMethodPlant.Plant
{
  @ObjectModel.foreignKey.association: '_InspectionMethodPlant'
  key InspectionMethodPlant, 
  key InspectionMethod, 
  
  /* Associations */
  _InspectionMethodPlant
}