A_BusinessPartnerAlias

DDL: A_BUSINESSPARTNERALIAS SQL: ABPALIAS Type: view BASIC Package: FS_BP_ODATA

Additional Names

A_BusinessPartnerAlias is a Basic CDS View that provides data about "Additional Names" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartnerAlias) and exposes 5 fields with key fields BusinessPartner, BPAliasPositionNumber. It has 1 association to related views. Part of development package FS_BP_ODATA.

Data Sources (1)

SourceAliasJoin Type
I_BusinessPartnerAlias I_BusinessPartnerAlias from

Associations (1)

CardinalityTargetAliasCondition
[0..1] A_BPFinancialServicesExtn _BPFinancialServicesExtn $projection.BusinessPartner = _BPFinancialServicesExtn.BusinessPartner

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ABPALIAS view
EndUserText.label Additional Names view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner BusinessPartner
KEY BPAliasPositionNumber BPAliasPositionNumber
BusinessPartnerAliasName BusinessPartnerAliasName
_BPFinancialServicesExtn _BPFinancialServicesExtn
_BusinessPartner _BusinessPartner
@AbapCatalog.sqlViewName: 'ABPALIAS'
@EndUserText.label: 'Additional Names'

@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #BASIC
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #XL
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.createEnabled:true
@ObjectModel.updateEnabled:true
@ObjectModel.deleteEnabled:true
@VDM.lifecycle.contract.type:#PUBLIC_REMOTE_API
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]

define view A_BusinessPartnerAlias
  as select from I_BusinessPartnerAlias
  association[1..1] to A_BusinessPartner  as _BusinessPartner on $projection.BusinessPartner = _BusinessPartner.BusinessPartner
  association [0..1] to A_BPFinancialServicesExtn  as _BPFinancialServicesExtn   on $projection.BusinessPartner = _BPFinancialServicesExtn.BusinessPartner // <--- to inherit authorizations in DCL  

{
  key BusinessPartner,
  key BPAliasPositionNumber,
      BusinessPartnerAliasName,
      /* Associations */
      @Consumption.hidden:true
      _BPFinancialServicesExtn,
      @Consumption.hidden:true
      _BusinessPartner
}