P_JournalEntryIsCommitment

DDL: P_JOURNALENTRYISCOMMITMENT SQL: PJOURENTRISCMMT Type: view COMPOSITE

P_JournalEntryIsCommitment is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_GLAccountLineItem) and exposes 6 fields with key fields SourceLedger, AccountingDocument, CompanyCode, FiscalYear, Ledger.

Data Sources (1)

SourceAliasJoin Type
I_GLAccountLineItem I_GLAccountLineItem from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PJOURENTRISCMMT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.private true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SourceLedger SourceLedger Source Ledger
KEY AccountingDocument AccountingDocument Journal Entry
KEY CompanyCode CompanyCode Receiver Company Code
KEY FiscalYear FiscalYear G/L Fiscal Year
KEY Ledger Ledger Ledger
IsCommitment IsCommitment

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_JournalEntryIsCommitment.
-- 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: PJOURENTRISCMMT

CREATE VIEW P_JournalEntryIsCommitment AS
SELECT
  SourceLedger,
  AccountingDocument,
  CompanyCode,
  FiscalYear,
  Ledger,
  IsCommitment
FROM I_GLAccountLineItem
;