ACMHEX_SCARR

DDL: ACMHEX_SCARR SQL: ACMHEXSV_SCARR Type: view Package: SACMHIEREX

ACMHEX: Airlines (= Dimension-1: CARRID)

ACMHEX_SCARR is a CDS View of category Dimension that provides data about "ACMHEX: Airlines (= Dimension-1: CARRID)" in SAP S/4HANA. It reads from 1 data source (acmhexdb_scarr) and exposes 6 fields with key field carrid. It has 1 association to related views. Part of development package SACMHIEREX.

Data Sources (1)

SourceAliasJoin Type
acmhexdb_scarr acmhexdb_scarr from

Associations (1)

CardinalityTargetAliasCondition
[0..1] ACMHEX_HIERS4DIM1 _hiers4dim1 $projection.carrid = _hiers4dim1.carrid

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ACMHEXSV_SCARR view
EndUserText.label ACMHEX: Airlines (= Dimension-1: CARRID) view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY carrid acmhexdb_scarr carrid Carrier
carrname acmhexdb_scarr carrname Carrier
currcode acmhexdb_scarr currcode Currency (SAP)
country acmhexdb_scarr country Venue: Ctry/Reg
url acmhexdb_scarr url URLContract
_hiers4dim1 _hiers4dim1

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_SCARR.
-- 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_SCARR

CREATE VIEW ACMHEX_SCARR AS
SELECT
  acmhexdb_scarr.carrid AS carrid,
  acmhexdb_scarr.carrname AS carrname,
  acmhexdb_scarr.currcode AS currcode,
  acmhexdb_scarr.country AS country,
  acmhexdb_scarr.url AS url
FROM acmhexdb_scarr
LEFT OUTER JOIN ACMHEX_HIERS4DIM1 AS _hiers4dim1 ON carrid = _hiers4dim1.carrid  -- association [0..1]
;