I_BusinessPartnerTypeText

DDL: I_BUSINESSPARTNERTYPETEXT SQL: BUPA_TYPE_TEXT Type: view BASIC

Business Partner Type - Text

I_BusinessPartnerTypeText is a Basic CDS View that provides data about "Business Partner Type - Text" in SAP S/4HANA. It reads from 1 data source (tb004t) and exposes 3 fields with key fields Language, BusinessPartnerType.

Data Sources (1)

SourceAliasJoin Type
tb004t tb004t from

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName BUPA_TYPE_TEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BusinessPartnerType view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Analytics.dataExtraction.enabled true view
EndUserText.label Business Partner Type - Text view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY BusinessPartnerType bpkind
BusinessPartnerTypeDesc text40 Business Partner Description
@AbapCatalog.sqlViewName: 'BUPA_TYPE_TEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
  viewType: #BASIC,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
  representativeKey: 'BusinessPartnerType',
  dataCategory: #TEXT,
  modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
  supportedCapabilities: [ #EXTRACTION_DATA_SOURCE,#LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ]
}
@Analytics.dataExtraction.enabled: true
@EndUserText.label: 'Business Partner Type - Text'
@Metadata.ignorePropagatedAnnotations: true
define view I_BusinessPartnerTypeText
  as select from tb004t
{
      @Semantics.language: true
  key spras  as Language,
  key bpkind as BusinessPartnerType,
      @Semantics.text: true
      @EndUserText.label: 'Business Partner Description'
      text40 as BusinessPartnerTypeDesc
}