I_RblsMgmtBPToCustomer

DDL: I_RBLSMGMTBPTOCUSTOMER Type: view_entity COMPOSITE

Business Partner to Customer Mapping

I_RblsMgmtBPToCustomer is a Composite CDS View that provides data about "Business Partner to Customer Mapping" in SAP S/4HANA. It reads from 2 data sources (I_BusinessPartner, I_CustomerToBusinessPartner) and exposes 4 fields with key field BusinessPartner. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_BusinessPartner _BP from
I_CustomerToBusinessPartner I_CustomerToBusinessPartner inner

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_BusinessPartner _BusinessPartner $projection.BusinessPartner = _BusinessPartner.BusinessPartner
[1..1] I_Customer _Customer $projection.Customer = _Customer.Customer

Annotations (6)

NameValueLevelField
EndUserText.label Business Partner to Customer Mapping view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner I_BusinessPartner BusinessPartner
Customer I_CustomerToBusinessPartner Customer
_Customer _Customer
_BusinessPartner _BusinessPartner
@EndUserText.label: 'Business Partner to Customer Mapping'
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@ObjectModel.usageType:{ serviceQuality: #X,
                         sizeCategory: #L,
                         dataClass: #MASTER
                        }
@VDM: { viewType: #COMPOSITE }                        
define view entity I_RblsMgmtBPToCustomer
  as select from I_BusinessPartner as _BP
    inner join   I_CustomerToBusinessPartner on _BP.BusinessPartnerUUID = I_CustomerToBusinessPartner.BusinessPartnerUUID
    
  association [1..1] to I_BusinessPartner as _BusinessPartner on $projection.BusinessPartner = _BusinessPartner.BusinessPartner
  association [1..1] to I_Customer        as _Customer        on $projection.Customer = _Customer.Customer
{
  key _BP.BusinessPartner                  as BusinessPartner,
      I_CustomerToBusinessPartner.Customer as Customer,

      _Customer,
      _BusinessPartner
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUSINESSPARTNER",
"I_CUSTOMERTOBUSINESSPARTNER"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNER",
"I_CUSTOMER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/