P_FundsMgmtCmtmtLatestItem

DDL: P_FUNDSMGMTCMTMTLATESTITEM SQL: PFMIOILATEST Type: view COMPOSITE

P_FundsMgmtCmtmtLatestItem is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_FundsMgmtCommitmentEntryItem) and exposes 9 fields with key fields ReferenceDocument, FundsMgmtRefDocumentCategory, ReferenceDocumentContext, FundsMgmtReferenceDocumentItem, RefDocAccountAssignment.

Data Sources (1)

SourceAliasJoin Type
I_FundsMgmtCommitmentEntryItem I_FundsMgmtCommitmentEntryItem from

Annotations (8)

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

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY ReferenceDocument ReferenceDocument Reference Document
KEY FundsMgmtRefDocumentCategory FundsMgmtRefDocumentCategory
KEY ReferenceDocumentContext ReferenceDocumentContext Reference Document Context
KEY FundsMgmtReferenceDocumentItem FundsMgmtReferenceDocumentItem
KEY RefDocAccountAssignment RefDocAccountAssignment
KEY FundsMgmtRefDocScheduleLine FundsMgmtRefDocScheduleLine
KEY RefDocPricingElementContent RefDocPricingElementContent
KEY ReferenceDocumentType ReferenceDocumentType Reference Document Type
FundsMgmtLatestSequenceNumber

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_FundsMgmtCmtmtLatestItem.
-- 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: PFMIOILATEST

CREATE VIEW P_FundsMgmtCmtmtLatestItem AS
SELECT
  ReferenceDocument,
  FundsMgmtRefDocumentCategory,
  ReferenceDocumentContext,
  FundsMgmtReferenceDocumentItem,
  RefDocAccountAssignment,
  FundsMgmtRefDocScheduleLine,
  RefDocPricingElementContent,
  ReferenceDocumentType,
  max ( FundsMgmtSequenceNumber ) AS FundsMgmtLatestSequenceNumber
FROM I_FundsMgmtCommitmentEntryItem
;