C_InspectionLotOVP

DDL: C_INSPECTIONLOTOVP SQL: CINSPLOTOVP Type: view CONSUMPTION Package: ODATA_QM_INSPECTION_ANALYTICS

Inspection Lot Overview Page

C_InspectionLotOVP is a Consumption CDS View that provides data about "Inspection Lot Overview Page" in SAP S/4HANA. It reads from 1 data source (I_InspectionLot) and exposes 20 fields with key field InspectionLot. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F2361). Part of development package ODATA_QM_INSPECTION_ANALYTICS.

Data Sources (1)

SourceAliasJoin Type
I_InspectionLot _InspLot from

Associations (1)

CardinalityTargetAliasCondition
[1..1] C_Insplotmng _Insplotmng $projection.InspectionLot = _Insplotmng.InspectionLot

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName CINSPLOTOVP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Inspection Lot Overview Page view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #CONSUMPTION view
AccessControl.personalData.blocking #REQUIRED view
UI.headerInfo.description.label Material view
UI.headerInfo.description.type #STANDARD view
UI.headerInfo.description.value MaterialName view
UI.headerInfo.title.label Inspection Lot view
UI.headerInfo.title.type #STANDARD view
UI.headerInfo.title.value InspectionLot view
UI.headerInfo.typeNamePlural Inspection Lots view
UI.headerInfo.typeName Inspection Lot view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F2361 ASQL_F2361 C2 NOT_RELEASED

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot I_InspectionLot InspectionLot Inspection Lot
MaterialName
Plant I_InspectionLot Plant Valuation Area
InspectionLotQuantity I_InspectionLot InspectionLotQuantity
InspectionLotCreatedOn I_InspectionLot InspectionLotCreatedOn Created On
InspectionLotQuantityUnit I_InspectionLot InspectionLotQuantityUnit Sample UOM
InspectionLotOrigin I_InspectionLot InspectionLotOrigin
InspectionLotType I_InspectionLot InspectionLotType Inspection Type
Material I_InspectionLot Material Vehicle Model
InspectionLotStorageLocation I_InspectionLot InspectionLotStorageLocation
BatchStorageLocation I_InspectionLot BatchStorageLocation
MatlQualityAuthorizationGroup I_InspectionLot MatlQualityAuthorizationGroup QM Matl Auth.
IsBusinessPurposeCompleted I_InspectionLot IsBusinessPurposeCompleted Purpose Completed
Supplier I_InspectionLot Supplier Supplier
Manufacturer I_InspectionLot Manufacturer Manufacturer
ManufacturerPartNmbr I_InspectionLot ManufacturerPartNmbr Mfr Part Number
PurchasingOrganization I_InspectionLot PurchasingOrganization Purchasing Organization
InspLotCompltnStatus _Insplotmng InspLotCompltnStatus
InspectionLotHasQuantity
SerialNumberProfile SerialNumberProfile SerialNoProfile

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 C_InspectionLotOVP.
-- 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: CINSPLOTOVP

CREATE VIEW C_InspectionLotOVP AS
SELECT
  _InspLot.InspectionLot AS InspectionLot,
  _InspLot._Material._Text[1:Language=$session.system_language].MaterialName AS MaterialName,
  _InspLot.Plant AS Plant,
  _InspLot.InspectionLotQuantity AS InspectionLotQuantity,
  _InspLot.InspectionLotCreatedOn AS InspectionLotCreatedOn,
  _InspLot.InspectionLotQuantityUnit AS InspectionLotQuantityUnit,
  _InspLot.InspectionLotOrigin AS InspectionLotOrigin,
  _InspLot.InspectionLotType AS InspectionLotType,
  _InspLot.Material AS Material,
  _InspLot.InspectionLotStorageLocation AS InspectionLotStorageLocation,
  _InspLot.BatchStorageLocation AS BatchStorageLocation,
  _InspLot.MatlQualityAuthorizationGroup AS MatlQualityAuthorizationGroup,
  _InspLot.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted,
  _InspLot.Supplier AS Supplier,
  _InspLot.Manufacturer AS Manufacturer,
  _InspLot.ManufacturerPartNmbr AS ManufacturerPartNmbr,
  _InspLot.PurchasingOrganization AS PurchasingOrganization,
  _Insplotmng.InspLotCompltnStatus AS InspLotCompltnStatus,
  cast( _InspLot.InspectionLotHasQuantity as xfeld ) AS InspectionLotHasQuantity,
  SerialNumberProfile
FROM I_InspectionLot AS _InspLot
LEFT OUTER JOIN C_Insplotmng AS _Insplotmng ON InspectionLot = _Insplotmng.InspectionLot  -- association [1..1]
;