P_EBOrderActualOutputQty

DDL: P_EBORDERACTUALOUTPUTQTY SQL: PEBORDACTQTY Type: view COMPOSITE

P_EBOrderActualOutputQty is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_GLAccountLineItemRawData) and exposes 6 fields with key fields ControllingObject, OrderID, OrderItem.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountLineItemRawData I_GLAccountLineItemRawData from

Parameters (3)

NameTypeDefault
P_Ledger fins_ledger
P_FromFiscalYearPeriod fis_jahrper
P_ToFiscalYearPeriod fis_jahrper

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PEBORDACTQTY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #COMPOSITE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ControllingObject ControllingObject Object number
KEY OrderID OrderID Order ID
KEY OrderItem OrderItem Order item no.
CompanyCode CompanyCode Receiver Company Code
BaseUnit BaseUnit Unit of Measure
PostingDate

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 P_EBOrderActualOutputQty.
-- 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: PEBORDACTQTY
-- Parameters: P_Ledger : fins_ledger, P_FromFiscalYearPeriod : fis_jahrper, P_ToFiscalYearPeriod : fis_jahrper

CREATE VIEW P_EBOrderActualOutputQty AS
SELECT
  ControllingObject,
  OrderID,
  OrderItem,
  CompanyCode,
  BaseUnit,
  max(PostingDate) AS PostingDate
FROM I_GLAccountLineItemRawData
;