I_PaytReceiptSupplierVH

DDL: I_PAYTRECEIPTSUPPLIERVH SQL: IPYTRECPTSUPLRVH Type: view COMPOSITE

Payment Receipt Supplier

I_PaytReceiptSupplierVH is a Composite CDS View that provides data about "Payment Receipt Supplier" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 5 fields with key fields CompanyCode, Supplier.

Data Sources (1)

SourceAliasJoin Type
I_Supplier Supplier inner

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IPYTRECPTSUPLRVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
AbapCatalog.preserveKey true 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 Supplier view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode SupplierCompany CompanyCode Receiver Company Code
KEY Supplier SupplierCompany Supplier Supplier
SupplierName I_Supplier SupplierName Supplier Name
SupplierFullName I_Supplier SupplierFullName Supplier Full Name
ReferenceSupplier SupplierCompany Supplier Supplier

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_PaytReceiptSupplierVH.
-- 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: IPYTRECPTSUPLRVH

CREATE VIEW I_PaytReceiptSupplierVH AS
SELECT
  SupplierCompany.CompanyCode AS CompanyCode,
  SupplierCompany.Supplier AS Supplier,
  Supplier.SupplierName AS SupplierName,
  Supplier.SupplierFullName AS SupplierFullName,
  SupplierCompany.Supplier AS ReferenceSupplier
INNER JOIN I_Supplier AS Supplier ON /* join condition not captured in parsed metadata */
;