I_ACMCustPartnerFunction

DDL: I_ACMCUSTPARTNERFUNCTION SQL: IACMCUSTPARTNER Type: view BASIC

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.

Data Sources (2)

SourceAliasJoin Type
kna1 Customer from
tpakd CustomerGroup inner

Annotations (12)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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