Deprecated SAP_INTERNAL_API
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

I_Relstartcharinclass

DDL: I_RELSTARTCHARINCLASS SQL: IRELCHARINCLASS Type: view BASIC Package: VDM_MM_PUR_REL_STRAT

Characteristic of Class [Obsolete]

I_Relstartcharinclass is a Basic CDS View that provides data about "Characteristic of Class [Obsolete]" in SAP S/4HANA. It reads from 1 data source (ksml) and exposes 14 fields with key fields InternalClassNumber, CharacteristicInternalID, RelStrgyClassPositionNumber, ArchivingObject. It has 2 associations to related views. Part of development package VDM_MM_PUR_REL_STRAT.

Data Sources (1)

SourceAliasJoin Type
ksml ksml from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_Relstratclass _Relstratclass $projection.InternalClassNumber = _Relstratclass.InternalClassNumber
[1..1] I_Relstartchar _Relstartchar $projection.CharacteristicInternalID = _Relstartchar.CharacteristicInternalID

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IRELCHARINCLASS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Characteristic of Class [Obsolete] view
VDM.viewType #BASIC view
ObjectModel.usageType.serviceQuality #C 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
VDM.lifecycle.status #DEPRECATED view

Fields (14)

KeyFieldSource TableSource FieldDescription
KEY InternalClassNumber clint Int class no.
KEY CharacteristicInternalID imerk Internal char.
KEY RelStrgyClassPositionNumber posnr WBS Element
KEY ArchivingObject adzhl Int. counter
DatabaseTable _Relstartchar DatabaseTable Table Name
DatabaseTableFieldName _Relstartchar DatabaseTableFieldName
ValidityStartDate _Relstartchar ValidFrom Vers.Valid From
CreatedByUser _Relstartchar CreatedByUser User Name
LastChangedByUser _Relstartchar LastChangedByUser User Name
OriginalStatusText _Relstartchar OriginalStatusText
CharacteristicDescription _Relstartchar CharacteristicDescription Catalog Path Description
CharacteristicValueDescription _Relstartchar CharacteristicValueDescription
RelStrgyClAuthorizationGroup _Relstratclass RelStrgyClAuthorizationGroup
_Relstratclass _Relstratclass

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_Relstartcharinclass.
-- 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: IRELCHARINCLASS

CREATE VIEW I_Relstartcharinclass AS
SELECT
  clint AS InternalClassNumber,
  imerk AS CharacteristicInternalID,
  posnr AS RelStrgyClassPositionNumber,
  adzhl AS ArchivingObject,
  _Relstartchar.DatabaseTable AS DatabaseTable,
  _Relstartchar.DatabaseTableFieldName AS DatabaseTableFieldName,
  _Relstartchar.ValidFrom AS ValidityStartDate,
  _Relstartchar.CreatedByUser AS CreatedByUser,
  _Relstartchar.LastChangedByUser AS LastChangedByUser,
  _Relstartchar.OriginalStatusText AS OriginalStatusText,
  _Relstartchar.CharacteristicDescription AS CharacteristicDescription,
  _Relstartchar.CharacteristicValueDescription AS CharacteristicValueDescription,
  _Relstratclass.RelStrgyClAuthorizationGroup AS RelStrgyClAuthorizationGroup
FROM ksml
LEFT OUTER JOIN I_Relstratclass AS _Relstratclass ON InternalClassNumber = _Relstratclass.InternalClassNumber  -- association [1..1]
LEFT OUTER JOIN I_Relstartchar AS _Relstartchar ON CharacteristicInternalID = _Relstartchar.CharacteristicInternalID  -- association [1..1]
;