I_BusPartIndustryKeyText

DDL: I_BUSPARTINDUSTRYKEYTEXT SQL: IBPINDKEYTEXT Type: view BASIC Package: MDC_BUPA_BO

Business Partner Industry Key Text

I_BusPartIndustryKeyText is a Basic CDS View that provides data about "Business Partner Industry Key Text" in SAP S/4HANA. It reads from 1 data source (tb038b) and exposes 5 fields with key fields Language, IndustrySystemType, IndustrySector. It has 1 association to related views. Part of development package MDC_BUPA_BO.

Data Sources (1)

SourceAliasJoin Type
tb038b tb038b from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_BusPartIndustryKey _BusPartIndustryKey $projection.IndustrySystemType = _BusPartIndustryKey.IndustrySystemType and $projection.IndustrySector = _BusPartIndustryKey.IndustrySector

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IBPINDKEYTEXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Business Partner Industry Key Text view
ClientHandling.algorithm #SESSION_VARIABLE view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey IndustrySector view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language spras
KEY IndustrySystemType istype
KEY IndustrySector ind_sector
IndustryKeyDescription text
_BusPartIndustryKey _BusPartIndustryKey
@AbapCatalog.sqlViewName: 'IBPINDKEYTEXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@EndUserText.label: 'Business Partner Industry Key Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@Analytics.dataExtraction.enabled: true
@ObjectModel: {
  representativeKey: 'IndustrySector',
  dataCategory: #TEXT,
  usageType.serviceQuality: #A,
  usageType.sizeCategory : #M,
  usageType.dataClass: #CUSTOMIZING,
  modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
  supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET,
                            #EXTRACTION_DATA_SOURCE , #ANALYTICAL_DIMENSION ]
}
@Metadata.ignorePropagatedAnnotations: true

define view I_BusPartIndustryKeyText
  as select from tb038b
  association [0..1] to I_BusPartIndustryKey as _BusPartIndustryKey on $projection.IndustrySystemType = _BusPartIndustryKey.IndustrySystemType
                                                                    and $projection.IndustrySector = _BusPartIndustryKey.IndustrySector
                                                                
{
      @Semantics.language: true      
  key spras      as Language,
  @ObjectModel.foreignKey.association: '_BusPartIndustryKey'
  key istype     as IndustrySystemType,
  key ind_sector as IndustrySector,
      @Semantics.text: true
      text       as IndustryKeyDescription,
//      text_short as IndustryKeyShortDescription


  _BusPartIndustryKey
}