C_ToleranceGroupTextVHTemp

DDL: C_TOLERANCEGROUPTEXTVHTEMP SQL: CTOLGRPTXTVHT Type: view CONSUMPTION

Text view for Tolerance Group

C_ToleranceGroupTextVHTemp is a Consumption CDS View that provides data about "Text view for Tolerance Group" in SAP S/4HANA. It reads from 1 data source (I_ToleranceGroupText) and exposes 6 fields with key fields CompanyCode, Language, APARToleranceGroup. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_ToleranceGroupText I_ToleranceGroupText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode _CompanyCode.CompanyCode = $projection.CompanyCode
[0..1] I_Language _Language _Language.Language = $projection.Language

Annotations (12)

NameValueLevelField
EndUserText.label Text view for Tolerance Group view
AbapCatalog.sqlViewName CTOLGRPTXTVHT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey APARToleranceGroup view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY Language Language Report Text Language
KEY APARToleranceGroup APARToleranceGroup Tolerance Group
APARToleranceGroupName APARToleranceGroupName Text
_CompanyCode _CompanyCode
_Language _Language

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 C_ToleranceGroupTextVHTemp.
-- 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: CTOLGRPTXTVHT

CREATE VIEW C_ToleranceGroupTextVHTemp AS
SELECT
  CompanyCode,
  Language,
  APARToleranceGroup,
  APARToleranceGroupName
FROM I_ToleranceGroupText
LEFT OUTER JOIN I_CompanyCode AS _CompanyCode ON _CompanyCode.CompanyCode = CompanyCode  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON _Language.Language = Language  -- association [0..1]
;