sycm_aps_c_atc_burndown

DDL: SYCM_APS_C_ATC_BURNDOWN SQL: SYCMVCATCBURND Type: view

Burndown chart for ATC findings

sycm_aps_c_atc_burndown is a CDS View that provides data about "Burndown chart for ATC findings" in SAP S/4HANA. It reads from 1 data source (satc_ac_resulth) and exposes 4 fields with key field display_id.

Data Sources (1)

SourceAliasJoin Type
satc_ac_resulth satc_ac_resulth from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName SYCMVCATCBURND view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Burndown chart for ATC findings view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY display_id display_id Display ID
count_prio1 count_prio1 Priority 1
count_prio2 count_prio2 Priority 2
count_prio3 count_prio3 Priority 3

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 sycm_aps_c_atc_burndown.
-- 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: SYCMVCATCBURND

CREATE VIEW sycm_aps_c_atc_burndown AS
SELECT
  display_id,
  count_prio1,
  count_prio2,
  count_prio3
FROM satc_ac_resulth
;