C_BPHierarchyNodeDataTP

DDL: C_BPHIERARCHYNODEDATATP Type: view_entity

Projection of BP Hierarchy Node

C_BPHierarchyNodeDataTP is a CDS View that provides data about "Projection of BP Hierarchy Node" in SAP S/4HANA. It reads from 1 data source (I_BPHierarchyNodeDataTP) and exposes 11 fields with key field BPHierarchyNodeUUID.

Data Sources (1)

SourceAliasJoin Type
I_BPHierarchyNodeDataTP I_BPHierarchyNodeDataTP projection

Annotations (4)

NameValueLevelField
EndUserText.label Projection of BP Hierarchy Node view
AccessControl.authorizationCheck #CHECK view
Metadata.allowExtensions true view
Search.searchable true view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY BPHierarchyNodeUUID BPHierarchyNodeUUID
BusinessPartnerHierarchyUUID BusinessPartnerHierarchyUUID
BusinessPartnerUUID BusinessPartnerUUID UUID
BPHierarchyNodeDisplayID BPHierarchyNodeDisplayID
BPHierarchyNodeCreatedBy BPHierarchyNodeCreatedBy
BPHierarchyNodeCreatedDateTime BPHierarchyNodeCreatedDateTime
BPHierarchyNodeLastChangedBy BPHierarchyNodeLastChangedBy
BPHierNodeLastChangedDateTime BPHierNodeLastChangedDateTime
int8
HierarchyID HierarchyID Hierarchy ID
HierarchyType HierarchyType Hierarchy Type

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 C_BPHierarchyNodeDataTP.
-- 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 C_BPHierarchyNodeDataTP AS
SELECT
  BPHierarchyNodeUUID,
  BusinessPartnerHierarchyUUID,
  BusinessPartnerUUID,
  BPHierarchyNodeDisplayID,
  BPHierarchyNodeCreatedBy,
  BPHierarchyNodeCreatedDateTime,
  BPHierarchyNodeLastChangedBy,
  BPHierNodeLastChangedDateTime,
  virtual BPHierarchyNodeNumberOfChilds : abap.int8 AS int8,
  HierarchyID,
  HierarchyType
FROM I_BPHierarchyNodeDataTP
;