I_PaytReceiptBasedOnRcptNmbrVH

DDL: I_PAYTRECEIPTBASEDONRCPTNMBRVH SQL: IPAYTRECBRNVH Type: view COMPOSITE Package: GLO_FIN_PAYMENT_RECEIPT

Payment Receipt Based Receipt Number

I_PaytReceiptBasedOnRcptNmbrVH is a Composite CDS View that provides data about "Payment Receipt Based Receipt Number" in SAP S/4HANA. It reads from 1 data source (I_PaymentReceipt) and exposes 6 fields with key fields CompanyCode, PaymentReceiptID, Customer, Supplier, PaymentReceiptIssueDate. Part of development package GLO_FIN_PAYMENT_RECEIPT.

Data Sources (1)

SourceAliasJoin Type
I_PaymentReceipt I_PaymentReceipt from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IPAYTRECBRNVH view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #VALUE_HELP view
VDM.viewType #COMPOSITE view
Search.searchable true view
EndUserText.label Payment Receipt Based Receipt Number view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY PaymentReceiptID PaymentReceiptID Payment Receipt ID
KEY Customer Customer Sold-to Party
KEY Supplier Supplier Supplier
KEY PaymentReceiptIssueDate PaymentReceiptIssueDate Payt Rcpt Date
KEY PaymentReceiptUUID PaymentReceiptUUID Payt Rcpt UUID

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_PaytReceiptBasedOnRcptNmbrVH.
-- 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: IPAYTRECBRNVH

CREATE VIEW I_PaytReceiptBasedOnRcptNmbrVH AS
SELECT
  CompanyCode,
  PaymentReceiptID,
  Customer,
  Supplier,
  PaymentReceiptIssueDate,
  PaymentReceiptUUID
FROM I_PaymentReceipt
;