A_CnsldtnCustomerGroup
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)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnCustomerGroup | _Source | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_CnsldtnCustomerGroupT | _CnsldtnCustomerGroupT | $projection.CustomerGroup = _CnsldtnCustomerGroupT.CustomerGroup |
| [0..*] | A_CnsldtnCustomerGroupHier | _CnsldtnCustomerGroupHier | $projection.MDHierType = _CnsldtnCustomerGroupHier.MDHierType |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA