A_CnsldtnPartCostCtrHierDir

DDL: A_CNSLDTNPARTCOSTCTRHIERDIR SQL: ACSPCOSTCTRHDIR Type: view BASIC

Combined Partner Cost Center Hier Dir

A_CnsldtnPartCostCtrHierDir is a Basic CDS View that provides data about "Combined Partner Cost Center Hier Dir" in SAP S/4HANA. It reads from 1 data source (A_CnsldtnCostCenterHierDir) and exposes 7 fields with key fields AdditionalMasterDataHierarchy, ValidityEndDate.

Data Sources (1)

SourceAliasJoin Type
A_CnsldtnCostCenterHierDir A_CnsldtnCostCenterHierDir from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ACSPCOSTCTRHDIR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey AdditionalMasterDataHierarchy view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
EndUserText.label Combined Partner Cost Center Hier Dir view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY AdditionalMasterDataHierarchy AdditionalMasterDataHierarchy
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
LastChangedByUser LastChangedByUser User Name
LastChangeDateTime LastChangeDateTime Timestamp
MDHierType HierarchyType Hierarchy Type
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 A_CnsldtnPartCostCtrHierDir.
-- 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: ACSPCOSTCTRHDIR

CREATE VIEW A_CnsldtnPartCostCtrHierDir AS
SELECT
  AdditionalMasterDataHierarchy,
  ValidityEndDate,
  ValidityStartDate,
  LastChangedByUser,
  LastChangeDateTime,
  HierarchyType AS MDHierType,
  HierarchyType
FROM A_CnsldtnCostCenterHierDir
;