E_InspectionOperation

DDL: E_INSPECTIONOPERATION SQL: EINSPOPERATION Type: view EXTENSION

Inspection Operation Extension

E_InspectionOperation is a Extension CDS View that provides data about "Inspection Operation Extension" in SAP S/4HANA. It reads from 2 data sources (afvc, qaop) and exposes 2 fields with key fields InspectionLot, InspPlanOperationInternalID.

Data Sources (2)

SourceAliasJoin Type
afvc Persistence inner
qaop qaop from

Annotations (8)

NameValueLevelField
EndUserText.label Inspection Operation Extension view
AbapCatalog.sqlViewName EINSPOPERATION view
ClientHandling.algorithm #AUTOMATED view
VDM.viewType #EXTENSION view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot qaop prueflos Inspection Lot
KEY InspPlanOperationInternalID qaop vorglfnr Node Number

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 E_InspectionOperation.
-- 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: EINSPOPERATION

CREATE VIEW E_InspectionOperation AS
SELECT
  qaop.prueflos AS InspectionLot,
  qaop.vorglfnr AS InspPlanOperationInternalID
FROM qaop
INNER JOIN afvc AS Persistence ON /* join condition not captured in parsed metadata */
;