I_BusinessPartnerAddressType

DDL: I_BUSINESSPARTNERADDRESSTYPE SQL: IBPADDRTYPE Type: view BASIC Package: MDC_BUPA_BO

Business Partner Address Types

I_BusinessPartnerAddressType is a Basic CDS View that provides data about "Business Partner Address Types" in SAP S/4HANA. It reads from 1 data source (tb009) and exposes 2 fields with key field AddressType. It has 1 association to related views. Part of development package MDC_BUPA_BO.

Data Sources (1)

SourceAliasJoin Type
tb009 tb009 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_BusinessPartnerAddressTypeT _Text $projection.AddressType = _Text.AddressType

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IBPADDRTYPE view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.sapObjectNodeType.name BusinessPartnerAddressUsage view
Search.searchable true view
VDM.viewType #BASIC view
EndUserText.label Business Partner Address Types view
Metadata.ignorePropagatedAnnotations true view
Analytics.dataExtraction.enabled true view
ObjectModel.representativeKey AddressType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #NONE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AddressType adr_kind
_Text _Text
@AbapCatalog.sqlViewName: 'IBPADDRTYPE'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.sapObjectNodeType.name: 'BusinessPartnerAddressUsage'
@Search.searchable: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Business Partner Address Types'
@Metadata.ignorePropagatedAnnotations: true
@Analytics.dataExtraction.enabled: true
@ObjectModel: {
  representativeKey: 'AddressType',
  usageType.serviceQuality: #A,
  usageType.sizeCategory : #M,
  usageType.dataClass: #CUSTOMIZING,
  modelingPattern: #NONE,
  supportedCapabilities: [#CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET ,
                           #EXTRACTION_DATA_SOURCE ]
}
                                     
define view I_BusinessPartnerAddressType
  as select from tb009
  association [0..*] to I_BusinessPartnerAddressTypeT as _Text on $projection.AddressType = _Text.AddressType   
{
      @ObjectModel.text.association: '_Text'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key adr_kind as AddressType,
      //      xmult

  _Text
}