R_VarConfignCharcGroupText

DDL: R_VARCONFIGNCHARCGROUPTEXT Type: view_entity COMPOSITE Package: VCH_HL_GRP_RAP

OBSOLETE: Variant Config Cstic Grp Descr

R_VarConfignCharcGroupText is a Composite CDS View that provides data about "OBSOLETE: Variant Config Cstic Grp Descr" in SAP S/4HANA. It reads from 3 data sources (I_ConfignCharacteristicGroup, I_ConfignCharcGroupDesc, I_Language) and exposes 7 fields with key fields ConfignCharacteristicGroup, ChangeNumber, Language. Part of development package VCH_HL_GRP_RAP.

Data Sources (3)

SourceAliasJoin Type
I_ConfignCharacteristicGroup GroupDef inner
I_ConfignCharcGroupDesc GroupTxt from
I_Language LanguageDef left_outer

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label OBSOLETE: Variant Config Cstic Grp Descr view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #COMPOSITE view
VDM.private false view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
ObjectModel.representativeKey ConfignCharacteristicGroup view
ObjectModel.modelCategory #BUSINESS_OBJECT view
ObjectModel.dataCategory #TEXT view
Search.searchable true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ConfignCharacteristicGroup I_ConfignCharcGroupDesc ConfignCharacteristicGroup UUID
KEY ChangeNumber I_ConfignCharacteristicGroup ChangeNumber Change Number
KEY Language I_ConfignCharcGroupDesc Language Report Text Language
LanguageISOCode I_Language LanguageISOCode Language ISO Code
TimeIntervalNumber I_ConfignCharcGroupDesc TimeIntervalNumber Int. counter
ConfignCharacteristicGroupDesc I_ConfignCharcGroupDesc ConfignCharacteristicGroupDesc Well Code Des.
_GroupDef _GroupDef

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 R_VarConfignCharcGroupText.
-- 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 R_VarConfignCharcGroupText AS
SELECT
  GroupTxt.ConfignCharacteristicGroup AS ConfignCharacteristicGroup,
  GroupDef.ChangeNumber AS ChangeNumber,
  GroupTxt.Language AS Language,
  LanguageDef.LanguageISOCode AS LanguageISOCode,
  GroupTxt.TimeIntervalNumber AS TimeIntervalNumber,
  GroupTxt.ConfignCharacteristicGroupDesc AS ConfignCharacteristicGroupDesc
FROM I_ConfignCharcGroupDesc AS GroupTxt
INNER JOIN I_ConfignCharacteristicGroup AS GroupDef ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_Language AS LanguageDef ON /* join condition not captured in parsed metadata */
;