I_BusPartCategoryText

DDL: I_BUSPARTCATEGORYTEXT SQL: IBPCATEGORYTXT Type: view COMPOSITE Package: MDC_BUPA_BO

Business Partner Category - Text

I_BusPartCategoryText is a Composite CDS View that provides data about "Business Partner Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields BusinessPartnerCategory, Language. It has 1 association to related views. Part of development package MDC_BUPA_BO.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_BusPartCategory _CategoryValueHelp $projection.BusinessPartnerCategory = _CategoryValueHelp.BusinessPartnerCategory

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IBPCATEGORYTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey BusinessPartnerCategory view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Business Partner Category - Text view
Search.searchable true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartnerCategory
KEY Language ddlanguage
BusinessPartnerCategoryText ddtext Business Partner Category Description
DomainValue domvalue_l
_CategoryValueHelp _CategoryValueHelp
@AbapCatalog.sqlViewName: 'IBPCATEGORYTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
  viewType: #COMPOSITE,
  lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel: {
  representativeKey: 'BusinessPartnerCategory',
  dataCategory: #TEXT,
  usageType.serviceQuality: #A,
  usageType.sizeCategory : #L,
  usageType.dataClass: #META,
  modelingPattern: #LANGUAGE_DEPENDENT_TEXT,
  supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #EXTRACTION_DATA_SOURCE ]
}
@Analytics.dataExtraction.enabled: true 
@Analytics.internalName: #LOCAL
@Metadata.ignorePropagatedAnnotations:true
@EndUserText.label: 'Business Partner Category - Text'
@Search.searchable: true
define view I_BusPartCategoryText 
  as select from dd07t
  association [0..1] to I_BusPartCategory as _CategoryValueHelp on $projection.BusinessPartnerCategory = _CategoryValueHelp.BusinessPartnerCategory
{
      @ObjectModel.foreignKey.association: '_CategoryValueHelp'
  key cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as bu_type )    as BusinessPartnerCategory,
       @Semantics.language: true
  key ddlanguage    as Language,
      @Semantics.text: true
      @EndUserText.label: 'Business Partner Category Description'
      ddtext  as BusinessPartnerCategoryText,
      @Search.defaultSearchElement: true
      @Consumption.hidden: true
      domvalue_l as DomainValue,
      
      _CategoryValueHelp   
}
where
  domname = 'BU_TYPE'