I_PaytSystToAliasTypeValueHelp

DDL: I_PAYTSYSTTOALIASTYPEVALUEHELP Type: view_entity BASIC Package: BF_PAYT_SYST

VH for the Alias types in Payment system

I_PaytSystToAliasTypeValueHelp is a Basic CDS View that provides data about "VH for the Alias types in Payment system" in SAP S/4HANA. It reads from 3 data sources (t005t, I_PaytSystToAliasType, payt_syst_cntry) and exposes 8 fields with key fields PaymentSystem, AliasType. It has 2 associations to related views. Part of development package BF_PAYT_SYST.

Data Sources (3)

SourceAliasJoin Type
t005t Countries inner
I_PaytSystToAliasType I_PaytSystToAliasType from
payt_syst_cntry PaytSystCntry inner

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_AliasType _AliasType $projection.AliasType = _AliasType.AliasType
[0..1] I_PaymentSystemText _PaymentSystemText _PaymentSystemText.Language = $session.system_language and $projection.PaymentSystem = _PaymentSystemText.PaymentSystem

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label VH for the Alias types in Payment system view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey PaymentSystem view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY PaymentSystem I_PaytSystToAliasType PaymentSystem
KEY AliasType I_PaytSystToAliasType AliasType
AliasTypeText _AliasType AliasTypeText
PaymentSystemText _PaymentSystemText PaymentSystemText
Country payt_syst_cntry payt_syst_cntry
CountryText t005t landx
_AliasType _AliasType
_PaymentSystemText _PaymentSystemText
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'VH for the Alias types in Payment system'
@ObjectModel: { dataCategory: #VALUE_HELP,
                representativeKey: 'PaymentSystem',
                usageType:{ serviceQuality: #A,
                            sizeCategory: #S,
                            dataClass: #CUSTOMIZING },
                supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY],
                modelingPattern: #VALUE_HELP_PROVIDER } 
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@Consumption.ranked: true
define view entity I_PaytSystToAliasTypeValueHelp
  as select from I_PaytSystToAliasType
    inner join   payt_syst_cntry as PaytSystCntry on I_PaytSystToAliasType.PaymentSystem = PaytSystCntry.payment_system 
    inner join   t005t as Countries on Countries.spras = $session.system_language and Countries.land1 = PaytSystCntry.payt_syst_cntry
    
    association [0..1] to I_AliasType as _AliasType on $projection.AliasType = _AliasType.AliasType
    association [0..1] to I_PaymentSystemText as _PaymentSystemText on _PaymentSystemText.Language = $session.system_language and $projection.PaymentSystem = _PaymentSystemText.PaymentSystem
{
    
      @ObjectModel.text.element: ['PaymentSystemText']
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.7
      @Search.ranking: #HIGH
  key I_PaytSystToAliasType.PaymentSystem,

      @ObjectModel.text.element: ['AliasTypeText']
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.7
      @Search.ranking: #HIGH
  key I_PaytSystToAliasType.AliasType,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.7
      @Search.ranking: #LOW
      _AliasType.AliasTypeText,
  
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.7
      @Search.ranking: #LOW
      _PaymentSystemText.PaymentSystemText,

      @ObjectModel.text.element: ['CountryText']
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.7
      @Search.ranking: #HIGH
      PaytSystCntry.payt_syst_cntry as Country,

      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.7
      @Search.ranking: #LOW      
      Countries.landx as CountryText,
      
      _AliasType,
      _PaymentSystemText
  
}