I_TW_HCMDisabilityGradeText

DDL: I_TW_HCMDISABILITYGRADETEXT Type: view_entity

Taiwan family member disability grade text

I_TW_HCMDisabilityGradeText is a CDS View that provides data about "Taiwan family member disability grade text" in SAP S/4HANA. It reads from 1 data source (t7tw4z) and exposes 5 fields with key fields Language, HCMFamMbrDisabilityGrade. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t7tw4z t7tw4z from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[1..1] I_TW_HCMDisabilityGrade _DisabilityGrade $projection.HCMFamMbrDisabilityGrade = _DisabilityGrade.HCMFamMbrDisabilityGrade

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Taiwan family member disability grade text view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language sprsl Language Code
KEY HCMFamMbrDisabilityGrade disab Disability grade
HCMFamMbrDisabilityGradeText distx Disability type
_Language _Language
_DisabilityGrade _DisabilityGrade

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_TW_HCMDisabilityGradeText.
-- 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.

CREATE VIEW I_TW_HCMDisabilityGradeText AS
SELECT
  sprsl AS Language,
  disab AS HCMFamMbrDisabilityGrade,
  distx AS HCMFamMbrDisabilityGradeText
FROM t7tw4z
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
LEFT OUTER JOIN I_TW_HCMDisabilityGrade AS _DisabilityGrade ON HCMFamMbrDisabilityGrade = _DisabilityGrade.HCMFamMbrDisabilityGrade  -- association [1..1]
;