P_FSHierarchy_Calc_Item

DDL: P_FSHIERARCHY_CALC_ITEM SQL: PFSHIERCALCITEM Type: view BASIC

P_FSHierarchy_Calc_Item is a Basic CDS View in SAP S/4HANA. It reads from 8 data sources and exposes 9 fields with key fields versn, id_from, id_from, id_from, id_from.

Data Sources (8)

SourceAliasJoin Type
t011 asset inner
t011 equity inner
t011 notes inner
fagl_011pc pc_asset from
fagl_011pc pc_equity union_all
fagl_011pc pc_notes union_all
fagl_011pc pc_unassigned union_all
t011 unassigned inner

Annotations (5)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName PFSHIERCALCITEM view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY versn fagl_011pc versn Version
KEY id_from fagl_011pc id WorklistID
versn Version
KEY id_from fagl_011pc id WorklistID
versn Version
KEY id_from fagl_011pc id WorklistID
versn Version
KEY id_from fagl_011pc id WorklistID
segment

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_FSHierarchy_Calc_Item.
-- 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: PFSHIERCALCITEM

CREATE VIEW P_FSHierarchy_Calc_Item AS
SELECT
  pc_asset.versn AS versn,
  pc_asset.id AS id_from,
  'NT' AS segment
FROM fagl_011pc AS pc_asset
INNER JOIN t011 AS asset ON /* join condition not captured in parsed metadata */
INNER JOIN t011 AS equity ON /* join condition not captured in parsed metadata */
INNER JOIN t011 AS unassigned ON /* join condition not captured in parsed metadata */
INNER JOIN t011 AS notes ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): fagl_011pc, fagl_011pc, fagl_011pc
;