I_HDMRelationTP

DDL: I_HDMRELATIONTP Type: view_entity TRANSACTIONAL

HDM Relation - TP

I_HDMRelationTP is a Transactional CDS View that provides data about "HDM Relation - TP" in SAP S/4HANA. It reads from 1 data source (R_HDMRelationTP) and exposes 10 fields with key fields SAPObjectNodeType, LinkedSAPObjectKey, BaseObjectType, BaseObjectKey.

Data Sources (1)

SourceAliasJoin Type
R_HDMRelationTP R_HDMRelationTP projection

Annotations (11)

NameValueLevelField
EndUserText.label HDM Relation - TP view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.modelingPattern #TRANSACTIONAL_INTERFACE view
ObjectModel.representativeKey BaseObjectKey view
ObjectModel.sapObjectNodeType.name HDMRelation view
Metadata.ignorePropagatedAnnotations true view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY SAPObjectNodeType SAPObjectNodeType SONT Name
KEY LinkedSAPObjectKey LinkedSAPObjectKey SAP Object Key
KEY BaseObjectType BaseObjectType
KEY BaseObjectKey BaseObjectKey
HDMRelationIsLocked HDMRelationIsLocked
CreatedByUserName CreatedByUserName Person Resp.
HDMCreatedAtDateTime HDMCreatedAtDateTime Time Stamp
ChangedByUserName ChangedByUserName
HDMChangedAtDateTime HDMChangedAtDateTime Time Stamp
_UserContactCard _UserContactCard

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_HDMRelationTP.
-- 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 I_HDMRelationTP AS
SELECT
  SAPObjectNodeType,
  LinkedSAPObjectKey,
  BaseObjectType,
  BaseObjectKey,
  HDMRelationIsLocked,
  CreatedByUserName,
  HDMCreatedAtDateTime,
  ChangedByUserName,
  HDMChangedAtDateTime
FROM R_HDMRelationTP
;