P_InspResultFrmtdValues

DDL: P_INSPRESULTFRMTDVALUES SQL: PINSPRESFORM Type: view BASIC

P_InspResultFrmtdValues is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (P_InspCharcDecPlaces, qamr) and exposes 4 fields with key fields InspectionLot, InspPlanOperationInternalID, InspectionCharacteristic.

Data Sources (2)

SourceAliasJoin Type
P_InspCharcDecPlaces _dec inner
qamr _qamr from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PINSPRESFORM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #D view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot qamr prueflos Inspection Lot
KEY InspPlanOperationInternalID qamr vorglfnr Node Number
KEY InspectionCharacteristic qamr merknr Characteristic
InspSpecDecimalPlaces P_InspCharcDecPlaces InspSpecDecimalPlaces

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_InspResultFrmtdValues.
-- 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: PINSPRESFORM

CREATE VIEW P_InspResultFrmtdValues AS
SELECT
  _qamr.prueflos AS InspectionLot,
  _qamr.vorglfnr AS InspPlanOperationInternalID,
  _qamr.merknr AS InspectionCharacteristic,
  _dec.InspSpecDecimalPlaces AS InspSpecDecimalPlaces
FROM qamr AS _qamr
INNER JOIN P_InspCharcDecPlaces AS _dec ON /* join condition not captured in parsed metadata */
;