I_CUSTOMERACCOUNTGROUPTEXT

CDS View

Customer Account Group - Text

I_CUSTOMERACCOUNTGROUPTEXT is a CDS View in S/4HANA. Customer Account Group - Text. 2 CDS views read from this table.

CDS Views using this table (2)

ViewTypeJoinVDMDescription
A_CustomerAccountGroupText view from BASIC Customer Account Group - Text
C_CN_CustAcctGrpVH view from CONSUMPTION Customer Account Group Value Help
@AbapCatalog.sqlViewName: 'ICUSTACCTGRPTXT'

@AccessControl.authorizationCheck:#CHECK
 
@Analytics: {
    //dataCategory: #TEXT,

    dataExtraction: {
       enabled: true,
       delta.changeDataCapture: {
          automatic : true
       }
    }
}

@ClientHandling.algorithm: #SESSION_VARIABLE

@EndUserText.label: 'Customer Account Group - Text'//'Customer Account Group'


@Metadata.ignorePropagatedAnnotations: true

@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #CDS_MODELING_ASSOCIATION_TARGET,
                                     #LANGUAGE_DEPENDENT_TEXT,
                                     #EXTRACTION_DATA_SOURCE]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT                                     
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CustomerAccountGroup'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@VDM.viewType: #BASIC

define view I_CustomerAccountGroupText
  as select from t077x
  
  association [1..1] to I_CustomerAccountGroup   as  _CustomerAccountGroup  on  _CustomerAccountGroup.CustomerAccountGroup =  $projection.CustomerAccountGroup 
  association [0..1] to I_Language      as     _Language         on     $projection.Language = _Language.Language
{
      @Semantics.language
  key t077x.spras as Language,
  key t077x.ktokd as CustomerAccountGroup,
      @Semantics.text
      t077x.txt30 as AccountGroupName,
      
      //associations 

      _CustomerAccountGroup,
      _Language
      
}