P_RTPCOrderStandardCost

DDL: P_RTPCORDERSTANDARDCOST SQL: PFIRTPCORSTDCOST Type: view BASIC

P_RTPCOrderStandardCost is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (acdocp, I_MfgOrdPlngCat) and exposes 24 fields with key fields OrderID, AccountAssignmentType, OrderItem, CompanyCode, Ledger.

Data Sources (2)

SourceAliasJoin Type
acdocp _item from
I_MfgOrdPlngCat _PlngCat inner

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PFIRTPCORSTDCOST 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 (24)

KeyFieldSource TableSource FieldDescription
KEY OrderID aufnr SettlementOrder
KEY AccountAssignmentType accasty Object Type
KEY OrderItem aufps Order item no.
KEY CompanyCode rbukrs Company Code
KEY Ledger rldnr Ledger (Compat.)
KEY GLAccount racct GL Account From
KEY ControllingDebitCreditCode co_belkz Dr/Cr ind. CO
KEY Material matnr Vehicle Model
KEY IsLotSzIndep psknz LotSzIndep.Ind.
KEY CostOriginGroup hkgrp Origin Group
CostingLotSize losgr Cstg Lot Size
Unit rvunit Valuation UoM
hsl
ksl
osl
vsl
bsl
csl
dsl
esl
fsl
gsl
kfsl
vmsl

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_RTPCOrderStandardCost.
-- 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: PFIRTPCORSTDCOST

CREATE VIEW P_RTPCOrderStandardCost AS
SELECT
  aufnr AS OrderID,
  accasty AS AccountAssignmentType,
  aufps AS OrderItem,
  rbukrs AS CompanyCode,
  rldnr AS Ledger,
  racct AS GLAccount,
  co_belkz AS ControllingDebitCreditCode,
  matnr AS Material,
  psknz AS IsLotSzIndep,
  hkgrp AS CostOriginGroup,
  losgr AS CostingLotSize,
  rvunit AS Unit,
  sum( hsl ) AS hsl,
  sum( ksl ) AS ksl,
  sum( osl ) AS osl,
  sum( vsl ) AS vsl,
  sum( bsl ) AS bsl,
  sum( csl ) AS csl,
  sum( dsl ) AS dsl,
  sum( esl ) AS esl,
  sum( fsl ) AS fsl,
  sum( gsl ) AS gsl,
  sum( kfsl ) AS kfsl,
  sum( vmsl ) AS vmsl
FROM acdocp AS _item
INNER JOIN I_MfgOrdPlngCat AS _PlngCat ON /* join condition not captured in parsed metadata */
;