I_PaymentRejectionFormat
Payment Rejection Format
I_PaymentRejectionFormat is a Basic CDS View that provides data about "Payment Rejection Format" in SAP S/4HANA. It reads from 1 data source (far_ipf_c_rjctn) and exposes 4 fields with key fields ElectronicBankStatementFormat, ElectronicBankStmntLongFormat, PaymentTransactionTypeGroup. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| far_ipf_c_rjctn | far_ipf_c_rjctn | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PaymentRejectionFormatText | _Text | $projection.ElectronicBankStatementFormat = _Text.ElectronicBankStatementFormat and $projection.ElectronicBankStmntLongFormat = _Text.ElectronicBankStmntLongFormat and $projection.PaymentTransactionTypeGroup = _Text.PaymentTransactionTypeGroup |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPMNTRJCTNFRMT | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Payment Rejection Format | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ElectronicBankStatementFormat | bankstatement_format | ||
| KEY | ElectronicBankStmntLongFormat | format_name | ||
| KEY | PaymentTransactionTypeGroup | business_transaction_code_list | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IPMNTRJCTNFRMT'
@VDM.viewType: #BASIC
@AbapCatalog.buffering.status: #NOT_ALLOWED
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Payment Rejection Format'
define view I_PaymentRejectionFormat as select from far_ipf_c_rjctn
association [0..*] to I_PaymentRejectionFormatText as _Text on $projection.ElectronicBankStatementFormat = _Text.ElectronicBankStatementFormat
and $projection.ElectronicBankStmntLongFormat = _Text.ElectronicBankStmntLongFormat
and $projection.PaymentTransactionTypeGroup = _Text.PaymentTransactionTypeGroup
{
key bankstatement_format as ElectronicBankStatementFormat,
key format_name as ElectronicBankStmntLongFormat,
key business_transaction_code_list as PaymentTransactionTypeGroup,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"FAR_IPF_C_RJCTN"
],
"ASSOCIATED":
[
"I_PAYMENTREJECTIONFORMATTEXT"
],
"BASE":
[],
"VERSION":0
}
}*/
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