I_InspResultValueFrmtdValues

DDL: I_INSPRESULTVALUEFRMTDVALUES SQL: IINSPRESVALFORM Type: view BASIC Package: VDM_QM_INSPECTION

Formatted Values for Insp Result Value

I_InspResultValueFrmtdValues is a Basic CDS View that provides data about "Formatted Values for Insp Result Value" in SAP S/4HANA. It reads from 1 data source (P_InspResultValueFrmtdValues) and exposes 6 fields with key fields InspectionLot, InspPlanOperationInternalID, InspectionCharacteristic, InspResultValueInternalID. Part of development package VDM_QM_INSPECTION.

Data Sources (1)

SourceAliasJoin Type
P_InspResultValueFrmtdValues P_InspResultValueFrmtdValues from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IINSPRESVALFORM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #D view
EndUserText.label Formatted Values for Insp Result Value view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot InspectionLot Inspection Lot
KEY InspPlanOperationInternalID InspPlanOperationInternalID Node Number
KEY InspectionCharacteristic InspectionCharacteristic Characteristic
KEY InspResultValueInternalID InspResultValueInternalID Indiv. result
InspResultFrmtdMeasuredValue InspResultFrmtdMeasuredValue
InspSpecDecimalPlaces 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 I_InspResultValueFrmtdValues.
-- 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: IINSPRESVALFORM

CREATE VIEW I_InspResultValueFrmtdValues AS
SELECT
  InspectionLot,
  InspPlanOperationInternalID,
  InspectionCharacteristic,
  InspResultValueInternalID,
  InspResultFrmtdMeasuredValue,
  InspSpecDecimalPlaces
FROM P_InspResultValueFrmtdValues
;