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 Vendor no.
PartnerFunction

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_ACMSupPartnerFunction.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IACMSUPPARTNER

CREATE VIEW I_ACMSupPartnerFunction AS
SELECT
  Supplier.lifnr AS Counterparty,
  cast(SupplierGroup.parvw as parvw_unv) AS PartnerFunction
FROM lfa1 AS Supplier
INNER JOIN tpakl AS SupplierGroup ON /* join condition not captured in parsed metadata */
;