I_BusinessPartnerReplication
Replication of a Business Partner
I_BusinessPartnerReplication is a Composite CDS View that provides data about "Replication of a Business Partner" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner) and exposes 6 fields with key field BusinessPartner.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BusinessPartner | I_BusinessPartner | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Replication of a Business Partner | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | BusinessPartner | ||
| BusinessPartnerName | BusinessPartnerName | |||
| BusinessPartnerFullName | BusinessPartnerFullName | |||
| BusinessPartnerCategory | BusinessPartnerCategory | |||
| IsBusinessPurposeCompleted | IsBusinessPurposeCompleted | |||
| AuthorizationGroup | AuthorizationGroup |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Replication of a Business Partner'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #XXL,
dataClass: #MASTER
}
@VDM.viewType: #COMPOSITE
define view entity I_BusinessPartnerReplication
as select from I_BusinessPartner
{
key BusinessPartner,
BusinessPartnerName,
BusinessPartnerFullName,
BusinessPartnerCategory,
//for access controls
@UI.hidden: true
IsBusinessPurposeCompleted,
@UI.hidden: true
AuthorizationGroup
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUSINESSPARTNER"
],
"ASSOCIATED":
[],
"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