P_CADocumentPaytInfoPaytOrder
Payment Info for Payment Orders
P_CADocumentPaytInfoPaytOrder is a Composite CDS View that provides data about "Payment Info for Payment Orders" in SAP S/4HANA. It reads from 1 data source (I_CAPaymentOrder) and exposes 17 fields with key field CAPaymentOrder.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CAPaymentOrder | I_CAPaymentOrder | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Payment Info for Payment Orders | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #P | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view |
Fields (17)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CAPaymentOrder | CAPaymentOrder | ||
| CAPaymentOrderExternalRef | CAPaymentOrderExternalRef | |||
| CAPaymentOrderStatus | CAPaymentOrderStatus | |||
| TransactionCurrency | TransactionCurrency | |||
| CANetAmountInTransCurrency | CANetAmountInTransCurrency | |||
| PaidItemDueDate | PaidItemDueDate | |||
| ValueDate | ValueDate | |||
| CAPaymentOrderExpirationDate | CAPaymentOrderExpirationDate | |||
| HouseBank | HouseBank | |||
| HouseBankAccount | HouseBankAccount | |||
| CAPaymentMethod | CAPaymentMethod | |||
| CAMassRunDate | CAMassRunDate | |||
| CAMassRunID | CAMassRunID | |||
| CAMassRunDateAndID | ||||
| CAPaymentDocument | CAPaymentDocument | |||
| BusinessPartner | BusinessPartner | |||
| CompanyCode | CompanyCode |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Payment Info for Payment Orders'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #P,
sizeCategory: #XXL,
dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
@VDM.private: true
define view entity P_CADocumentPaytInfoPaytOrder as select from I_CAPaymentOrder {
key CAPaymentOrder,
CAPaymentOrderExternalRef,
CAPaymentOrderStatus,
//Posting Data
TransactionCurrency,
@Semantics.amount.currencyCode: 'TransactionCurrency'
CANetAmountInTransCurrency,
PaidItemDueDate,
ValueDate,
CAPaymentOrderExpirationDate,
//Bank Data
HouseBank,
HouseBankAccount,
CAPaymentMethod,
//Data for Payment Run
CAMassRunDate,
CAMassRunID,
cast(concat_with_space( concat_with_space( cast(CAMassRunDate as date) , '/', 1), CAMassRunID, 1) as mass_run_date_and_id_kk) as CAMassRunDateAndID,
CAPaymentDocument,
//References
BusinessPartner,
CompanyCode
}
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