I_InspectionLotVH2

DDL: I_INSPECTIONLOTVH2 SQL: IIL__VH3 Type: view COMPOSITE Package: VDM_QM_INSPECTION

Inspection Lot Value Help

I_InspectionLotVH2 is a Composite CDS View that provides data about "Inspection Lot Value Help" in SAP S/4HANA. It reads from 1 data source (I_InspectionLotVH) and exposes 15 fields with key field InspectionLot. It is exposed through 1 OData service (ASQL_F2810). Part of development package VDM_QM_INSPECTION.

Data Sources (1)

SourceAliasJoin Type
I_InspectionLotVH I_InspectionLotVH from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IIL__VH3 view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.representativeKey InspectionLot view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Inspection Lot Value Help view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2810 ASQL_F2810 C2 NOT_RELEASED

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot InspectionLot Inspection Lot
InspectionLotType InspectionLotType Inspection Type
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
MatlQualityAuthorizationGroup MatlQualityAuthorizationGroup QM Matl Auth.
Plant Plant Valuation Area
Batch Batch Lot No.
InspectionLotText InspectionLotText
InspectionLotTypeText InspectionLotTypeText
Manufacturer Manufacturer Manufacturer
Material Material Vehicle Model
MaterialName MaterialName Material Description
Customer Customer Sold-to Party
CustomerName
Supplier Supplier Supplier
SupplierName

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_InspectionLotVH2.
-- 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: IIL__VH3

CREATE VIEW I_InspectionLotVH2 AS
SELECT
  InspectionLot,
  InspectionLotType,
  IsBusinessPurposeCompleted,
  MatlQualityAuthorizationGroup,
  Plant,
  Batch,
  InspectionLotText,
  InspectionLotTypeText,
  Manufacturer,
  Material,
  MaterialName,
  Customer,
  I_InspectionLotVH._Customer.CustomerName AS CustomerName,
  Supplier,
  I_InspectionLotVH._Supplier.SupplierName AS SupplierName
FROM I_InspectionLotVH
;