I_Relstratchartext

DDL: I_RELSTRATCHARTEXT SQL: IRELCHARTEXT Type: view BASIC

CDS view for description of release strategy characterisitic

I_Relstratchartext is a Basic CDS View that provides data about "CDS view for description of release strategy characterisitic" in SAP S/4HANA. It reads from 1 data source (cabnt) and exposes 7 fields with key fields CharacteristicInternalID, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
cabnt cabnt from

Associations (2)

CardinalityTargetAliasCondition
[1..*] I_Relstartchar _Relstartchar $projection.CharacteristicInternalID = _Relstartchar.CharacteristicInternalID
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IRELCHARTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label CDS view for description of release strategy characterisitic view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CharacteristicInternalID view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CharacteristicInternalID atinn Internal char.
KEY Language spras Off. Language
ArchivingObject adzhl Int. counter
CharacteristicValueDescription atbez Description
CharacteristicDescription atbez Description
_Relstartchar _Relstartchar
_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_Relstratchartext.
-- 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: IRELCHARTEXT

CREATE VIEW I_Relstratchartext AS
SELECT
  atinn AS CharacteristicInternalID,
  spras AS Language,
  adzhl AS ArchivingObject,
  atbez AS CharacteristicValueDescription,
  atbez AS CharacteristicDescription
FROM cabnt
LEFT OUTER JOIN I_Relstartchar AS _Relstartchar ON CharacteristicInternalID = _Relstartchar.CharacteristicInternalID  -- association [1..*]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;