I_ACMSupPartnerFunction

DDL: I_ACMSUPPARTNERFUNCTION SQL: IACMSUPPARTNER Type: view BASIC

Link Supplier to Partner Function

I_ACMSupPartnerFunction is a Basic CDS View that provides data about "Link Supplier to Partner Function" in SAP S/4HANA. It reads from 2 data sources (lfa1, tpakl) and exposes 2 fields with key field Counterparty.

Data Sources (2)

SourceAliasJoin Type
lfa1 Supplier from
tpakl SupplierGroup inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IACMSUPPARTNER 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 Supplier to Partner Function view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY Counterparty lfa1 lifnr
PartnerFunction
@AbapCatalog.sqlViewName: 'IACMSUPPARTNER'
@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 Supplier to Partner Function'
@AccessControl.personalData.blocking: #NOT_REQUIRED
define view I_ACMSupPartnerFunction as select from lfa1 as Supplier
    inner join tpakl as SupplierGroup on Supplier.ktokk = SupplierGroup.ktokk
{
    key Supplier.lifnr as Counterparty,
    cast(SupplierGroup.parvw as parvw_unv) as PartnerFunction
}
where
  Supplier.loevm is initial
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"LFA1",
"TPAKL"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/