I_CustomerAccountGroupText
Customer Account Group - Text
I_CustomerAccountGroupText is a Basic CDS View (Text) that provides data about "Customer Account Group - Text" in SAP S/4HANA. It reads from 1 data source (t077x) and exposes 5 fields with key fields Language, CustomerAccountGroup. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t077x | t077x | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_CustomerAccountGroup | _CustomerAccountGroup | _CustomerAccountGroup.CustomerAccountGroup = $projection.CustomerAccountGroup |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICUSTACCTGRPTXT | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| Analytics.dataCategory | #TEXT | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.dataExtraction.delta.changeDataCapture.automatic | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Customer Account Group - Text | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.modelingPattern | #LANGUAGE_DEPENDENT_TEXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | CustomerAccountGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view |
@AbapCatalog.sqlViewName: 'ICUSTACCTGRPTXT'
@AccessControl.authorizationCheck:#CHECK
@Analytics: {
dataCategory: #TEXT,
dataExtraction: {
enabled: true,
delta.changeDataCapture: {
automatic : true
}
}
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label: 'Customer Account Group - Text'//'Customer Account Group'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.supportedCapabilities: [#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#LANGUAGE_DEPENDENT_TEXT,
#EXTRACTION_DATA_SOURCE]
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'CustomerAccountGroup'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.dataClass: #MASTER
@VDM.viewType: #BASIC
define view I_CustomerAccountGroupText
as select from t077x
association [1..1] to I_CustomerAccountGroup as _CustomerAccountGroup on _CustomerAccountGroup.CustomerAccountGroup = $projection.CustomerAccountGroup
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language
key t077x.spras as Language,
key t077x.ktokd as CustomerAccountGroup,
@Semantics.text
t077x.txt30 as AccountGroupName,
//associations
_CustomerAccountGroup,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T077X"
],
"ASSOCIATED":
[
"I_CUSTOMERACCOUNTGROUP",
"I_LANGUAGE"
],
"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