P_RTPCTOBEDISTRIBUTEDCOST

DDL: P_RTPCTOBEDISTRIBUTEDCOST SQL: PFIRTPCTBDSTCST Type: view BASIC

P_RTPCTOBEDISTRIBUTEDCOST is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (acdoca, I_Ledger) and exposes 26 fields with key fields OrderID, ControllingObject, CompanyCode, Ledger, GLAccount.

Data Sources (2)

SourceAliasJoin Type
acdoca _item from
I_Ledger _ledger inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PFIRTPCTBDSTCST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.private true view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (26)

KeyFieldSource TableSource FieldDescription
KEY OrderID acdoca aufnr SettlementOrder
KEY ControllingObject objnr Val. Obj. No.
KEY CompanyCode rbukrs Company Code
KEY Ledger rldnr Ledger (Compat.)
KEY GLAccount racct GL Account From
KEY Material acdoca matnr Vehicle Model
KEY OriginCostCenter ukostl OrigCCtr
KEY OriginCostCenterActivityType ulstar OrigAct.
KEY FiscalYearPeriod fiscyearper Period/Year
SourceObject uspob Source Object
segment segment Segment number
Plant werks Receiving Plant
UnitOfMeasure rvunit Valuation UoM
hsl hsl Local Crcy Amt
ksl ksl GrpCurr
osl osl Other Crcy Amnt
vsl vsl Amount in Currency 2
bsl bsl Exchange Key
csl csl Amount in Currency 4
dsl dsl Amount in Currency 5
esl esl Amount in Currency 6
fsl fsl Amount in Currency 7
gsl gsl Amount in Currency 8
kfsl kfsl Fixed Amnt in GC
vmsl vmsl Val. quantity
rmsl rmsl Ref. quantity

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_RTPCTOBEDISTRIBUTEDCOST.
-- 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: PFIRTPCTBDSTCST

CREATE VIEW P_RTPCTOBEDISTRIBUTEDCOST AS
SELECT
  _item.aufnr AS OrderID,
  objnr AS ControllingObject,
  rbukrs AS CompanyCode,
  rldnr AS Ledger,
  racct AS GLAccount,
  _item.matnr AS Material,
  ukostl AS OriginCostCenter,
  ulstar AS OriginCostCenterActivityType,
  fiscyearper AS FiscalYearPeriod,
  uspob AS SourceObject,
  segment,
  werks AS Plant,
  rvunit AS UnitOfMeasure,
  hsl,
  ksl,
  osl,
  vsl,
  bsl,
  csl,
  dsl,
  esl,
  fsl,
  gsl,
  kfsl,
  vmsl,
  rmsl
FROM acdoca AS _item
INNER JOIN I_Ledger AS _ledger ON /* join condition not captured in parsed metadata */
;