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

I_MPPartialPayment

DDL: I_MPPARTIALPAYMENT SQL: IMPPARTIALPAY Type: view BASIC

Master Project Partial Payment

I_MPPartialPayment is a Basic CDS View that provides data about "Master Project Partial Payment" in SAP S/4HANA. It reads from 1 data source (I_ReceivablesPayablesItem) and exposes 3 fields.

Data Sources (1)

SourceAliasJoin Type
I_ReceivablesPayablesItem PartiallyReceivable from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMPPARTIALPAY view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Master Project Partial Payment view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.lifecycle.successor I_ReceivablesPayablesItem view

Fields (3)

KeyFieldSource TableSource FieldDescription
BillingDocument I_ReceivablesPayablesItem BillingDocument SD Document
AmountInCompanyCodeCurrency
TaxAmount

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_MPPartialPayment.
-- 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: IMPPARTIALPAY

CREATE VIEW I_MPPartialPayment AS
SELECT
  PartiallyReceivable.BillingDocument AS BillingDocument,
  sum(PartiallyReceivable.AmountInCompanyCodeCurrency) AS AmountInCompanyCodeCurrency,
  sum(PartiallyReceivable.TaxAmount) AS TaxAmount
FROM I_ReceivablesPayablesItem AS PartiallyReceivable
;