P_EBOC_WIP2

DDL: P_EBOC_WIP2 SQL: PEBOCWIP2 Type: view COMPOSITE

P_EBOC_WIP2 is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_LedgerCompanyCodeCrcyRoles, P_EBOC_WIP1) and exposes 24 fields with key fields CompanyCode, Plant, ControllingArea, CostElement, BusinessTransactionCategory.

Data Sources (2)

SourceAliasJoin Type
I_LedgerCompanyCodeCrcyRoles _LedgerCompanyCodeCrcyRole inner
P_EBOC_WIP1 P_EBOC_WIP1 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 PEBOCWIP2 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 (24)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode _Costs CompanyCode Receiver Company Code
KEY Plant Plant Valuation Area
KEY ControllingArea ControllingArea Controlling Area
KEY CostElement CostElement G/L Account
KEY BusinessTransactionCategory BusinessTransactionCategory Business Transaction Category
KEY ControllingDebitCreditCode ControllingDebitCreditCode Dr/Cr ind. CO
KEY OriginSenderObject OriginSenderObject
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 SubLedgerAcctLineItemType SubLedgerAcctLineItemType SLALineItemType
KEY OriginCostCenter OriginCostCenter
KEY OriginCostCtrActivityType OriginCostCtrActivityType
dec148asCostRateFixedAmount
TotalQuantity TotalQuantity Activity 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_EBOC_WIP2.
-- 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: PEBOCWIP2
-- 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_EBOC_WIP2 AS
SELECT
  _Costs.CompanyCode AS CompanyCode,
  Plant,
  ControllingArea,
  CostElement,
  BusinessTransactionCategory,
  ControllingDebitCreditCode,
  OriginSenderObject,
  OrderID,
  OrderItem,
  AccountAssignmentType,
  PartnerAccountAssignment,
  PartnerAccountAssignmentType,
  PartnerCostCenter,
  PartnerCostCtrActivityType,
  PartnerBusinessProcess,
  PartnerOrder,
  UnitOfMeasure,
  Material,
  CostOriginGroup,
  SubLedgerAcctLineItemType,
  OriginCostCenter,
  OriginCostCtrActivityType,
  cast( case when AmountInGlobalCurrency <> 0 then division(FixedAmountInGlobalCrcy, AmountInGlobalCurrency, 8) else 0 end as abap.dec(14, 8) ) as CostRateFixedAmount AS dec148asCostRateFixedAmount,
  TotalQuantity
FROM P_EBOC_WIP1
INNER JOIN I_LedgerCompanyCodeCrcyRoles AS _LedgerCompanyCodeCrcyRole ON /* join condition not captured in parsed metadata */
;