/ssb/evals_With_Cust_Extension

DDL: /SSB/EVALS_WITH_CUST_EXTENSION SQL: /SSB/EVALCUSTEXT Type: view

All Evaluations With Customer Extensions

/ssb/evals_With_Cust_Extension is a CDS View that provides data about "All Evaluations With Customer Extensions" in SAP S/4HANA. It reads from 1 data source (/ssb/Union_Evaluations) and exposes 22 fields with key fields id, is_active. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/ssb/Union_Evaluations /ssb/Union_Evaluations from

Associations (4)

CardinalityTargetAliasCondition
[*] /ssb/Core_Evaluation_Texts _Text $projection.id = _Text.id and $projection.is_active = _Text.is_active
[1] /ssb/Core_Indicators _Indicator $projection.indicator_id = _Indicator.id and _Indicator.is_active = '1'
[0..*] /ssb/evals _CustomerEdit $projection.id = _CustomerEdit.ref_id and $projection.namespace = 'S'
[0..*] /SSB/DISTINCT_CUST_NAVINT_EDIT _CustomerNavIntents $projection.id = _CustomerNavIntents.ref_eval_id

Annotations (9)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName /SSB/EVALCUSTEXT view
EndUserText.label All Evaluations With Customer Extensions view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY id id WorklistID
KEY is_active is_active Truth Value
indicator_id indicator_id Indicator ID
namespace namespace Parameter Namespace
scaling scaling Scaling
scaling_ext _CustomerEdit scaling Scaling
odata_url odata_url ODATA URL
view_name view_name View Name
column_name column_name Column Name
owner_name owner_name Name
owner_e_mail owner_e_mail E-Mail Addr.
owner_id owner_id User ID
created_by created_by Version Created By
created_on created_on Variant created on
changed_by changed_by User Name
action action User action
description description Well Code Des.
goal_type goal_type Goal Type
ref_eval_id ref_eval_id Technical Object
_Text _Text
_Indicator _Indicator
_CustomerNavIntents _CustomerNavIntents

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 /ssb/evals_With_Cust_Extension.
-- 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: /SSB/EVALCUSTEXT

CREATE VIEW /ssb/evals_With_Cust_Extension AS
SELECT
  id,
  is_active,
  indicator_id,
  namespace,
  scaling,
  _CustomerEdit.scaling AS scaling_ext,
  odata_url,
  view_name,
  column_name,
  owner_name,
  owner_e_mail,
  owner_id,
  created_by,
  created_on,
  changed_by,
  action,
  description,
  goal_type,
  ref_eval_id
FROM /ssb/Union_Evaluations
LEFT OUTER JOIN /ssb/Core_Evaluation_Texts AS _Text ON id = _Text.id AND is_active = _Text.is_active  -- association [*]
LEFT OUTER JOIN /ssb/Core_Indicators AS _Indicator ON indicator_id = _Indicator.id AND _Indicator.is_active = '1'  -- association [1]
LEFT OUTER JOIN /ssb/evals AS _CustomerEdit ON id = _CustomerEdit.ref_id AND namespace = 'S'  -- association [0..*]
LEFT OUTER JOIN /SSB/DISTINCT_CUST_NAVINT_EDIT AS _CustomerNavIntents ON id = _CustomerNavIntents.ref_eval_id  -- association [0..*]
;