PSM_AVC_COST_CENTER_BASIC

DDL: PSM_AVC_COST_CENTER_BASIC SQL: PSMAVCCCBASIC Type: view

Basic Cost Center View for Hierarchy

PSM_AVC_COST_CENTER_BASIC is a CDS View that provides data about "Basic Cost Center View for Hierarchy" in SAP S/4HANA. It reads from 2 data sources (hrrp_node, hrrp_attr_node).

Data Sources (2)

SourceAliasJoin Type
hrrp_node node left_outer
hrrp_attr_node node_attr left_outer

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName PSMAVCCCBASIC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Basic Cost Center View for Hierarchy view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view

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 PSM_AVC_COST_CENTER_BASIC.
-- 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: PSMAVCCCBASIC

CREATE VIEW PSM_AVC_COST_CENTER_BASIC AS
SELECT *  -- field list not available in parsed metadata
LEFT OUTER JOIN hrrp_node AS node ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN hrrp_attr_node AS node_attr ON /* join condition not captured in parsed metadata */
;