I_PPS_JournalEntryProcessFlow

DDL: I_PPS_JOURNALENTRYPROCESSFLOW SQL: IPPSXPOJEPF Type: view BASIC

Journal Entry Documents

I_PPS_JournalEntryProcessFlow is a Basic CDS View that provides data about "Journal Entry Documents" in SAP S/4HANA. It reads from 1 data source (bkpf) and exposes 7 fields with key fields AccountingDocument, PPSSupplierInvoiceItem, CompanyCode, FiscalYear.

Data Sources (1)

SourceAliasJoin Type
bkpf JournalEntry from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IPPSXPOJEPF view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Journal Entry Documents view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY AccountingDocument bkpf belnr SD Document
KEY PPSSupplierInvoiceItem
KEY CompanyCode bkpf bukrs Value
KEY FiscalYear bkpf gjahr Settlement Year
AccountingDocumentType bkpf blart Rep. rec. doc. type
PPSAmtWthCrcyAsText
CompanyCodeCurrency JournalEntryItem rfccur Functional Currency

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 I_PPS_JournalEntryProcessFlow.
-- 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: IPPSXPOJEPF

CREATE VIEW I_PPS_JournalEntryProcessFlow AS
SELECT
  JournalEntry.belnr AS AccountingDocument,
  cast( concat ( '00' ,JournalEntryItem.buzei )as numc05) AS PPSSupplierInvoiceItem,
  JournalEntry.bukrs AS CompanyCode,
  JournalEntry.gjahr AS FiscalYear,
  JournalEntry.blart AS AccountingDocumentType,
  cast(concat_with_space(cast(JournalEntryItem.wrbtr as abap.char(30)), JournalEntryItem.rfccur, 1) as abap.char( 40 ) ) AS PPSAmtWthCrcyAsText,
  JournalEntryItem.rfccur AS CompanyCodeCurrency
FROM bkpf AS JournalEntry
;