I_CustomerAccountGroupText

DDL: I_CUSTOMERACCOUNTGROUPTEXT SQL: ICUSTACCTGRPTXT Type: view BASIC

Customer Account Group - Text

I_CustomerAccountGroupText is a Basic CDS View (Text) that provides data about "Customer Account Group - Text" in SAP S/4HANA. It reads from 1 data source (t077x) and exposes 5 fields with key fields Language, CustomerAccountGroup. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t077x t077x from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_CustomerAccountGroup _CustomerAccountGroup _CustomerAccountGroup.CustomerAccountGroup = $projection.CustomerAccountGroup
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICUSTACCTGRPTXT view
AccessControl.authorizationCheck #CHECK view
Analytics.dataCategory #TEXT view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Customer Account Group - Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CustomerAccountGroup view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language t077x spras
KEY CustomerAccountGroup t077x ktokd
AccountGroupName t077x txt30
_CustomerAccountGroup _CustomerAccountGroup
_Language _Language
@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: #MASTER

@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
      
}  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"T077X"
],
"ASSOCIATED":
[
"I_CUSTOMERACCOUNTGROUP",
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/