C_ProdnSupItemDetailedQty

DDL: C_PRODNSUPITEMDETAILEDQTY SQL: CPRODSPLYDQTY Type: view CONSUMPTION Package: ODATA_PP_KAB_FIO_PROD_SPLY_BRD

Production Supply Detailed Quantity

C_ProdnSupItemDetailedQty is a Consumption CDS View that provides data about "Production Supply Detailed Quantity" in SAP S/4HANA. It reads from 1 data source (I_KanbanCtnDetailedQty) and exposes 10 fields with key fields KanbanContainer, Batch. It is exposed through 1 OData service (ASQL_F4630). Part of development package ODATA_PP_KAB_FIO_PROD_SPLY_BRD.

Data Sources (1)

SourceAliasJoin Type
I_KanbanCtnDetailedQty I_KanbanCtnDetailedQty from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CPRODSPLYDQTY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Production Supply Detailed Quantity view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view
VDM.private false view
VDM.viewType #CONSUMPTION view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F4630 ASQL_F4630 C2 NOT_RELEASED

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY KanbanContainer KanbanContainer
KEY Batch Batch Lot No.
BaseUnit BaseUnit Unit of Measure
ActualQuantityInBaseUnit ActualQuantityInBaseUnit
BatchShortDescription Batch Short Description
Product Product Product Sold
Plant Plant Valuation Area
Supplier Supplier Supplier
_Supplier _Supplier
_SupplierCompanyByPlant _SupplierCompanyByPlant

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_ProdnSupItemDetailedQty.
-- 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: CPRODSPLYDQTY

CREATE VIEW C_ProdnSupItemDetailedQty AS
SELECT
  KanbanContainer,
  Batch,
  BaseUnit,
  ActualQuantityInBaseUnit,
  cast(' ' as kztxt_batch preserving type) AS BatchShortDescription,
  Product,
  Plant,
  Supplier
FROM I_KanbanCtnDetailedQty
;