R_InspectionOperationTP

DDL: R_INSPECTIONOPERATIONTP Type: view_entity TRANSACTIONAL Package: VDM_QM_INSPECTION

Inspection Operation - TP

R_InspectionOperationTP is a Transactional CDS View that provides data about "Inspection Operation - TP" in SAP S/4HANA. It reads from 1 data source (I_InspectionOperation) and exposes 26 fields with key fields InspectionLot, InspPlanOperationInternalID. It has 2 associations to related views. Part of development package VDM_QM_INSPECTION.

Data Sources (1)

SourceAliasJoin Type
I_InspectionOperation InspectionOperation from

Associations (2)

CardinalityTargetAliasCondition
[0..*] R_InspectionCharacteristicTP _InspectionCharacteristic
[0..*] R_InspectionSubsetTP _InspectionSubset

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
VDM.viewType #TRANSACTIONAL view
EndUserText.label Inspection Operation - TP view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot InspectionLot
KEY InspPlanOperationInternalID InspPlanOperationInternalID
OrderInternalBillOfOperations OrderInternalBillOfOperations
OrderOperationInternalID OrderOperationInternalID
InspectionOperation
InspectionOperationPlant InspectionOperationPlant
BillOfOperationsType BillOfOperationsType
BillOfOperationsGroup BillOfOperationsGroup
BillOfOperationsVariant BillOfOperationsVariant
BillOfOperationsVersion BillOfOperationsVersion
BOOOperationInternalID BOOOperationInternalID
WorkCenterInternalID WorkCenterInternalID
StatusObject StatusObject
OperationControlProfile OperationControlProfile
OperationConfirmation OperationConfirmation
InspectionSubSystem InspectionSubSystem
OperationText OperationText
InspSbstIsTimeRelated InspSbstIsTimeRelated
InspSbstHasNoTimeOrQuantity InspSbstHasNoTimeOrQuantity
Sequence Sequence
_BillOfOperationsType _BillOfOperationsType
_InspectionCharacteristic _InspectionCharacteristic
_InspectionSubset _InspectionSubset
_InspectionLot _InspectionLot
_Plant _Plant
_WorkCenter _WorkCenter
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@VDM.viewType: #TRANSACTIONAL
@EndUserText.label: 'Inspection Operation - TP'
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
  serviceQuality: #C,
  sizeCategory: #L,
  dataClass: #TRANSACTIONAL
}
define view entity R_InspectionOperationTP
  as select from I_InspectionOperation as InspectionOperation

  composition [0..*] of R_InspectionCharacteristicTP as _InspectionCharacteristic
  composition [0..*] of R_InspectionSubsetTP         as _InspectionSubset

  association to parent R_InspectionLotTP            as _InspectionLot on $projection.InspectionLot = _InspectionLot.InspectionLot
{
      @ObjectModel.foreignKey.association: '_InspectionLot'
  key InspectionLot,
  key InspPlanOperationInternalID,
      OrderInternalBillOfOperations,
      OrderOperationInternalID,
      cast ( InspectionOperation as vdm_qm_inspectionoperation preserving type ) as InspectionOperation,
      @ObjectModel.foreignKey.association: '_Plant'
      InspectionOperationPlant,
      @ObjectModel.foreignKey.association: '_BillOfOperationsType'
      BillOfOperationsType,
      BillOfOperationsGroup,
      BillOfOperationsVariant,
      BillOfOperationsVersion,
      BOOOperationInternalID,
      @ObjectModel.foreignKey.association: '_WorkCenter'
      WorkCenterInternalID,
      StatusObject,
      OperationControlProfile,
      OperationConfirmation,
      InspectionSubSystem,
      OperationText,
      @Semantics.booleanIndicator
      InspSbstIsTimeRelated,
      @Semantics.booleanIndicator
      InspSbstHasNoTimeOrQuantity,
      Sequence,

      /* Associations */
      _BillOfOperationsType,
      _InspectionCharacteristic,
      _InspectionSubset,
      _InspectionLot,
      //_InspectionOperationStatus,

      //_InspectionSubset,

      _Plant,
      _WorkCenter
}