P_InspOPInterval

DDL: P_INSPOPINTERVAL SQL: PINSPOPINT Type: view BASIC

P_InspOPInterval is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (afvc, qaop) and exposes 6 fields with key fields InspectionLot, InspPlanOperationInternalID.

Data Sources (2)

SourceAliasJoin Type
afvc afvc inner
qaop qaop from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PINSPOPINT view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
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 Inspection Lot
KEY InspPlanOperationInternalID qaop vorglfnr Node Number
WorkCenterInternalID afvc arbid WorkCtrGp plan.
InspSubsetTimeInterval afvv qrastzfak Time factor
InspSubsetTimeIntervalUnit afvv qrastzeht Time unit
breaks afko breaks Exact breaks

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view P_InspOPInterval.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: PINSPOPINT

CREATE VIEW P_InspOPInterval AS
SELECT
  qaop.prueflos AS InspectionLot,
  qaop.vorglfnr AS InspPlanOperationInternalID,
  afvc.arbid AS WorkCenterInternalID,
  afvv.qrastzfak AS InspSubsetTimeInterval,
  afvv.qrastzeht AS InspSubsetTimeIntervalUnit,
  afko.breaks AS breaks
FROM qaop
INNER JOIN afvc ON /* join condition not captured in parsed metadata */
;