ESH_N_TKA10_TKA10

DDL: ESH_N_TKA10_TKA10 SQL: ESH_L_TKA10_KA10 Type: view

Master Data Table, Price Indicators

ESH_N_TKA10_TKA10 is a CDS View that provides data about "Master Data Table, Price Indicators" in SAP S/4HANA. It reads from 1 data source (tka10) and exposes 4 fields with key field tarkz. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
tka10 tka10 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] tkt10 _TO_TKT10_1 $projection.tarkz = _TO_TKT10_1.tarkz

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName ESH_L_TKA10_KA10 view
EndUserText.label Master Data Table, Price Indicators view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #P view
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #INHERITED view
AbapCatalog.compiler.compareFilter true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY tarkz tarkz Price indicator
plrat plrat Plan allocation
acrat acrat Actual Alloc.
_TO_TKT10_1 _TO_TKT10_1

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 ESH_N_TKA10_TKA10.
-- 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: ESH_L_TKA10_KA10

CREATE VIEW ESH_N_TKA10_TKA10 AS
SELECT
  tarkz,
  plrat,
  acrat
FROM tka10
LEFT OUTER JOIN tkt10 AS _TO_TKT10_1 ON tarkz = _TO_TKT10_1.tarkz  -- association [0..*]
;