P_EBOC_OrderKeyStatusByPeriod

DDL: P_EBOC_ORDERKEYSTATUSBYPERIOD SQL: PEBOCORDKYSTSBP Type: view COMPOSITE

P_EBOC_OrderKeyStatusByPeriod is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (P_EBOC_MaxOrdKeyStatusByPeriod, I_StatusObjectStatusChange_2) and exposes 1 field with key field StatusCode.

Data Sources (2)

SourceAliasJoin Type
P_EBOC_MaxOrdKeyStatusByPeriod P_EBOC_MaxOrdKeyStatusByPeriod inner
I_StatusObjectStatusChange_2 StatusChange from

Parameters (4)

NameTypeDefault
P_StatusObject j_objnr
P_Ledger fins_ledger
P_CompanyCode fis_bukrs
P_ToFiscalYearPeriod fins_fyearperiod

Annotations (7)

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

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY StatusCode I_StatusObjectStatusChange_2 StatusCode Statuscode

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_EBOC_OrderKeyStatusByPeriod.
-- 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: PEBOCORDKYSTSBP
-- Parameters: P_StatusObject : j_objnr, P_Ledger : fins_ledger, P_CompanyCode : fis_bukrs, P_ToFiscalYearPeriod : fins_fyearperiod

CREATE VIEW P_EBOC_OrderKeyStatusByPeriod AS
SELECT
  StatusChange.StatusCode AS StatusCode
FROM I_StatusObjectStatusChange_2 AS StatusChange
INNER JOIN P_EBOC_MaxOrdKeyStatusByPeriod ON /* join condition not captured in parsed metadata */
;