I_LCMEntityTypeByBPRoleText

DDL: I_LCMENTITYTYPEBYBPROLETEXT SQL: ILCMBPROLETYPT Type: view BASIC Package: VDM_LCM_COMMON

Entity Type by Bus Partner Role - Text

I_LCMEntityTypeByBPRoleText is a Basic CDS View that provides data about "Entity Type by Bus Partner Role - Text" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartnerRoleText) and exposes 2 fields with key fields BusinessPartnerRole, Language. Part of development package VDM_LCM_COMMON.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartnerRoleText I_BusinessPartnerRoleText from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ILCMBPROLETYPT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Entity Type by Bus Partner Role - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey BusinessPartnerRole view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerRole BusinessPartnerRole
KEY Language Language
@AbapCatalog.sqlViewName: 'ILCMBPROLETYPT'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Entity Type by Bus Partner Role - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S

@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'BusinessPartnerRole'
//@VDM.lifecycle.contract.type: #SAP_INTERNAL_API


@Search.searchable: true
define view I_LCMEntityTypeByBPRoleText
  as select from I_BusinessPartnerRoleText
{

  key BusinessPartnerRole          as BusinessPartnerRole,

      @Semantics.language: true
  key Language                     as Language,

      @Semantics.text: true            -- identifies the text field
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Search.fuzzinessThreshold: 0.8
      @EndUserText.label: 'Business Partner Role Text'
      @EndUserText.quickInfo: 'Business Partner Role Text'
      BusinessPartnerRoleShortName as BusinessPartnerRoleShortName

}