P_LqhFirstChild

DDL: P_LQHFIRSTCHILD SQL: PLQHFIRSTCHLD Type: view BASIC

P_LqhFirstChild is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (P_HrrpNodeLiqItmHier) and exposes 5 fields with key fields hier_id, hryvalto, parentid.

Data Sources (1)

SourceAliasJoin Type
P_HrrpNodeLiqItmHier P_HrrpNodeLiqItmHier from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName PLQHFIRSTCHLD view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY hier_id hryid Hierarchy ID
KEY hryvalto hryvalto Valid To
KEY parentid parnode Par. Node
hryver hryver Version: Structures
nodeid hrynode Node

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 P_LqhFirstChild.
-- 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: PLQHFIRSTCHLD

CREATE VIEW P_LqhFirstChild AS
SELECT
  hryid AS hier_id,
  hryvalto,
  parnode AS parentid,
  hryver,
  hrynode AS nodeid
FROM P_HrrpNodeLiqItmHier
;