P_CADocumentPaytInfoPaymentRun
Payment Info for Payment Run
P_CADocumentPaytInfoPaymentRun is a Composite CDS View that provides data about "Payment Info for Payment Run" in SAP S/4HANA. It reads from 1 data source (I_CAPaymentRunHeader) and exposes 12 fields with key fields CADocumentNumber, CAMassRunDate, CAMassRunID, CAIntPaymentIdentification, CAIntAddlPaymentIdentification.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CAPaymentRunHeader | I_CAPaymentRunHeader | from |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Payment Info for Payment Run | 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 (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CADocumentNumber | CADocumentNumber | ||
| KEY | CAMassRunDate | CAMassRunDate | ||
| KEY | CAMassRunID | CAMassRunID | ||
| KEY | CAIntPaymentIdentification | CAIntPaymentIdentification | ||
| KEY | CAIntAddlPaymentIdentification | CAIntAddlPaymentIdentification | ||
| CAPaymentMethod | CAPaymentMethod | |||
| CAMassRunDateAndID | ||||
| HouseBank | HouseBank | |||
| HouseBankAccount | HouseBankAccount | |||
| LastName | LastName | |||
| FirstName | FirstName | |||
| CAPaymentDocumentReference | CAPaymentDocumentReference |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Payment Info for Payment Run'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #P,
sizeCategory: #XXL,
dataClass: #TRANSACTIONAL
}
@VDM.viewType: #COMPOSITE
@VDM.private: true
define view entity P_CADocumentPaytInfoPaymentRun as select from I_CAPaymentRunHeader {
key CADocumentNumber,
key CAMassRunDate,
key CAMassRunID,
key CAIntPaymentIdentification,
key CAIntAddlPaymentIdentification,
CAPaymentMethod,
cast (concat_with_space( concat_with_space( cast(CAMassRunDate as date) , '/', 1), CAMassRunID, 1) as mass_run_date_and_id_kk) as CAMassRunDateAndID,
//House Bank
HouseBank,
HouseBankAccount,
//Payer Info
LastName,
FirstName,
//References
CAPaymentDocumentReference
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CAPAYMENTRUNHEADER"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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