P_RTPCOrderActlCostForSttlLd

DDL: P_RTPCORDERACTLCOSTFORSTTLLD SQL: PFIRTPCORDACFSLD Type: view BASIC

P_RTPCOrderActlCostForSttlLd is a Basic CDS View in SAP S/4HANA. It reads from 3 data sources (acdoca, t000, tka01) and exposes 30 fields.

Data Sources (3)

SourceAliasJoin Type
acdoca a from
t000 s inner
tka01 t inner

Annotations (10)

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

Fields (30)

KeyFieldSource TableSource FieldDescription
lednr acdoca rldnr Ledger (Compat.)
aufnr aufnr SettlementOrder
objnr objnr Val. Obj. No.
gjahr ryear Ref. Year1
rbukrs rbukrs Company Code
fiscyearper fiscyearper Period/Year
belnr belnr SD Document
docln docln Matching Document Line Item
versn v versn Version
wrttp
kstar racct GL Account From
hrkft hrkft Origin group order
vrgng vrgng Bus.Transaction
uspob uspob Source Object
vbund rassc Trading Partner
pargb sbusa Trdg Part.BA
beknz co_beknz Dr/Cr (Origin)
twaer rwcur Transaction Currency
meinh rvunit Valuation UoM
bemot bemot AcctIndicator
beltp beltp Debit Type
bttype bttype Business Transaction Type
awtyp awtyp Reference Document Type
awref awref Reference Doc.
awitem awitem Ref. Doc. Line Item
aworg aworg Refer. Org.Unit
awsys awsys Logical System
subta subta Sub Transaction
megbtr vmsl Val. quantity
mefbtr vmfsl Fixed val. qty

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_RTPCOrderActlCostForSttlLd.
-- 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: PFIRTPCORDACFSLD

CREATE VIEW P_RTPCOrderActlCostForSttlLd AS
SELECT
  a.rldnr AS lednr,
  aufnr,
  objnr,
  ryear AS gjahr,
  rbukrs,
  fiscyearper,
  belnr,
  docln,
  v.versn AS versn,
  '04' AS wrttp,
  racct AS kstar,
  hrkft,
  vrgng,
  uspob,
  rassc AS vbund,
  sbusa AS pargb,
  co_beknz AS beknz,
  rwcur AS twaer,
  rvunit AS meinh,
  bemot,
  beltp,
  bttype,
  awtyp,
  awref,
  awitem,
  aworg,
  awsys,
  subta,
  vmsl AS megbtr,
  vmfsl AS mefbtr
FROM acdoca AS a
INNER JOIN t000 AS s ON /* join condition not captured in parsed metadata */
INNER JOIN tka01 AS t ON /* join condition not captured in parsed metadata */
;