I_PaymentDifferenceReason

DDL: I_PAYMENTDIFFERENCEREASON SQL: IFIPAYDIFFREASON Type: view BASIC Package: FINS_FIS_APAR

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)

SourceAliasJoin Type
t053r t053r from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_PaymentDifferenceReasonT _Text $projection.CompanyCode = _Text.CompanyCode and $projection.PaymentDifferenceReason = _Text.PaymentDifferenceReason
[1..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode

Annotations (13)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
};