I_PaymentBlockingReasonText

DDL: I_PAYMENTBLOCKINGREASONTEXT SQL: IFIPAYBLOCKREAST Type: view BASIC Package: FINS_FIS_APAR

Payment Blocking Reason - Text

I_PaymentBlockingReasonText is a Basic CDS View that provides data about "Payment Blocking Reason - Text" in SAP S/4HANA. It reads from 1 data source (t008t) and exposes 4 fields with key fields Language, PaymentBlockingReason. It has 1 association to related views. Part of development package FINS_FIS_APAR.

Data Sources (1)

SourceAliasJoin Type
t008t t008t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Payment Blocking Reason - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IFIPAYBLOCKREAST view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PaymentBlockingReason view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY PaymentBlockingReason
PaymentBlockingReasonName
_Language _Language
//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 , #LANGUAGE_DEPENDENT_TEXT ]
@EndUserText.label: 'Payment Blocking Reason - Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@AbapCatalog.sqlViewName: 'IFIPAYBLOCKREAST'
@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'PaymentBlockingReason'
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API

define view I_PaymentBlockingReasonText
  as select from t008t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @Semantics.language:true
  key spras                       as Language,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold:   1.0
  key cast (zahls as farp_dzlspr) as PaymentBlockingReason,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold:   0.8
      @Semantics.text:true
      cast (textl as farp_payment_block_reason_name )  as PaymentBlockingReasonName,
      _Language
};