P_EBPCC_ActualCost3

DDL: P_EBPCC_ACTUALCOST3 SQL: PEBPCCACTUAL3 Type: view COMPOSITE Package: ODATA_CO_EB_PROD_COST_CLTR_DET

Event-Based PCC Actual Cost

P_EBPCC_ActualCost3 is a Composite CDS View that provides data about "Event-Based PCC Actual Cost" in SAP S/4HANA. It reads from 1 data source (P_EBPCC_ActualCost2) and exposes 28 fields with key fields CompanyCode, Plant, ControllingArea, ControllingKeySubNumber, CostElement. Part of development package ODATA_CO_EB_PROD_COST_CLTR_DET.

Data Sources (1)

SourceAliasJoin Type
P_EBPCC_ActualCost2 P_EBPCC_ActualCost2 from

Parameters (5)

NameTypeDefault
P_OrderID fis_order_number
P_FromFiscalYearPeriod fis_jahrper
P_ToFiscalYearPeriod fis_jahrper
P_Ledger fins_ledger
P_CurrencyRole fac_crcyrole

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PEBPCCACTUAL3 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 (28)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY Plant Plant Valuation Area
KEY ControllingArea ControllingArea Controlling Area
KEY ControllingKeySubNumber ControllingKeySubNumber
KEY CostElement CostElement G/L Account
KEY BusinessTransactionCategory BusinessTransactionCategory Business Transaction Category
KEY ControllingDebitCreditCode ControllingDebitCreditCode Dr/Cr ind. CO
KEY OriginSenderObject OriginSenderObject
KEY CtrlgOriginClassification CtrlgOriginClassification
KEY OrderID OrderID Order ID
KEY OrderItem OrderItem
KEY AccountAssignmentType AccountAssignmentType Sndr AcctAssgmt Type
KEY PartnerAccountAssignment PartnerAccountAssignment Partner Account Assignment
KEY PartnerAccountAssignmentType PartnerAccountAssignmentType Partner Account Assignment Type
KEY PartnerCostCenter PartnerCostCenter Sender Cost Ctr
KEY PartnerCostCtrActivityType PartnerCostCtrActivityType Partner Cost Center Activity Type
KEY PartnerBusinessProcess PartnerBusinessProcess Part. Bus. Process
KEY PartnerOrder PartnerOrder Partner Order
KEY UnitOfMeasure UnitOfMeasure Unit Protected Qty
KEY Material Material Vehicle Model
KEY CostOriginGroup CostOriginGroup Origin Group
KEY OriginCostCenter OriginCostCenter
KEY OriginCostCtrActivityType OriginCostCtrActivityType
KEY ControllingValueType
AmountInDisplayCurrency AmountInDisplayCurrency
FixedAmountInDisplayCurrency
Quantity Quantity Value
FixedQuantity FixedQuantity Fixed 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_EBPCC_ActualCost3.
-- 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: PEBPCCACTUAL3
-- Parameters: P_OrderID : fis_order_number, P_FromFiscalYearPeriod : fis_jahrper, P_ToFiscalYearPeriod : fis_jahrper, P_Ledger : fins_ledger, P_CurrencyRole : fac_crcyrole

CREATE VIEW P_EBPCC_ActualCost3 AS
SELECT
  CompanyCode,
  Plant,
  ControllingArea,
  ControllingKeySubNumber,
  CostElement,
  BusinessTransactionCategory,
  ControllingDebitCreditCode,
  OriginSenderObject,
  CtrlgOriginClassification,
  OrderID,
  OrderItem,
  AccountAssignmentType,
  PartnerAccountAssignment,
  PartnerAccountAssignmentType,
  PartnerCostCenter,
  PartnerCostCtrActivityType,
  PartnerBusinessProcess,
  PartnerOrder,
  UnitOfMeasure,
  Material,
  CostOriginGroup,
  OriginCostCenter,
  OriginCostCtrActivityType,
  cast('04' as co_wrttp) AS ControllingValueType,
  AmountInDisplayCurrency,
  cast(round(CostRateFixedAmount * AmountInDisplayCurrency, 2) as abap.dec( 23, 2 ) ) AS FixedAmountInDisplayCurrency,
  Quantity,
  FixedQuantity
FROM P_EBPCC_ActualCost2
;