P_PFFPaymentRequestType
Payment Request Type
P_PFFPaymentRequestType is a Composite CDS View that provides data about "Payment Request Type" in SAP S/4HANA. It reads from 2 data sources (I_PaymentRequest, I_PaymentRequest) and exposes 4 fields with key field PaymentRequest. Part of development package ODATA_PROCESS_FF_PAYMENTS.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_PaymentRequest | _PaymentRequest | from |
| I_PaymentRequest | I_PaymentRequest | union_all |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPFFPAYRQTYPE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PaymentRequest | PaymentRequest | ||
| PaymentRequestType | PaymentRequestOrigin | |||
| PaymentRequestType | _PaytReqChangeAndPost | PaymentRequestType | ||
| BPBankAccountInternalID | BPBankAccountInternalID |
@AbapCatalog.sqlViewName: 'PPFFPAYRQTYPE'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M
@VDM.viewType: #COMPOSITE
@VDM.private:true
define view P_PFFPaymentRequestType
as select from I_PaymentRequest as _PaymentRequest
{
key PaymentRequest,
PaymentRequestOrigin as PaymentRequestType,
BPBankAccountInternalID
}
where
_PaytReqChangeAndPost.PaymentRequestType is null
union all
select from I_PaymentRequest
{
key PaymentRequest,
_PaytReqChangeAndPost.PaymentRequestType as PaymentRequestType,
BPBankAccountInternalID
}
where
_PaytReqChangeAndPost.PaymentRequestType is not null
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA