P_InspOPInterval

DDL: P_INSPOPINTERVAL Type: view_entity BASIC Package: ODATA_QM_INSPSUBSET_RR

Inspection OP Time Interval Details

P_InspOPInterval is a Basic CDS View that provides data about "Inspection OP Time Interval Details" in SAP S/4HANA. It reads from 2 data sources (afvc, qaop) and exposes 6 fields with key fields InspectionLot, InspPlanOperationInternalID. Part of development package ODATA_QM_INSPSUBSET_RR.

Data Sources (2)

SourceAliasJoin Type
afvc afvc inner
qaop qaop from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot qaop prueflos
KEY InspPlanOperationInternalID qaop vorglfnr
WorkCenterInternalID afvc arbid
InspSubsetTimeInterval afvv qrastzfak
InspSubsetTimeIntervalUnit afvv qrastzeht
breaks afko breaks
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.private: true
@VDM.viewType: #BASIC
@ObjectModel.usageType: { dataClass: #TRANSACTIONAL, sizeCategory: #L, serviceQuality: #A }

define view entity P_InspOPInterval
  as select from           qaop
    inner join             afvc on  qaop.aufpl = afvc.aufpl
                                and qaop.aplzl = afvc.aplzl
    left outer to one join afvv on  afvc.aufpl = afvv.aufpl
                                and afvc.aplzl = afvv.aplzl
    left outer to one join afko on qaop.prueflos = afko.prueflos
{
  key qaop.prueflos  as InspectionLot,
  key qaop.vorglfnr  as InspPlanOperationInternalID,
      afvc.arbid     as WorkCenterInternalID,
      afvv.qrastzfak as InspSubsetTimeInterval,
      afvv.qrastzeht as InspSubsetTimeIntervalUnit,
      afko.breaks
}