I_InspLotSummaryControl

DDL: I_INSPLOTSUMMARYCONTROL SQL: IINSPLOTSMRYCL Type: view BASIC

Control of Inspection Lot Summary

I_InspLotSummaryControl (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Control of Inspection Lot Summary · Manufacturing

I_InspLotSummaryControl is a Basic CDS View (Dimension) that provides data about "Control of Inspection Lot Summary" in SAP S/4HANA. It reads from 1 data source (tq32c) and exposes 4 fields with key fields InspectionLotOrigin, InspLotSummaryControl. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Quality Inspection
Purpose
This CDS view retrieves the options to control inspection lot creation during goods movement (inspection lot summary). The control of inspection lot summary determines whether a new inspection lot is created or an existing inspection lot is extended by summing up the corresponding quantities. This CDS view provides the data to answer the following business questions: Which control of inspection lot summary is available for a specific inspection lot origin? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations There are no specific authorizations required for this CDS view.

Structure
Fields Used for Filtering The main filters are as follows: InspectionLotOrigin : This field is used to filter for the control options of the inspection lot summary of an inspection lot origin. Further Important Fields Important fields in this view include the following: Field Name Description InspLotSummaryControl Control Lot Creation

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentQM-IM
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Analytical Dimension
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view retrieves the options to control inspection lot creation during goods movement (inspection lot summary). The control of inspection lot summary determines whether a new inspection lot is created or an existing inspection lot is extended by summing up the corresponding quantities.</p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>Which control of inspection lot summary is available for a specific inspection lot origin?</p></li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tq32c tq32c from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_InspectionLotOrigin _InspectionLotOrigin $projection.InspectionLotOrigin = _InspectionLotOrigin.InspectionLotOrigin

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IINSPLOTSMRYCL view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Control of Inspection Lot Summary view
ObjectModel.representativeKey InspLotSummaryControl view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name InspectionLotSummaryControl view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY InspectionLotOrigin herkunft Inspection Lot Origin
KEY InspLotSummaryControl einwelos Control of Inspection Lot Creation (Lot Summary)
_Text _Text
_InspectionLotOrigin _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_InspLotSummaryControl.
-- 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: IINSPLOTSMRYCL

CREATE VIEW I_InspLotSummaryControl AS
SELECT
  herkunft AS InspectionLotOrigin,
  einwelos AS InspLotSummaryControl
FROM tq32c
LEFT OUTER JOIN I_InspectionLotOrigin AS _InspectionLotOrigin ON InspectionLotOrigin = _InspectionLotOrigin.InspectionLotOrigin  -- association [0..1]
;