P_IL_TotalRefund

DDL: P_IL_TOTALREFUND Type: view_entity COMPOSITE Package: RAP_GLO_FIN_CASH_IL_RETURN

IL Total Refund for Payment Item

P_IL_TotalRefund is a Composite CDS View that provides data about "IL Total Refund for Payment Item" in SAP S/4HANA. It reads from 1 data source (I_IL_RefundItem) and exposes 3 fields with key field IL_ReferencePaymentItem. Part of development package RAP_GLO_FIN_CASH_IL_RETURN.

Data Sources (1)

SourceAliasJoin Type
I_IL_RefundItem I_IL_RefundItem from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label IL Total Refund for Payment Item view
Metadata.ignorePropagatedAnnotations false view
VDM.viewType #COMPOSITE view
VDM.private true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY IL_ReferencePaymentItem IL_ReferencePaymentItem
TransactionCurrency TransactionCurrency Transaction Currency
IL_PaytItmAmountInDocCrcy

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_IL_TotalRefund.
-- 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.

CREATE VIEW P_IL_TotalRefund AS
SELECT
  IL_ReferencePaymentItem,
  TransactionCurrency,
  sum( IL_PaytItmAmountInDocCrcy) AS IL_PaytItmAmountInDocCrcy
FROM I_IL_RefundItem
;