P_EvtBsdRevnRecgnProjWipJrnAmt

DDL: P_EVTBSDREVNRECGNPROJWIPJRNAMT SQL: PEBRRPROJWIPJRNA Type: view COMPOSITE

P_EvtBsdRevnRecgnProjWipJrnAmt is a Composite CDS View in SAP S/4HANA. It reads from 4 data sources (I_ProjectBillingElement, I_GLAccountLineItemRawData, I_SalesDocumentItemBasic, I_SlsDocItemBillingPlan) and exposes 23 fields with key fields Ledger, CompanyCode, FiscalYear, AccountingDocument, LedgerGLLineItem.

Data Sources (4)

SourceAliasJoin Type
I_ProjectBillingElement ProjectBillingElement from
I_GLAccountLineItemRawData RawData inner
I_SalesDocumentItemBasic SalesDocumentItem inner
I_SlsDocItemBillingPlan SlsDocItemBillingPlan inner

Parameters (1)

NameTypeDefault
P_Ledger fins_ledger

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName PEBRRPROJWIPJRNA view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view
Metadata.ignorePropagatedAnnotations true view

Fields (23)

KeyFieldSource TableSource FieldDescription
KEY Ledger SourceLedger Source Ledger
KEY CompanyCode CompanyCode Receiver Company Code
KEY FiscalYear FiscalYear G/L Fiscal Year
KEY AccountingDocument AccountingDocument Journal Entry
KEY LedgerGLLineItem LedgerGLLineItem Journal Entry Item
SubLedgerAcctLineItemType SubLedgerAcctLineItemType SLALineItemType
BusinessTransactionType BusinessTransactionType Bus.transaction
BillingWBSElementInternalID BillingWBSElementInternalID WBS Internal ID
WorkItem WorkItem Work Item ID
Customer Customer Sold-to Party
FiscalYearPeriod FiscalYearPeriod Period/Year
PostingDate PostingDate Posting Date for GR
GLAccount GLAccount General Ledger
PersonnelNumber PersonnelNumber Personnel No.
TimeSheetOvertimeCategory TimeSheetOvertimeCategory Overtime Category
ReferenceDocumentType ReferenceDocumentType Reference Document Type
DocumentItemText DocumentItemText Text
BillableControl BillableControl Billable Control
PartnerCostCenter PartnerCostCenter Sender Cost Ctr
ControllingObjectCurrency ControllingObjectCurrency CO Object Currency
TransactionCurrency I_GLAccountLineItemRawData TransactionCurrency Transaction Currency
AmountInObjectCurrency AmountInObjectCurrency Amount in Obj Crcy
AmountInTransactionCurrency AmountInTransactionCurrency Pt Crcy Amt

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_EvtBsdRevnRecgnProjWipJrnAmt.
-- 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: PEBRRPROJWIPJRNA
-- Parameters: P_Ledger : fins_ledger

CREATE VIEW P_EvtBsdRevnRecgnProjWipJrnAmt AS
SELECT
  SourceLedger AS Ledger,
  CompanyCode,
  FiscalYear,
  AccountingDocument,
  LedgerGLLineItem,
  SubLedgerAcctLineItemType,
  BusinessTransactionType,
  BillingWBSElementInternalID,
  WorkItem,
  Customer,
  FiscalYearPeriod,
  PostingDate,
  GLAccount,
  PersonnelNumber,
  TimeSheetOvertimeCategory,
  ReferenceDocumentType,
  DocumentItemText,
  BillableControl,
  PartnerCostCenter,
  ControllingObjectCurrency,
  RawData.TransactionCurrency AS TransactionCurrency,
  AmountInObjectCurrency,
  AmountInTransactionCurrency
FROM I_ProjectBillingElement AS ProjectBillingElement
INNER JOIN I_GLAccountLineItemRawData AS RawData ON /* join condition not captured in parsed metadata */
INNER JOIN I_SalesDocumentItemBasic AS SalesDocumentItem ON /* join condition not captured in parsed metadata */
INNER JOIN I_SlsDocItemBillingPlan AS SlsDocItemBillingPlan ON /* join condition not captured in parsed metadata */
;