I_CustomerGroup

DDL: I_CUSTOMERGROUP SQL: ISDCUSTGRP Type: view BASIC Package: VDM_SD_MD_MM

Customer Group

I_CustomerGroup is a Basic CDS View (Dimension) that provides data about "Customer Group" in SAP S/4HANA. It reads from 1 data source (t151) and exposes 3 fields with key field CustomerGroup. It has 2 associations to related views. It is exposed through 10 OData services (C_SALESORDERMANAGE_SD, UI_BILLINGDOCUMENT_MANAGE, UI_CREDITMEMOREQUESTMANAGE, ...). Part of development package VDM_SD_MD_MM.

Data Sources (1)

SourceAliasJoin Type
t151 t151 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_CustomerGroupText _Text $projection.CustomerGroup = _Text.CustomerGroup
[0..*] I_CustomerGroupHierarchyNode _CustomerGroupHierarchyNode $projection.CustomerGroup = _CustomerGroupHierarchyNode.CustomerGroup

Annotations (20)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CustomerGroup view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Customer Group view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.dataExtraction.delta.changeDataCapture.automatic true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDCUSTGRP view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.sapObjectNodeType.name CustomerGroup view

OData Services (10)

ServiceBindingVersionContractRelease
C_SALESORDERMANAGE_SD C_SALESORDERMANAGE_SRV V4 C1 NOT_RELEASED
UI_BILLINGDOCUMENT_MANAGE UI_BILLINGDOCUMENT_MANAGE V4 C1 NOT_RELEASED
UI_CREDITMEMOREQUESTMANAGE UI_CREDITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED
UI_DEBITMEMOREQUESTMANAGE UI_DEBITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED
UI_PRELIMBILLINGDOCUMENT_F6990 UI_PRELIMBILLINGDOCUMENT_F6990 V4 C1 NOT_RELEASED
UI_RFM_PRVSNLSLSCONTR UI_RFM_PRVSNLSLSCONTR V2 C1 NOT_RELEASED
UI_RFM_SLSORD_PRGS_MONITOR UI_RFM_SLSORD_PRGS_MONITOR V2 C1 NOT_RELEASED
UI_SALESCONTRACTMANAGE UI_SALESCONTRACTMANAGE V4 C1 NOT_RELEASED
UI_SALESDOCUMENTMANAGE UI_SALESDOCUMENTMANAGE V4 C1 NOT_RELEASED
UI_SLSORDERWITHOUTCHARGEMANAGE UI_SLSORDERWITHOUTCHARGEMANAGE V4 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CustomerGroup kdgrp
_Text _Text
_CustomerGroupHierarchyNode _CustomerGroupHierarchyNode
@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
};