I_BUSINESSPARTNERALIAS

CDS View

Business Partner Alias

I_BUSINESSPARTNERALIAS is a CDS View in S/4HANA. Business Partner Alias. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
A_BusinessPartnerAlias view from BASIC Additional Names
I_BusinessPartnerAliasTP view_entity from TRANSACTIONAL Business Partner Alias - TP
@AbapCatalog: { sqlViewName: 'IBPALIAS',
                compiler.compareFilter: true,
                buffering.status: #NOT_ALLOWED
              }

@ObjectModel: { usageType: { dataClass: #MASTER,
                             serviceQuality: #A,
                             sizeCategory: #XL
                            },
                representativeKey: 'BPAliasPositionNumber',
                sapObjectNodeType.name: 'BusinessPartnerAlias',
                supportedCapabilities: [  #ANALYTICAL_DIMENSION,
                                          #CDS_MODELING_DATA_SOURCE,
                                          #CDS_MODELING_ASSOCIATION_TARGET,
                                          #SQL_DATA_SOURCE,
                                          #EXTRACTION_DATA_SOURCE ],
                modelingPattern: #ANALYTICAL_DIMENSION                                       
              }
@Analytics: { dataExtraction.enabled: true,
              dataCategory: #DIMENSION,
              internalName: #LOCAL
            }
@Metadata: { allowExtensions:true, 
             ignorePropagatedAnnotations: true // For C1-Release

           }            
@AccessControl: { personalData.blocking: #REQUIRED,
                  authorizationCheck: #MANDATORY
                }
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@EndUserText.label: 'Business Partner Alias'


define view I_BusinessPartnerAlias
  as select from bkk21
  association [1]    to I_BusinessPartner         as _BusinessPartner         on  $projection.BusinessPartner                = _BusinessPartner.BusinessPartner      // <--- to inherit authorizations in DCL

  association [0..1] to I_BPFinancialServicesExtn as _BPFinancialServicesExtn on  $projection.BusinessPartner                = _BPFinancialServicesExtn.BusinessPartner // <--- to inherit authorizations in DCL

{
  @ObjectModel.foreignKey.association: '_BusinessPartner'
  key partner       as BusinessPartner,
  key alposnr       as BPAliasPositionNumber,
      alname        as BusinessPartnerAliasName,
      
      _BusinessPartner,
      _BPFinancialServicesExtn

}