I_ACMCustTxt

DDL: I_ACMCUSTTXT SQL: IACMCUSTNAME Type: view BASIC

Customer Counter Party Name - Text

I_ACMCustTxt is a Basic CDS View that provides data about "Customer Counter Party Name - Text" in SAP S/4HANA. It reads from 1 data source (kna1) and exposes 3 fields with key fields BusinessPartner, Language.

Data Sources (1)

SourceAliasJoin Type
kna1 kna1 from

Annotations (11)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BusinessPartner kunnr
KEY Language
CounterpartyFullName
@AbapCatalog.sqlViewName: 'IACMCUSTNAME'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Customer Counter Party Name - Text'
@VDM.viewType: #BASIC
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.dataCategory: #TEXT
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_ACMCustTxt
  as select from kna1
{
  key kunnr                                                                                                       as BusinessPartner,
      @Semantics.language: true
  key cast('E' as spras)                                                                                          as Language,
      @Semantics.text: true
      cast(substring(rtrim(replace(concat(name1, concat(' &@', name2)), '&@', ''),' '),1,80) as md_customer_name) as CounterpartyFullName
}