C_PaymentmethodTextVHTemp

DDL: C_PAYMENTMETHODTEXTVHTEMP SQL: CPAYTMETHTEXT Type: view CONSUMPTION

C_PaymentmethodTextVHTemp is a Consumption CDS View in SAP S/4HANA. It reads from 1 data source (I_PaymentMethodText) and exposes 5 fields with key fields Country, PaymentMethod, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_PaymentMethodText I_PaymentMethodText from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Country _Country $projection.Country = _Country.Country

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CPAYTMETHTEXT view
ObjectModel.representativeKey PaymentMethod view
VDM.viewType #CONSUMPTION view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
Search.searchable true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Country Country
KEY PaymentMethod PaymentMethod
KEY Language Language
PaymentMethodDescription PaymentMethodDescription Payment Method Description
_Country _Country
@AbapCatalog.sqlViewName: 'CPAYTMETHTEXT'
@ObjectModel.representativeKey: 'PaymentMethod'
@VDM.viewType: #CONSUMPTION
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.dataCategory: #TEXT
@Search.searchable: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER

define view C_PaymentmethodTextVHTemp as select from I_PaymentMethodText

  association [0..1] to I_Country  as _Country  on $projection.Country = _Country.Country
{
      @ObjectModel.foreignKey.association: '_Country'
  key Country,
      @ObjectModel.text.element: 'PaymentMethodDescription'
  key PaymentMethod,
      @Semantics.language: true
  key Language,

      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @EndUserText.label: 'Payment Method Description'
      @Consumption.filter.hidden: true
      PaymentMethodDescription,

      _Country
}        
  
  
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PAYMENTMETHODTEXT"
],
"ASSOCIATED":
[
"I_COUNTRY"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/