Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

P_EBOC_Variance2

DDL: P_EBOC_VARIANCE2 SQL: PEBOCVARC2 Type: view COMPOSITE

P_EBOC_Variance2 is a Composite CDS View in SAP S/4HANA. It reads from 2 data sources (I_LedgerCompanyCodeCrcyRoles, P_EBOC_Variance1) and exposes 20 fields with key fields CompanyCode, ControllingArea, CostElement, BusinessTransactionType, ControllingDebitCreditCode.

Data Sources (2)

SourceAliasJoin Type
I_LedgerCompanyCodeCrcyRoles _LedgerCompanyCodeCrcyRole inner
P_EBOC_Variance1 P_EBOC_Variance1 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 (8)

NameValueLevelField
AbapCatalog.sqlViewName PEBOCVARC2 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
VDM.lifecycle.status #DEPRECATED view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode _Costs CompanyCode Receiver Company Code
KEY ControllingArea ControllingArea Controlling Area
KEY CostElement CostElement G/L Account
KEY BusinessTransactionType BusinessTransactionType Bus.transaction
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 ControllingValueType
KEY CtrlgOriginClassification

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_Variance2.
-- 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: PEBOCVARC2
-- 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_Variance2 AS
SELECT
  _Costs.CompanyCode AS CompanyCode,
  ControllingArea,
  CostElement,
  BusinessTransactionType,
  ControllingDebitCreditCode,
  OriginSenderObject,
  OrderID,
  OrderItem,
  AccountAssignmentType,
  PartnerAccountAssignment,
  PartnerAccountAssignmentType,
  PartnerCostCenter,
  PartnerCostCtrActivityType,
  PartnerBusinessProcess,
  PartnerOrder,
  UnitOfMeasure,
  Material,
  CostOriginGroup,
  cast('31' as co_wrttp) AS ControllingValueType,
  'B' AS CtrlgOriginClassification
FROM P_EBOC_Variance1
INNER JOIN I_LedgerCompanyCodeCrcyRoles AS _LedgerCompanyCodeCrcyRole ON /* join condition not captured in parsed metadata */
;