I_ACMCustomerCounterpartyName

DDL: I_ACMCUSTOMERCOUNTERPARTYNAME SQL: IACMCUSTOMERNAME Type: view BASIC

Customer Counter Party Name

I_ACMCustomerCounterpartyName is a Basic CDS View that provides data about "Customer Counter Party Name" in SAP S/4HANA. It reads from 1 data source (kna1) and exposes 2 fields with key field BusinessPartner.

Data Sources (1)

SourceAliasJoin Type
kna1 kna1 from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IACMCUSTOMERNAME view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Customer Counter Party Name view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner kunnr Stock customer
CounterpartyFullName

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_ACMCustomerCounterpartyName.
-- 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: IACMCUSTOMERNAME

CREATE VIEW I_ACMCustomerCounterpartyName AS
SELECT
  kunnr AS BusinessPartner,
  cast(substring(rtrim(replace(concat(name1, concat(' &', name2)), '&', ''),' '),1,80) as md_customer_name) AS CounterpartyFullName
FROM kna1
;