I_CUSTOMERGROUP

CDS View

Customer Group

I_CUSTOMERGROUP is a CDS View in S/4HANA. Customer Group. 6 CDS views read from this table.

CDS Views using this table (6)

ViewTypeJoinVDMDescription
A_CustomerGroup view from BASIC API Customer Group
C_RevnVarcCustGrpVH view from CONSUMPTION Value help for Customer Group
FAC_CUSTOMERGROUPVH view from Data Source for Customer Group
I_CnsldtnMasterData view union_all COMPOSITE Consolidation - Combined Master Data
I_CustomerGroupVH view_entity from BASIC Customer Group
P_CnsldtnCustomerGroup view from COMPOSITE Consolidation Combined Customer Group
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'CustomerGroup'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Customer Group'

@Analytics : {
          dataCategory: #DIMENSION,
          dataExtraction: {
           enabled: true,
           delta.changeDataCapture: {
           automatic: true
           }
         }
       }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:  #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDCUSTGRP'
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@ObjectModel.modelingPattern:           #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities:  [  #SQL_DATA_SOURCE,
                                        #CDS_MODELING_DATA_SOURCE,
                                        #CDS_MODELING_ASSOCIATION_TARGET,
                                        #ANALYTICAL_DIMENSION,
                                        #EXTRACTION_DATA_SOURCE,
                                        #SEARCHABLE_ENTITY  ]
@ObjectModel.sapObjectNodeType.name: 'CustomerGroup'
define view I_CustomerGroup
  as select from t151

  association [0..*] to I_CustomerGroupText          as _Text                       on $projection.CustomerGroup = _Text.CustomerGroup
  association [0..*] to I_CustomerGroupHierarchyNode as _CustomerGroupHierarchyNode on $projection.CustomerGroup = _CustomerGroupHierarchyNode.CustomerGroup
{
      @ObjectModel.text.association: '_Text'
      @ObjectModel.hierarchy.association: '_CustomerGroupHierarchyNode'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
  key kdgrp as CustomerGroup,
      _Text,
      _CustomerGroupHierarchyNode
};