P_RepetitiveCode
Payment Request
P_RepetitiveCode is a Basic CDS View that provides data about "Payment Request" in SAP S/4HANA. It reads from 1 data source (fibl_rpcode) and exposes 7 fields with key fields PayingCompanyCode, HouseBank, RepetitiveCode. Part of development package FINS_FIS_CASH.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fibl_rpcode | fibl_rpcode | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| VDM.private | true | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | PREPETITIVECODE | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropogatedAnnotations | true | view | |
| AbapCatalog.preserveKey | true | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PayingCompanyCode | bukrs | ||
| KEY | HouseBank | hbkid | ||
| KEY | RepetitiveCode | rpcode | ||
| HouseBankAccount | hktid | |||
| TargetCompanyCode | pbukr | |||
| Partner | partn | |||
| PartnerAccount | parta |
@VDM.private: true
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'PREPETITIVECODE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropogatedAnnotations: true
@AbapCatalog.preserveKey:true
define view P_RepetitiveCode
as select from fibl_rpcode
{
key bukrs as PayingCompanyCode,
key hbkid as HouseBank,
key rpcode as RepetitiveCode,
hktid as HouseBankAccount,
pbukr as TargetCompanyCode,
partn as Partner,
parta as PartnerAccount
}
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