C_QltyEngineerOVP

DDL: C_QLTYENGINEEROVP SQL: CQLTYENGOVP Type: view CONSUMPTION Package: ODATA_QM_INSPECTION_ANALYTICS

Quality Engineer Overview Page

C_QltyEngineerOVP is a Consumption CDS View that provides data about "Quality Engineer Overview Page" in SAP S/4HANA. It has 2 associations to related views. Part of development package ODATA_QM_INSPECTION_ANALYTICS.

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_InspectionLotWithStatus _InspectionLotWithStatus $projection.InspectionLot = _InspectionLotWithStatus.InspectionLot
[1..1] I_InspectionLotAggregate _InspLotAggrgn $projection.InspectionLot = _InspLotAggrgn.InspectionLot

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName CQLTYENGOVP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Quality Engineer Overview Page view
Search.searchable true 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
UI.headerInfo.description.label Material view
UI.headerInfo.description.type #STANDARD view
UI.headerInfo.description.value Material 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

Fields (17)

KeyFieldSource TableSource FieldDescription
KEY InspectionLot _InspLot InspectionLot Inspection Lot
Plant _InspLot Plant Valuation Area
InspectionLotOrigin _InspLot InspectionLotOrigin
InspectionLotType _InspLot InspectionLotType Inspection Type
Material _InspLot Material Vehicle Model
MatlQualityAuthorizationGroup
Supplier _InspLot Supplier Supplier
Manufacturer _InspLot Manufacturer Manufacturer
ManufacturerPartNmbr
PurchasingOrganization
InspectionLotHasQuantity
BatchStorageLocation _InspLot BatchStorageLocation
InspectionLotStorageLocation _InspLot InspectionLotStorageLocation
Customer
SoldToParty
SalesOrganization _InspLot SalesOrganization Sales Organization
IsBusinessPurposeCompleted _InspLot IsBusinessPurposeCompleted Purpose Completed

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_QltyEngineerOVP.
-- 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: CQLTYENGOVP

CREATE VIEW C_QltyEngineerOVP AS
SELECT
  _InspLot.InspectionLot AS InspectionLot,
  _InspLot.Plant AS Plant,
  _InspLot.InspectionLotOrigin AS InspectionLotOrigin,
  _InspLot.InspectionLotType AS InspectionLotType,
  _InspLot.Material AS Material,
  cast( _InspLot.MatlQualityAuthorizationGroup as vdm_qmatauth preserving type) AS MatlQualityAuthorizationGroup,
  _InspLot.Supplier AS Supplier,
  _InspLot.Manufacturer AS Manufacturer,
  cast( _InspLot.ManufacturerPartNmbr as vdm_ematn preserving type ) AS ManufacturerPartNmbr,
  cast( _InspLot.PurchasingOrganization as purchasingorganization_ll preserving type ) AS PurchasingOrganization,
  cast( _InspLot.InspectionLotHasQuantity as vdm_qvinsmk preserving type ) AS InspectionLotHasQuantity,
  _InspLot.BatchStorageLocation AS BatchStorageLocation,
  _InspLot.InspectionLotStorageLocation AS InspectionLotStorageLocation,
  cast( _InspLot.Customer as vdm_qkunwe preserving type ) AS Customer,
  cast( _InspLot.SoldToParty as vdm_kunag preserving type ) AS SoldToParty,
  _InspLot.SalesOrganization AS SalesOrganization,
  _InspLot.IsBusinessPurposeCompleted AS IsBusinessPurposeCompleted
LEFT OUTER JOIN I_InspectionLotWithStatus AS _InspectionLotWithStatus ON InspectionLot = _InspectionLotWithStatus.InspectionLot  -- association [1..1]
LEFT OUTER JOIN I_InspectionLotAggregate AS _InspLotAggrgn ON InspectionLot = _InspLotAggrgn.InspectionLot  -- association [1..1]
;