I_HCMFamilyCharacteristicText

DDL: I_HCMFAMILYCHARACTERISTICTEXT Type: view_entity BASIC

Family Characteristic - Text

I_HCMFamilyCharacteristicText is a Basic CDS View that provides data about "Family Characteristic - Text" in SAP S/4HANA. It reads from 1 data source (t577s) and exposes 6 fields with key fields Language, HCMCountryRegionGrouping, HCMFamilyCharacteristic, HCMFamCharcSpecification. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t577s t577s from

Associations (1)

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

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Family Characteristic - Text view
Analytics.technicalName IHCMFamilyCharacteristicText view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language sprsl Language Code
KEY HCMCountryRegionGrouping molga Reserved Field/Unused Field of Length 2
KEY HCMFamilyCharacteristic eigsh Family char.
KEY HCMFamCharcSpecification auspr Proficiency
HCMFamilyCharacteristicText atext Title
_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 I_HCMFamilyCharacteristicText.
-- 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_HCMFamilyCharacteristicText AS
SELECT
  sprsl AS Language,
  molga AS HCMCountryRegionGrouping,
  eigsh AS HCMFamilyCharacteristic,
  auspr AS HCMFamCharcSpecification,
  atext AS HCMFamilyCharacteristicText
FROM t577s
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;