I_CharcAttributeCodeGrpText

DDL: I_CHARCATTRIBUTECODEGRPTEXT SQL: ICHRCATTRBCDGRPT Type: view BASIC

Characteristic Attribute Code Group - Text

I_CharcAttributeCodeGrpText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Manufacturing

I_CharcAttributeCodeGrpText is a Basic CDS View that provides data about "Characteristic Attribute Code Group - Text" in SAP S/4HANA. It reads from 1 data source (qpgt) and exposes 5 fields with key fields CharacteristicAttributeCodeGrp, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentQM-IM
CapabilitiesData Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Language-Dependent Text
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>The purpose of this CDS view is the definition of code groups for selected sets (catalog 1).</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
qpgt qpgt from

Associations (2)

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

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICHRCATTRBCDGRPT view
AbapCatalog.preserveKey true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Characteristic Attribute Code Group - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CharacteristicAttributeCodeGrp view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CharacteristicAttributeCodeGrp qpgt codegruppe Code Group
KEY Language sprache Language Key
CharacteristicAttribCodeGrpTxt Text for Code Group
_CharcAttributeCodeGrp _CharcAttributeCodeGrp
_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_CharcAttributeCodeGrpText.
-- 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: ICHRCATTRBCDGRPT

CREATE VIEW I_CharcAttributeCodeGrpText AS
SELECT
  qpgt.codegruppe AS CharacteristicAttributeCodeGrp,
  sprache AS Language,
  cast( kurztext as vdm_qktextgr preserving type ) AS CharacteristicAttribCodeGrpTxt
FROM qpgt
LEFT OUTER JOIN I_CharcAttributeCodeGrp AS _CharcAttributeCodeGrp ON CharacteristicAttributeCodeGrp = _CharcAttributeCodeGrp.CharacteristicAttributeCodeGrp  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;