I_RblsMgmtBPToCustomer
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)
| Source | Alias | Join Type |
|---|---|---|
| I_BusinessPartner | _BP | from |
| I_CustomerToBusinessPartner | I_CustomerToBusinessPartner | inner |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_BusinessPartner | _BusinessPartner | $projection.BusinessPartner = _BusinessPartner.BusinessPartner |
| [1..1] | I_Customer | _Customer | $projection.Customer = _Customer.Customer |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA