I_InspectionLotFrequencyCube

DDL: I_INSPECTIONLOTFREQUENCYCUBE Type: view COMPOSITE Package: ODATA_QM_INSPECTION_ANALYTICS

Inspection Lot Analytics - Frequency

I_InspectionLotFrequencyCube is a Composite CDS View (Cube) that provides data about "Inspection Lot Analytics - Frequency" in SAP S/4HANA. It reads from 1 data source (I_InspectionLot) and exposes 20 fields with key field InspectionLot. Part of development package ODATA_QM_INSPECTION_ANALYTICS.

Data Sources (1)

SourceAliasJoin Type
I_InspectionLot _InspectionLot from

Parameters (2)

NameTypeDefault
P_StartDate mm_a_delivery_date
P_EndDate mm_a_delivery_date

Annotations (15)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName IINSPLOTFREQ view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
Analytics.dataCategory #CUBE view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Inspection Lot Analytics - Frequency view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.allowExtensions true view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot I_InspectionLot InspectionLot Inspection Lot
InspectionLotType I_InspectionLot InspectionLotType Inspection Type
Material I_InspectionLot Material Vehicle Model
Plant I_InspectionLot Plant Valuation Area
Supplier I_InspectionLot Supplier Supplier
Customer I_InspectionLot Customer Sold-to Party
Manufacturer I_InspectionLot Manufacturer Manufacturer
InspectionLotOrigin I_InspectionLot InspectionLotOrigin
InspectionLotCreatedOn I_InspectionLot InspectionLotCreatedOn Created On
InspectionLotUsageDecidedOn _InspLotUsageDecision InspectionLotUsageDecidedOn
InspLotMeanProcgDurationInDays
MatlQualityAuthorizationGroup MatlQualityAuthorizationGroup QM Matl Auth.
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
_InspectionLotType I_InspectionLot _InspectionLotType
_Material I_InspectionLot _Material
_Plant I_InspectionLot _Plant
_Supplier I_InspectionLot _Supplier
_Customer I_InspectionLot _Customer
_Manufacturer I_InspectionLot _Manufacturer
_InspectionLotOrigin I_InspectionLot _InspectionLotOrigin

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_InspectionLotFrequencyCube.
-- 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.
-- Parameters: P_StartDate : mm_a_delivery_date, P_EndDate : mm_a_delivery_date

CREATE VIEW I_InspectionLotFrequencyCube AS
SELECT
  _InspectionLot.InspectionLot AS InspectionLot,
  _InspectionLot.InspectionLotType AS InspectionLotType,
  _InspectionLot.Material AS Material,
  _InspectionLot.Plant AS Plant,
  _InspectionLot.Supplier AS Supplier,
  _InspectionLot.Customer AS Customer,
  _InspectionLot.Manufacturer AS Manufacturer,
  _InspectionLot.InspectionLotOrigin AS InspectionLotOrigin,
  _InspectionLot.InspectionLotCreatedOn AS InspectionLotCreatedOn,
  _InspLotUsageDecision.InspectionLotUsageDecidedOn AS InspectionLotUsageDecidedOn,
  DATS_DAYS_BETWEEN( _InspectionLot.InspectionLotCreatedOn, _InspectionLot._InspLotUsageDecision.InspectionLotUsageDecidedOn ) AS InspLotMeanProcgDurationInDays,
  MatlQualityAuthorizationGroup,
  IsBusinessPurposeCompleted,
  _InspectionLot._InspectionLotType AS _InspectionLotType,
  _InspectionLot._Material AS _Material,
  _InspectionLot._Plant AS _Plant,
  _InspectionLot._Supplier AS _Supplier,
  _InspectionLot._Customer AS _Customer,
  _InspectionLot._Manufacturer AS _Manufacturer,
  _InspectionLot._InspectionLotOrigin AS _InspectionLotOrigin
FROM I_InspectionLot AS _InspectionLot
;