A_CnsldtnCustomerGroup

DDL: A_CNSLDTNCUSTOMERGROUP SQL: ACSCUSTOMERGROUP Type: view COMPOSITE Package: FIN_CS_MD_API

Combined Customer Group

A_CnsldtnCustomerGroup is a Composite CDS View that provides data about "Combined Customer Group" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnCustomerGroup) and exposes 6 fields with key field CustomerGroup. It has 2 associations to related views. Part of development package FIN_CS_MD_API.

Data Sources (1)

SourceAliasJoin Type
I_CnsldtnCustomerGroup _Source from

Associations (2)

CardinalityTargetAliasCondition
[0..*] A_CnsldtnCustomerGroupT _CnsldtnCustomerGroupT $projection.CustomerGroup = _CnsldtnCustomerGroupT.CustomerGroup
[0..*] A_CnsldtnCustomerGroupHier _CnsldtnCustomerGroupHier $projection.MDHierType = _CnsldtnCustomerGroupHier.MDHierType

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ACSCUSTOMERGROUP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Combined Customer Group view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
OData.entitySet.name CustomerGroup view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CustomerGroup I_CnsldtnCustomerGroup CustomerGroup
AdditionalMasterDataSource I_CnsldtnCustomerGroup AdditionalMasterDataSource
MDHierType
HierarchyType
_CnsldtnCustomerGroupT _CnsldtnCustomerGroupT
_CnsldtnCustomerGroupHier _CnsldtnCustomerGroupHier
@AbapCatalog.sqlViewName: 'ACSCUSTOMERGROUP'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Combined Customer Group'
@VDM.viewType: #COMPOSITE
@AccessControl.personalData.blocking: #REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: ['CustomerGroup']
@ObjectModel.usageType: {
  dataClass: #MASTER,
  serviceQuality: #C,
  sizeCategory: #S
}
@OData.entitySet.name: 'CustomerGroup'
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

define view A_CnsldtnCustomerGroup
  as select from I_CnsldtnCustomerGroup as _Source

  association [0..*] to A_CnsldtnCustomerGroupT    as _CnsldtnCustomerGroupT    on $projection.CustomerGroup = _CnsldtnCustomerGroupT.CustomerGroup

  association [0..*] to A_CnsldtnCustomerGroupHier as _CnsldtnCustomerGroupHier on $projection.MDHierType = _CnsldtnCustomerGroupHier.MDHierType

{
      @ObjectModel.text.association: '_CnsldtnCustomerGroupT'
  key _Source.CustomerGroup,

      _Source.AdditionalMasterDataSource,

      @Consumption.hidden: true
      cast ( 'CS13' as hrytype ) as MDHierType,

      @Consumption.hidden: true
      cast ( 'CS13' as hrytype ) as HierarchyType,

      _CnsldtnCustomerGroupT,
      _CnsldtnCustomerGroupHier
}