I_GLAccountToleranceGroupText
Text of Tolerance Group for G/L Account
I_GLAccountToleranceGroupText is a Basic CDS View that provides data about "Text of Tolerance Group for G/L Account" in SAP S/4HANA. It reads from 1 data source (t043st) and exposes 6 fields with key fields CompanyCode, APARToleranceGroup, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t043st | t043st | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [0..1] | I_CompanyCode | _CompanyCode | $projection.CompanyCode = _CompanyCode.CompanyCode |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Text of Tolerance Group for G/L Account | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.sqlViewName | IFIGLToleGrpT | view | |
| ObjectModel.representativeKey | APARToleranceGroup | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | bukrs | ||
| KEY | APARToleranceGroup | togru | ||
| KEY | Language | spras | ||
| APARToleranceGroupName | txt30 | |||
| _Language | _Language | |||
| _CompanyCode | _CompanyCode |
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@VDM.viewType: #BASIC
@EndUserText.label: 'Text of Tolerance Group for G/L Account'
@ObjectModel.dataCategory: #TEXT
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.sqlViewName: 'IFIGLToleGrpT'
@ObjectModel.representativeKey: 'APARToleranceGroup'
@ObjectModel.usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #MASTER
}
define view I_GLAccountToleranceGroupText
as select from t043st
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
association [0..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
{
@ObjectModel.foreignKey.association: '_CompanyCode'
key bukrs as CompanyCode,
key togru as APARToleranceGroup,
@Semantics.language: true
key spras as Language,
@Semantics.text: true
txt30 as APARToleranceGroupName,
_Language,
_CompanyCode
}
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