/ssb/core_sac_op_app

DDL: /SSB/CORE_SAC_OP_APP SQL: /SSB/OPSACAPPS Type: view

OP SAC Application

/ssb/core_sac_op_app is a CDS View that provides data about "OP SAC Application" in SAP S/4HANA. It reads from 1 data source (/ssb/sac_app) and exposes 12 fields with key fields chip_id, resource_id. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/ssb/sac_app SacApp from

Associations (2)

CardinalityTargetAliasCondition
[0..1] /ssb/Core_Evaluations _Evaluations $projection.evaluation_id = _Evaluations.id and _Evaluations.is_active = '1'
[0..*] /SSB/UNION_SAC_NAV_INTENTS _OPSACNavIntents $projection.chip_id = _OPSACNavIntents.chip_id and $projection.resource_id = _OPSACNavIntents.id and _OPSACNavIntents.type = 'SS'

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName /SSB/OPSACAPPS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true 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
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label OP SAC Application view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY chip_id /ssb/sac_app chip_id Identifier
KEY resource_id /ssb/sac_app resource_id UUID Internal
system_alias /ssb/sac_app system_alias System Alias
catalog_id /ssb/sac_app catalog_id UUID
chip_type /ssb/sac_app chip_type Tile Type
variant_id /ssb/sac_app variant_id Variant Id
created_by /ssb/sac_app created_by Version Created By
created_on /ssb/sac_app created_on Variant created on
changed_by /ssb/sac_app changed_by User Name
changed_on /ssb/sac_app changed_on Variant Changed on
idasEvaluation_Title
_OPSACNavIntents _OPSACNavIntents

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/core_sac_op_app.
-- 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/OPSACAPPS

CREATE VIEW /ssb/core_sac_op_app AS
SELECT
  SacApp.chip_id AS chip_id,
  SacApp.resource_id AS resource_id,
  SacApp.system_alias AS system_alias,
  SacApp.catalog_id AS catalog_id,
  SacApp.chip_type AS chip_type,
  SacApp.variant_id AS variant_id,
  SacApp.created_by AS created_by,
  SacApp.created_on AS created_on,
  SacApp.changed_by AS changed_by,
  SacApp.changed_on AS changed_on,
  coalesce( _Evaluations._Text( P_language:$session.system_language )[1: Language = $session.system_language ].title, _Evaluations.id ) as Evaluation_Title AS idasEvaluation_Title
FROM /ssb/sac_app AS SacApp
LEFT OUTER JOIN /ssb/Core_Evaluations AS _Evaluations ON evaluation_id = _Evaluations.id AND _Evaluations.is_active = '1'  -- association [0..1]
LEFT OUTER JOIN /SSB/UNION_SAC_NAV_INTENTS AS _OPSACNavIntents ON chip_id = _OPSACNavIntents.chip_id AND resource_id = _OPSACNavIntents.id AND _OPSACNavIntents.type = 'SS'  -- association [0..*]
;