A_CnsldtnCustomerGroupT
Combined Customer Group Text
A_CnsldtnCustomerGroupT is a Composite CDS View that provides data about "Combined Customer Group Text" in SAP S/4HANA. It reads from 1 data source (I_CnsldtnCustomerGroupT) and exposes 4 fields with key fields Language, CustomerGroup. It has 1 association to related views. Part of development package FIN_CS_MD_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CnsldtnCustomerGroupT | _Source | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | A_CnsldtnCustomerGroup | _CnsldtnCustomerGroup | $projection.CustomerGroup = _CnsldtnCustomerGroup.CustomerGroup |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACSCUSTGROUPT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Combined Customer Group Text | view | |
| ObjectModel.dataCategory | #TEXT | 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 | #L | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| OData.entitySet.name | CustomerGroupText | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | I_CnsldtnCustomerGroupT | Language | |
| KEY | CustomerGroup | I_CnsldtnCustomerGroupT | CustomerGroup | |
| CustomerGroupText | ||||
| _CnsldtnCustomerGroup | _CnsldtnCustomerGroup |
@AbapCatalog.sqlViewName: 'ACSCUSTGROUPT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Combined Customer Group Text'
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #COMPOSITE
@AccessControl.personalData.blocking: #REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: ['CustomerGroup']
@ObjectModel.usageType: {
dataClass: #MASTER,
serviceQuality: #C,
sizeCategory: #L
}
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@OData.entitySet.name: 'CustomerGroupText'
define view A_CnsldtnCustomerGroupT
as select from I_CnsldtnCustomerGroupT as _Source
association [0..1] to A_CnsldtnCustomerGroup as _CnsldtnCustomerGroup on $projection.CustomerGroup = _CnsldtnCustomerGroup.CustomerGroup
{
@Semantics.language: true
key _Source.Language,
key _Source.CustomerGroup,
@Semantics.text: true
cast(_Source.AdditionalMasterDataText as fincs_kdgrp_t preserving type) as CustomerGroupText,
_CnsldtnCustomerGroup
}
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