C_PaymentReceiptTP

DDL: C_PAYMENTRECEIPTTP Type: view_entity CONSUMPTION

Payment Receipt

C_PaymentReceiptTP is a Consumption CDS View that provides data about "Payment Receipt" in SAP S/4HANA. It reads from 1 data source (I_PaymentReceiptTP) and exposes 36 fields with key field PaymentReceiptUUID. It is exposed through 1 OData service (UI_PAYMENTRECEIPT_CREATE).

Data Sources (1)

SourceAliasJoin Type
I_PaymentReceiptTP I_PaymentReceiptTP projection

Annotations (13)

NameValueLevelField
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
Consumption.semanticObject PaymentReceiptUUID view
ObjectModel.draft.concurrentEditing true view
ObjectModel.draft.sharing #PUBLIC view
Search.searchable true view
AccessControl.personalData.blocking #REQUIRED view
AccessControl.authorizationCheck #CHECK view
VDM.viewType #CONSUMPTION view
EndUserText.label Payment Receipt view

OData Services (1)

ServiceBindingVersionContractRelease
UI_PAYMENTRECEIPT_CREATE UI_PAYMENTRECEIPT_CREATE V2 C1 NOT_RELEASED

Fields (36)

KeyFieldSource TableSource FieldDescription
KEY PaymentReceiptUUID PaymentReceiptUUID
PredecessorReferenceDocument PredecessorReferenceDocument Predecessor Reference Document
CompanyCode PaymentReceipt CompanyCode Receiver Company Code
CompanyCodeName PaymentReceipt CompanyCodeName Company Name
Country PaymentReceipt Country Venue: Ctry/Reg
PaymentReceiptID PaymentReceipt PaymentReceiptID
PaymentReceiptType PaymentReceipt PaymentReceiptType
PaymentReceiptTypeName PaymentReceipt PaymentReceiptTypeName
PaymentReceiptStatus PaymentReceipt PaymentReceiptStatus
AccountingDocument PaymentReceipt AccountingDocument Journal Entry
AccountingDocumentType PaymentReceipt AccountingDocumentType Journal Entry Type
AccountingDocumentTypeName PaymentReceipt AccountingDocumentTypeName
PaymentReceiptIssueDate PaymentReceipt PaymentReceiptIssueDate
FiscalYear PaymentReceipt FiscalYear G/L Fiscal Year
CreateReferencePaytRcptUUID PaymentReceipt CreateReferencePaytRcptUUID
VoidReferencePaytRcptUUID PaymentReceipt VoidReferencePaytRcptUUID
OfficialReceiptNumber PaymentReceipt OfficialReceiptNumber
CreatedByUser PaymentReceipt CreatedByUser User Name
PaymentReceiptCreatedDate PaymentReceipt PaymentReceiptCreatedDate
LastChangedByUser PaymentReceipt LastChangedByUser User Name
DraftLastChangedDateTime PaymentReceipt DraftLastChangedDateTime Time Stamp
PaymentRcptVoidedByUserName PaymentReceipt PaymentRcptVoidedByUserName
PaymentReceiptVoidedDate PaymentReceipt PaymentReceiptVoidedDate
CashAmtInCoCodeCrcy CashAmtInCoCodeCrcy
PaymentCurrency PaymentCurrency Payment Currency
Customer PaymentReceipt Customer Sold-to Party
CustomerFullName PaymentReceipt CustomerFullName Customer Name
Supplier PaymentReceipt Supplier Supplier
SupplierFullName PaymentReceipt SupplierFullName Supplier Name
Ledger Ledger Ledger
JrnlEntryCntrySpecificRef1 JrnlEntryCntrySpecificRef1 Country/Region Specific Reference 1
JrnlEntryCntrySpecificRef2 JrnlEntryCntrySpecificRef2 Country/Region Specific Reference 2
JrnlEntryCntrySpecificRef3 JrnlEntryCntrySpecificRef3 Country/Region Specific Reference 3
_CreateUserContactCard _CreateUserContactCard
_VoidUserContactCard _VoidUserContactCard
_ChangeUserContactCard _ChangeUserContactCard

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 C_PaymentReceiptTP.
-- 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 C_PaymentReceiptTP AS
SELECT
  PaymentReceiptUUID,
  PredecessorReferenceDocument,
  PaymentReceipt.CompanyCode AS CompanyCode,
  PaymentReceipt.CompanyCodeName AS CompanyCodeName,
  PaymentReceipt.Country AS Country,
  PaymentReceipt.PaymentReceiptID AS PaymentReceiptID,
  PaymentReceipt.PaymentReceiptType AS PaymentReceiptType,
  PaymentReceipt.PaymentReceiptTypeName AS PaymentReceiptTypeName,
  PaymentReceipt.PaymentReceiptStatus AS PaymentReceiptStatus,
  PaymentReceipt.AccountingDocument AS AccountingDocument,
  PaymentReceipt.AccountingDocumentType AS AccountingDocumentType,
  PaymentReceipt.AccountingDocumentTypeName AS AccountingDocumentTypeName,
  PaymentReceipt.PaymentReceiptIssueDate AS PaymentReceiptIssueDate,
  PaymentReceipt.FiscalYear AS FiscalYear,
  PaymentReceipt.CreateReferencePaytRcptUUID AS CreateReferencePaytRcptUUID,
  PaymentReceipt.VoidReferencePaytRcptUUID AS VoidReferencePaytRcptUUID,
  PaymentReceipt.OfficialReceiptNumber AS OfficialReceiptNumber,
  PaymentReceipt.CreatedByUser AS CreatedByUser,
  PaymentReceipt.PaymentReceiptCreatedDate AS PaymentReceiptCreatedDate,
  PaymentReceipt.LastChangedByUser AS LastChangedByUser,
  PaymentReceipt.DraftLastChangedDateTime AS DraftLastChangedDateTime,
  PaymentReceipt.PaymentRcptVoidedByUserName AS PaymentRcptVoidedByUserName,
  PaymentReceipt.PaymentReceiptVoidedDate AS PaymentReceiptVoidedDate,
  CashAmtInCoCodeCrcy,
  PaymentCurrency,
  PaymentReceipt.Customer AS Customer,
  PaymentReceipt.CustomerFullName AS CustomerFullName,
  PaymentReceipt.Supplier AS Supplier,
  PaymentReceipt.SupplierFullName AS SupplierFullName,
  Ledger,
  JrnlEntryCntrySpecificRef1,
  JrnlEntryCntrySpecificRef2,
  JrnlEntryCntrySpecificRef3
FROM I_PaymentReceiptTP
;