I_BUSINESSPARTNERALIAS
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)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_BusinessPartnerAlias | view | from | BASIC | Additional Names |
| I_BusinessPartnerAliasTP | view_entity | from | TRANSACTIONAL | Additional Names - TP |
@AbapCatalog.sqlViewName: 'IBPALIAS'
@EndUserText.label: 'Business Partner Alias'
@ObjectModel.usageType.sizeCategory: #XL
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AccessControl.personalData.blocking: #REQUIRED
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #MANDATORY
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'BPAliasPositionNumber'
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #B
@Metadata.allowExtensions: true
@VDM.viewType: #BASIC
@Metadata.ignorePropagatedAnnotations: true //For C1 Release
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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"BKK21"
],
"ASSOCIATED":
[
"I_BPFINANCIALSERVICESEXTN",
"I_BUSINESSPARTNER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/