I_PaymentDifferenceReason
Payment Difference Reason
I_PaymentDifferenceReason is a Basic CDS View (Dimension) that provides data about "Payment Difference Reason" in SAP S/4HANA. It reads from 1 data source (t053r) and exposes 6 fields with key fields CompanyCode, PaymentDifferenceReason. It has 2 associations to related views. Part of development package FINS_FIS_APAR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t053r | t053r | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_PaymentDifferenceReasonT | _Text | $projection.CompanyCode = _Text.CompanyCode and $projection.PaymentDifferenceReason = _Text.PaymentDifferenceReason |
| [1..1] | I_CompanyCode | _CompanyCode | $projection.CompanyCode = _CompanyCode.CompanyCode |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| EndUserText.label | Payment Difference Reason | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AbapCatalog.sqlViewName | IFIPAYDIFFREASON | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | PaymentDifferenceReason | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | |||
| KEY | PaymentDifferenceReason | |||
| IsDisputed | xstrp | |||
| PaytDiffIsChargedToSprtGLAcct | xausb | |||
| _Text | _Text | |||
| _CompanyCode | _CompanyCode |
//Documentation about annotations can be found at http://help.sap.com searching for CDS annotations //Inserted by VDM CDS Suite Plugin
@ObjectModel.usageType.sizeCategory: #M //Inserted by VDM CDS Suite Plugin
@ObjectModel.usageType.serviceQuality: #A //Inserted by VDM CDS Suite Plugin
@ObjectModel.usageType.dataClass: #CUSTOMIZING //Inserted by VDM CDS Suite Plugin
@ObjectModel.supportedCapabilities: [ #CDS_MODELING_DATA_SOURCE , #CDS_MODELING_ASSOCIATION_TARGET , #SQL_DATA_SOURCE ]
@EndUserText.label: 'Payment Difference Reason'
@Analytics: { dataCategory: #DIMENSION }
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIPAYDIFFREASON'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'PaymentDifferenceReason'
@Metadata.ignorePropagatedAnnotations: true
define view I_PaymentDifferenceReason
as select from t053r
association [0..*] to I_PaymentDifferenceReasonT as _Text on $projection.CompanyCode = _Text.CompanyCode
and $projection.PaymentDifferenceReason = _Text.PaymentDifferenceReason
association [1..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
{
@ObjectModel.foreignKey.association: '_CompanyCode'
key cast (bukrs as fis_bukrs) as CompanyCode,
@ObjectModel.text.association: '_Text'
key cast (rstgr as farp_rstgr) as PaymentDifferenceReason,
xstrp as IsDisputed,
xausb as PaytDiffIsChargedToSprtGLAcct,
_Text,
_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