I_GLAccountToleranceGroup

DDL: I_GLACCOUNTTOLERANCEGROUP SQL: IFIGLTOLEGRP Type: view BASIC

Tolerance Group for G/L Account

I_GLAccountToleranceGroup is a Basic CDS View (Dimension) that provides data about "Tolerance Group for G/L Account" in SAP S/4HANA. It reads from 1 data source (t043s) and exposes 10 fields with key fields CompanyCode, APARToleranceGroup. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t043s t043s from

Associations (3)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..*] I_GLAccountToleranceGroupText _Text $projection.CompanyCode = _Text.CompanyCode and $projection.APARToleranceGroup = _Text.APARToleranceGroup
[0..1] I_Currency _Currency $projection.currency = _Currency.Currency

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
EndUserText.label Tolerance Group for G/L Account view
Analytics.dataCategory #DIMENSION view
AccessControl.authorizationCheck #CHECK view
AbapCatalog.sqlViewName IFIGLTOLEGRP view
ObjectModel.representativeKey APARToleranceGroup view
Metadata.allowExtensions true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bukrs Value
KEY APARToleranceGroup togru Tolerance group
MaxRevnClrgDiffAmtInCoCodeCrcy betrs Revenue
MaxExpnClrgDiffAmtInCoCodeCrcy betrh Local Crcy Amt
MaxRevnClrgDifferencePercent prozs Percentage
MaxExpnClrgDifferencePercent prozh Percentage
Currency _CompanyCode Currency Valuation Crcy
_CompanyCode _CompanyCode
_Currency _Currency
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_GLAccountToleranceGroup.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: IFIGLTOLEGRP

CREATE VIEW I_GLAccountToleranceGroup AS
SELECT
  bukrs AS CompanyCode,
  togru AS APARToleranceGroup,
  betrs AS MaxRevnClrgDiffAmtInCoCodeCrcy,
  betrh AS MaxExpnClrgDiffAmtInCoCodeCrcy,
  prozs AS MaxRevnClrgDifferencePercent,
  prozh AS MaxExpnClrgDifferencePercent,
  _CompanyCode.Currency AS Currency
FROM t043s
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON CompanyCode = _CompanyCode.CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_GLAccountToleranceGroupText AS _Text ON CompanyCode = _Text.CompanyCode AND APARToleranceGroup = _Text.APARToleranceGroup  -- association [0..*]
LEFT OUTER JOIN I_Currency AS _Currency ON currency = _Currency.Currency  -- association [0..1]
;