I_CustomerAccountGroup

DDL: I_CUSTOMERACCOUNTGROUP SQL: ICUSTACCGRP Type: view BASIC

Customer Account Group

I_CustomerAccountGroup is a Basic CDS View (Dimension) that provides data about "Customer Account Group" in SAP S/4HANA. It reads from 1 data source (t077d) and exposes 2 fields with key field CustomerAccountGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t077d t077d from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CustomerAccountGroupText _CustomerAccountGroupText $projection.CustomerAccountGroup = _CustomerAccountGroupText.CustomerAccountGroup

Annotations (13)

NameValueLevelField
EndUserText.label Customer Account Group view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #CHECK view
ObjectModel.representativeKey CustomerAccountGroup view
AbapCatalog.sqlViewName ICUSTACCGRP view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CustomerAccountGroup t077d ktokd
_CustomerAccountGroupText _CustomerAccountGroupText
@EndUserText.label: 'Customer Account Group' //same as DDL description

@Analytics: { dataCategory: #DIMENSION }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'CustomerAccountGroup'
@AbapCatalog.sqlViewName: 'ICUSTACCGRP'
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
                                     #CDS_MODELING_DATA_SOURCE,
                                     #CDS_MODELING_ASSOCIATION_TARGET,
                                     #ANALYTICAL_DIMENSION]
@ObjectModel.modelingPattern:#ANALYTICAL_DIMENSION                                     
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
define view I_CustomerAccountGroup //must start with "I_"; same as DDL source name in upper-camelcase notation

  as select from t077d

  association [0..*] to I_CustomerAccountGroupText as _CustomerAccountGroupText on $projection.CustomerAccountGroup = _CustomerAccountGroupText.CustomerAccountGroup
{
      @ObjectModel.text.association: '_CustomerAccountGroupText'
  key t077d.ktokd as CustomerAccountGroup,
      _CustomerAccountGroupText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T077D"
],
"ASSOCIATED":
[
"I_CUSTOMERACCOUNTGROUPTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/