P_PaytProposalRunMessage
Payment Proposal Run Message
P_PaytProposalRunMessage is a Basic CDS View that provides data about "Payment Proposal Run Message" in SAP S/4HANA. It reads from 1 data source (t100) and exposes 4 fields with key fields Language, SystemMessageNumber. It has 1 association to related views. Part of development package FINS_AP_PP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t100 | t100 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPAYTPRPSLMSG | view | |
| VDM.private | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.representativeKey | SystemMessageNumber | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | sprsl | ||
| KEY | SystemMessageNumber | msgnr | ||
| SystemMessageText | text | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'PPAYTPRPSLMSG'
@VDM.private: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.representativeKey: 'SystemMessageNumber'
define view P_PaytProposalRunMessage
as select from t100
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_Language'
@Semantics.language: true
key sprsl as Language,
key msgnr as SystemMessageNumber,
@Semantics.text: true
text as SystemMessageText,
_Language
}
where
arbgb = 'FZ'
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