I_Relstartchar

DDL: I_RELSTARTCHAR SQL: IRELCHAR Type: view BASIC Package: VDM_MM_PUR_REL_STRAT

Characteristic Basic View

I_Relstartchar is a Basic CDS View that provides data about "Characteristic Basic View" in SAP S/4HANA. It reads from 1 data source (cabn) and exposes 11 fields with key fields CharacteristicInternalID, ArchivingObject. It has 2 associations to related views. Part of development package VDM_MM_PUR_REL_STRAT.

Data Sources (1)

SourceAliasJoin Type
cabn cabn from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_Relstartcharinclass _Relstartcharinclass $projection.CharacteristicInternalID = _Relstartcharinclass.CharacteristicInternalID
[1..*] I_Relstratchartext _Text $projection.CharacteristicInternalID = _Text.CharacteristicInternalID

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IRELCHAR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Characteristic Basic View view
ObjectModel.transactionalProcessingEnabled true view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY CharacteristicInternalID atinn Internal char.
KEY ArchivingObject adzhl Int. counter
CharacteristicDescription atnam Characteristic
DatabaseTable attab Table Name
DatabaseTableFieldName atfel Field Name
ValidFrom datuv Valid-from date
RelStrgyCharcValAssignmentType atein Single-value
CreatedByUser aname Creator
LastChangedByUser vname Volatility Name
OriginalStatusText atmst Status
CharacteristicValueDescription _Text CharacteristicValueDescription

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_Relstartchar.
-- 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: IRELCHAR

CREATE VIEW I_Relstartchar AS
SELECT
  atinn AS CharacteristicInternalID,
  adzhl AS ArchivingObject,
  atnam AS CharacteristicDescription,
  attab AS DatabaseTable,
  atfel AS DatabaseTableFieldName,
  datuv AS ValidFrom,
  atein AS RelStrgyCharcValAssignmentType,
  aname AS CreatedByUser,
  vname AS LastChangedByUser,
  atmst AS OriginalStatusText,
  _Text.CharacteristicValueDescription AS CharacteristicValueDescription
FROM cabn
LEFT OUTER JOIN I_Relstartcharinclass AS _Relstartcharinclass ON CharacteristicInternalID = _Relstartcharinclass.CharacteristicInternalID  -- association [0..*]
LEFT OUTER JOIN I_Relstratchartext AS _Text ON CharacteristicInternalID = _Text.CharacteristicInternalID  -- association [1..*]
;