A_CostCenterHierarchyNodeText

DDL: A_COSTCENTERHIERARCHYNODETEXT Type: view_entity COMPOSITE Package: FINS_FI_UH_INBOUND

Cost Center Hierarchy Node Text

A_CostCenterHierarchyNodeText is a Composite CDS View that provides data about "Cost Center Hierarchy Node Text" in SAP S/4HANA. It reads from 1 data source (R_CostCenterHierarchyNodeText) and exposes 7 fields with key fields CostCenterHierarchyShortID, ValidityEndDate, ValidityStartDate, UniversalHierNodeType, CostCtrHierarchyNodeShortID. It is exposed through 2 OData services (API_COSTCENTER_HIERARCHY, ASQL_F8568). Part of development package FINS_FI_UH_INBOUND.

Data Sources (1)

SourceAliasJoin Type
R_CostCenterHierarchyNodeText R_CostCenterHierarchyNodeText projection

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Cost Center Hierarchy Node Text view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view
ObjectModel.modelingPattern #TRANSACTIONAL_QUERY view
ObjectModel.sapObjectNodeType.name CostCenterHierarchyNodeText view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
OData.entityType.name CostCenterHierarchyNodeText_Type view

OData Services (2)

ServiceBindingVersionContractRelease
API_COSTCENTER_HIERARCHY API_COSTCENTER_HIERARCHY V4 C2 C1
ASQL_F8568 ASQL_F8568 C2 NOT_RELEASED

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CostCenterHierarchyShortID CostCenterHierarchyShortID Hierarchy ID
KEY ValidityEndDate ValidityEndDate ValidTo
KEY ValidityStartDate ValidityStartDate Validity Start Date
KEY UniversalHierNodeType UniversalHierNodeType Hierarchy Node Type
KEY CostCtrHierarchyNodeShortID CostCtrHierarchyNodeShortID Hierarchy Node
KEY Language Language Report Text Language
HierarchyNodeText HierarchyNodeText

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 A_CostCenterHierarchyNodeText.
-- 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 A_CostCenterHierarchyNodeText AS
SELECT
  CostCenterHierarchyShortID,
  ValidityEndDate,
  ValidityStartDate,
  UniversalHierNodeType,
  CostCtrHierarchyNodeShortID,
  Language,
  HierarchyNodeText
FROM R_CostCenterHierarchyNodeText
;