P_EBSpecialStockValStrategy

DDL: P_EBSPECIALSTOCKVALSTRATEGY SQL: PEBSPCSTVLST Type: view COMPOSITE

P_EBSpecialStockValStrategy is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (R_MatlPriceSpclStockValnStrgy) and exposes 10 fields with key fields CostEstimate, Ledger, CurrencyRole.

Data Sources (1)

SourceAliasJoin Type
R_MatlPriceSpclStockValnStrgy R_MatlPriceSpclStockValnStrgy from

Parameters (2)

NameTypeDefault
P_Ledger fins_ledger
P_CurrencyRole fac_crcyrole

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PEBSPCSTVLST 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 (10)

KeyFieldSource TableSource FieldDescription
KEY CostEstimate CostEstimate Cost EstimateNo
KEY Ledger Ledger Ledger
KEY CurrencyRole CurrencyRole Curr./Val. Type
SalesOrder SalesOrder SD Document
SalesOrderItem SalesOrderItem Sales Order Item
WBSElementInternalID WBSElementInternalID WBS Internal ID
ValuationType ValuationType Valuation Type
Plant Plant Valuation Area
Material Material Vehicle Model
CurPlanProjSlsOrdValnStrategy CurPlanProjSlsOrdValnStrategy

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_EBSpecialStockValStrategy.
-- 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: PEBSPCSTVLST
-- Parameters: P_Ledger : fins_ledger, P_CurrencyRole : fac_crcyrole

CREATE VIEW P_EBSpecialStockValStrategy AS
SELECT
  CostEstimate,
  Ledger,
  CurrencyRole,
  SalesOrder,
  SalesOrderItem,
  WBSElementInternalID,
  ValuationType,
  Plant,
  Material,
  CurPlanProjSlsOrdValnStrategy
FROM R_MatlPriceSpclStockValnStrgy
;