I_ACMCustPartnerFunction
Link Customer to Partner Function
I_ACMCustPartnerFunction is a Basic CDS View that provides data about "Link Customer to Partner Function" in SAP S/4HANA. It reads from 2 data sources (kna1, tpakd) and exposes 2 fields with key field Counterparty.
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IACMCUSTPARTNER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| EndUserText.label | Link Customer to Partner Function | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Counterparty | kna1 | kunnr | |
| PartnerFunction |
@AbapCatalog.sqlViewName: 'IACMCUSTPARTNER'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.type: #INHERITED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #XL
@EndUserText.label: 'Link Customer to Partner Function'
@AccessControl.personalData.blocking: #NOT_REQUIRED
define view I_ACMCustPartnerFunction as select from kna1 as Customer
inner join tpakd as CustomerGroup on Customer.ktokd = CustomerGroup.ktokd
{
key Customer.kunnr as Counterparty,
cast( CustomerGroup.parvw as parvw_unv) as PartnerFunction
}
where
Customer.loevm is initial
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