P_CnsldtnSegmentElimNodeT

DDL: P_CNSLDTNSEGMENTELIMNODET Type: view_entity BASIC Package: FIN_CS_MD_SEGMENT

Cnsldtn Segment Elimination Node - Text

P_CnsldtnSegmentElimNodeT is a Basic CDS View that provides data about "Cnsldtn Segment Elimination Node - Text" in SAP S/4HANA. It reads from 3 data sources (fincs_addlcharcx, hrrp_node_n, hrrp_nodet_n) and exposes 3 fields with key fields spras, nodevalue. Part of development package FIN_CS_MD_SEGMENT.

Data Sources (3)

SourceAliasJoin Type
fincs_addlcharcx _addlcharcx inner
hrrp_node_n _node inner
hrrp_nodet_n _nodet from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
VDM.viewType #BASIC view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY spras hrrp_nodet_n spras Off. Language
KEY nodevalue hrrp_node_n nodevalue Value
nodetxt

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_CnsldtnSegmentElimNodeT.
-- 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 P_CnsldtnSegmentElimNodeT AS
SELECT
  _nodet.spras AS spras,
  _node.nodevalue AS nodevalue,
  max(_nodet.nodetxt) AS nodetxt
FROM hrrp_nodet_n AS _nodet
INNER JOIN fincs_addlcharcx AS _addlcharcx ON /* join condition not captured in parsed metadata */
INNER JOIN hrrp_node_n AS _node ON /* join condition not captured in parsed metadata */
;