I_BusPartCategory

DDL: I_BUSPARTCATEGORY SQL: IBPCATEGORY Type: view BASIC

Business Partner Category

I_BusPartCategory is a Basic CDS View (Dimension) that provides data about "Business Partner Category" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field BusinessPartnerCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusPartCategoryText _Text $projection.BusinessPartnerCategory = _Text.BusinessPartnerCategory

Annotations (19)

NameValueLevelField
AbapCatalog.sqlViewName IBPCATEGORY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
Search.searchable true view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
EndUserText.label Business Partner Category view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.sapObjectNodeType.name BusinessPartnerCategory view
ObjectModel.representativeKey BusinessPartnerCategory view
Analytics.dataExtraction.enabled true view
Analytics.dataCategory #DIMENSION view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerCategory Category
DomainValue domvalue_l
_Text _Text
@AbapCatalog.sqlViewName: 'IBPCATEGORY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@Search.searchable: true
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@EndUserText.label: 'Business Partner Category'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.sapObjectNodeType.name: 'BusinessPartnerCategory'
@ObjectModel.representativeKey: 'BusinessPartnerCategory'
@Analytics.dataExtraction.enabled: true
@Analytics.dataCategory: #DIMENSION
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #CDS_MODELING_ASSOCIATION_TARGET,
                                     #ANALYTICAL_DIMENSION,
                                     #EXTRACTION_DATA_SOURCE]
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION 
@Analytics.internalName: #LOCAL
@Metadata.ignorePropagatedAnnotations: true
define view I_BusPartCategory 
  as select from dd07l
  association [0..*] to I_BusPartCategoryText as _Text on $projection.BusinessPartnerCategory = _Text.BusinessPartnerCategory
{
      @ObjectModel.text.association: '_Text'
      @EndUserText.label: 'Category'
      @Consumption.filter.hidden: true
      //   key dd07l.domvalue_l,

      key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bu_type ) as BusinessPartnerCategory,
  
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      @Consumption.hidden: true
      domvalue_l as DomainValue,
      
      _Text

}
where
  domname = 'BU_TYPE'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_BUSPARTCATEGORYTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/