R_ClfnHistlObjectCharcValTP

DDL: R_CLFNHISTLOBJECTCHARCVALTP Type: view_entity TRANSACTIONAL

Clfn Historical Object Charc Val - TP

R_ClfnHistlObjectCharcValTP is a Transactional CDS View that provides data about "Clfn Historical Object Charc Val - TP" in SAP S/4HANA. It reads from 1 data source (I_ClfnObjectCharcValue) and exposes 20 fields with key fields SAPObjectNodeType, ClfnObjectID, ClassType, Characteristic, ChangeNumber.

Data Sources (1)

SourceAliasJoin Type
I_ClfnObjectCharcValue ObjectCharcValue from

Annotations (10)

NameValueLevelField
EndUserText.label Clfn Historical Object Charc Val - TP view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.query.implementedBy ABAP:CL_NGC_RAP_EML_QRY view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY SAPObjectNodeType
KEY ClfnObjectID I_ClfnObjectCharcValue ClfnObjectID
KEY ClassType I_ClfnObjectCharcValue ClassType X Flag
KEY Characteristic
KEY ChangeNumber I_ClfnObjectCharcValue ChangeNumber Change Number
KEY ClfnCharcValuePositionNumber I_ClfnObjectCharcValue CharcValuePositionNumber
CharcInternalID I_ClfnObjectCharcValue CharcInternalID Characteristic Internal ID
ClfnObjectInternalID I_ClfnObjectCharcValue ClfnObjectInternalID
CharcValueIntervalType I_ClfnObjectCharcValue CharcValueIntervalType Code
CharcValue I_ClfnObjectCharcValue CharcValue Char. Value
CharcFromNumericValue I_ClfnObjectCharcValue CharcFromNumericValue Value from
CharcFromNumericValueDspUnit I_ClfnObjectCharcValue CharcFromNumericValueUnit Internal UoM
CharcToNumericValue I_ClfnObjectCharcValue CharcToNumericValue Value to
CharcToNumericValueDspUnit I_ClfnObjectCharcValue CharcToNumericValueUnit Internal UoM
CharcAuthor I_ClfnObjectCharcValue CharacteristicAuthor
LastChangeDateTime I_ClfnObjectCharcValue LastChangeDateTime Timestamp
IsDeleted I_ClfnObjectCharcValue IsDeleted TRUE
ValidityStartDate I_ClfnObjectCharcValue ValidityStartDate Validity Start Date
ValidityEndDate I_ClfnObjectCharcValue ValidityEndDate ValidTo
_Object _Object

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_ClfnHistlObjectCharcValTP.
-- 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_ClfnHistlObjectCharcValTP AS
SELECT
  cast ('' as sbo_node_type ) AS SAPObjectNodeType,
  ObjectCharcValue.ClfnObjectID AS ClfnObjectID,
  ObjectCharcValue.ClassType AS ClassType,
  cast('' as atnam ) AS Characteristic,
  ObjectCharcValue.ChangeNumber AS ChangeNumber,
  ObjectCharcValue.CharcValuePositionNumber AS ClfnCharcValuePositionNumber,
  ObjectCharcValue.CharcInternalID AS CharcInternalID,
  ObjectCharcValue.ClfnObjectInternalID AS ClfnObjectInternalID,
  ObjectCharcValue.CharcValueIntervalType AS CharcValueIntervalType,
  ObjectCharcValue.CharcValue AS CharcValue,
  ObjectCharcValue.CharcFromNumericValue AS CharcFromNumericValue,
  ObjectCharcValue.CharcFromNumericValueUnit AS CharcFromNumericValueDspUnit,
  ObjectCharcValue.CharcToNumericValue AS CharcToNumericValue,
  ObjectCharcValue.CharcToNumericValueUnit AS CharcToNumericValueDspUnit,
  ObjectCharcValue.CharacteristicAuthor AS CharcAuthor,
  ObjectCharcValue.LastChangeDateTime AS LastChangeDateTime,
  ObjectCharcValue.IsDeleted AS IsDeleted,
  ObjectCharcValue.ValidityStartDate AS ValidityStartDate,
  ObjectCharcValue.ValidityEndDate AS ValidityEndDate
FROM I_ClfnObjectCharcValue AS ObjectCharcValue
;