I_BusPartDataOriginTypeText

DDL: I_BUSPARTDATAORIGINTYPETEXT SQL: BUPA_ORIGINTYPET Type: view BASIC Package: MDC_BUPA_BO

BP Data Origin Type Descriptions

I_BusPartDataOriginTypeText is a Basic CDS View that provides data about "BP Data Origin Type Descriptions" in SAP S/4HANA. It reads from 1 data source (tb006) and exposes 3 fields with key fields Language, BusinessPartnerDataOriginType. Part of development package MDC_BUPA_BO.

Data Sources (1)

SourceAliasJoin Type
tb006 tb006 from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName BUPA_ORIGINTYPET view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BusinessPartnerDataOriginType view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label BP Data Origin Type Descriptions view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY BusinessPartnerDataOriginType source
BusPartDataOriginTypeText textshort Description
@AbapCatalog.sqlViewName: 'BUPA_ORIGINTYPET'
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED 
@ObjectModel.representativeKey: 'BusinessPartnerDataOriginType'
@ObjectModel.dataCategory:#TEXT
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'BP Data Origin Type Descriptions'
define view I_BusPartDataOriginTypeText
  as select from tb006
{ 
      @Semantics.language: true
  key spras     as Language,
  key source    as BusinessPartnerDataOriginType,
      @Semantics.text: true
      @EndUserText.label: 'Description'
      textshort as BusPartDataOriginTypeText
      // textlong

}