ACMHEX_SCITY

DDL: ACMHEX_SCITY SQL: ACMHEXSV_SCITY Type: view Package: SACMHIEREX

ACMHEX: Cities (= artificial Dimension)

ACMHEX_SCITY is a CDS View of category Dimension that provides data about "ACMHEX: Cities (= artificial Dimension)" in SAP S/4HANA. It reads from 1 data source (acmhexdb_scity) and exposes 3 fields with key field city. It has 1 association to related views. Part of development package SACMHIEREX.

Data Sources (1)

SourceAliasJoin Type
acmhexdb_scity acmhexdb_scity from

Associations (1)

CardinalityTargetAliasCondition
[0..1] ACMHEX_HIERS4DIM3 _hiers4dim3 $projection.country = _hiers4dim3.country and $projection.city = _hiers4dim3.cityto

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ACMHEXSV_SCITY view
EndUserText.label ACMHEX: Cities (= artificial Dimension) view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY city acmhexdb_scity city Location
country acmhexdb_scity country Venue: Ctry/Reg
_hiers4dim3 _hiers4dim3

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 ACMHEX_SCITY.
-- 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: ACMHEXSV_SCITY

CREATE VIEW ACMHEX_SCITY AS
SELECT
  acmhexdb_scity.city AS city,
  acmhexdb_scity.country AS country
FROM acmhexdb_scity
LEFT OUTER JOIN ACMHEX_HIERS4DIM3 AS _hiers4dim3 ON country = _hiers4dim3.country AND city = _hiers4dim3.cityto  -- association [0..1]
;