I_CAContractPartner
Contract Partner
I_CAContractPartner is a Composite CDS View that provides data about "Contract Partner" in SAP S/4HANA. It reads from 1 data source (I_BusinessPartner_to_BP_Role) and exposes 10 fields with key field BusinessPartner. It has 2 associations to related views. Part of development package FKKB.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_BusinessPartner_to_BP_Role | I_BusinessPartner_to_BP_Role | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_BusPartCategory | _BusinessPartnerCategory | $projection.BusinessPartnerCategory = _BusinessPartnerCategory.BusinessPartnerCategory |
| [0..1] | I_FormOfAddress | _FormOfAddress | $projection.FormOfAddress = _FormOfAddress.FormOfAddress |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| EndUserText.label | Contract Partner | view | |
| ObjectModel.representativeKey | BusinessPartner | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| VDM.viewType | #COMPOSITE | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BusinessPartner | BusinessPartner | ||
| BusinessPartnerRole | BusinessPartnerRole | |||
| AuthorizationGroup | AuthorizationGroup | |||
| FormOfAddress | _BusinessPartner | FormOfAddress | ||
| BusinessPartnerFullName | _BusinessPartner | BusinessPartnerFullName | ||
| CreationDate | _BusinessPartner | CreationDate | ||
| BusinessPartnerCategory | _BusinessPartner | BusinessPartnerCategory | ||
| _BusinessPartnerCategory | _BusinessPartnerCategory | |||
| _FormOfAddress | _FormOfAddress | |||
| _BusinessPartner | _BusinessPartner |
@AccessControl: { authorizationCheck: #MANDATORY,
personalData: { blocking: #REQUIRED,
blockingIndicator: ['_BusinessPartner.IsBusinessPurposeCompleted'] } }
@EndUserText.label: 'Contract Partner'
@ObjectModel: { representativeKey: 'BusinessPartner',
usageType: { dataClass: #MASTER,
serviceQuality: #B,
sizeCategory: #XL } }
@VDM.viewType: #COMPOSITE
@Consumption.dbHints: [ 'USE_HEX_PLAN' ]
define view entity I_CAContractPartner
as select from I_BusinessPartner_to_BP_Role
association [0..1] to I_BusPartCategory as _BusinessPartnerCategory on $projection.BusinessPartnerCategory = _BusinessPartnerCategory.BusinessPartnerCategory
association [0..1] to I_FormOfAddress as _FormOfAddress on $projection.FormOfAddress = _FormOfAddress.FormOfAddress
{
key BusinessPartner,
BusinessPartnerRole,
AuthorizationGroup,
@ObjectModel.text.association: '_FormOfAddress'
_BusinessPartner.FormOfAddress as FormOfAddress,
_BusinessPartner.BusinessPartnerFullName,
_BusinessPartner.CreationDate,
@ObjectModel.text.association: '_BusinessPartnerCategory'
_BusinessPartner.BusinessPartnerCategory as BusinessPartnerCategory,
// Associations
_BusinessPartnerCategory,
_FormOfAddress,
_BusinessPartner
}
where
BusinessPartnerRole = 'MKK'
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