I_CustomerAccountGroup
Customer Account Group
I_CustomerAccountGroup is a Basic CDS View (Dimension) that provides data about "Customer Account Group" in SAP S/4HANA. It reads from 1 data source (t077d) and exposes 2 fields with key field CustomerAccountGroup. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t077d | t077d | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CustomerAccountGroupText | _CustomerAccountGroupText | $projection.CustomerAccountGroup = _CustomerAccountGroupText.CustomerAccountGroup |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Customer Account Group | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| VDM.viewType | #BASIC | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.representativeKey | CustomerAccountGroup | view | |
| AbapCatalog.sqlViewName | ICUSTACCGRP | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustomerAccountGroup | t077d | ktokd | |
| _CustomerAccountGroupText | _CustomerAccountGroupText |
@EndUserText.label: 'Customer Account Group' //same as DDL description
@Analytics: { dataCategory: #DIMENSION }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.representativeKey: 'CustomerAccountGroup'
@AbapCatalog.sqlViewName: 'ICUSTACCGRP'
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#ANALYTICAL_DIMENSION]
@ObjectModel.modelingPattern:#ANALYTICAL_DIMENSION
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
define view I_CustomerAccountGroup //must start with "I_"; same as DDL source name in upper-camelcase notation
as select from t077d
association [0..*] to I_CustomerAccountGroupText as _CustomerAccountGroupText on $projection.CustomerAccountGroup = _CustomerAccountGroupText.CustomerAccountGroup
{
@ObjectModel.text.association: '_CustomerAccountGroupText'
key t077d.ktokd as CustomerAccountGroup,
_CustomerAccountGroupText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T077D"
],
"ASSOCIATED":
[
"I_CUSTOMERACCOUNTGROUPTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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