A_CustomerAccountGroup
Customer Account Group
A_CustomerAccountGroup is a Basic CDS View that provides data about "Customer Account Group" in SAP S/4HANA. It reads from 1 data source (I_CustomerAccountGroup) and exposes 3 fields with key field CustomerAccountGroup. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CustomerAccountGroup | I_CustomerAccountGroup | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_CustomerAccountGroupText | _Text | $projection.CustomerAccountGroup = _Text.CustomerAccountGroup |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ACUSTACCGRP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Customer Account Group | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.representativeKey | CustomerAccountGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| OData.entityType.name | CustomerAccountGroup_Type | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| VDM.viewType | #BASIC | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CustomerAccountGroup | CustomerAccountGroup | ||
| AccountGroupName | ||||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'ACUSTACCGRP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Customer Account Group'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.representativeKey: 'CustomerAccountGroup'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@OData.entityType.name: 'CustomerAccountGroup_Type'
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@VDM.viewType: #BASIC
define view A_CustomerAccountGroup as select from I_CustomerAccountGroup
association [0..*] to A_CustomerAccountGroupText as _Text
on $projection.CustomerAccountGroup = _Text.CustomerAccountGroup
{
@ObjectModel.text.element: ['AccountGroupName']
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key CustomerAccountGroup,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Semantics.text: true
_Text[1:Language=$session.system_language].AccountGroupName,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"A_CUSTOMERACCOUNTGROUPTEXT",
"I_CUSTOMERACCOUNTGROUP"
],
"ASSOCIATED":
[
"A_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