ACMRT_AUNIT_CUST_CONF_ENTITY

DDL: ACMRT_AUNIT_CUST_CONF_ENTITY Type: view_entity Package: SACMRT_TST

ACM RT TST: Custom Configuration Entity

ACMRT_AUNIT_CUST_CONF_ENTITY is a CDS View that provides data about "ACM RT TST: Custom Configuration Entity" in SAP S/4HANA. It reads from 1 data source (acmrtaunit) and exposes 5 fields with key field Id. Part of development package SACMRT_TST.

Data Sources (1)

SourceAliasJoin Type
acmrtaunit acmrtaunit from

Annotations (4)

NameValueLevelField
EndUserText.label ACM RT TST: Custom Configuration Entity view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.auditing.type #CUSTOM view
AccessControl.auditing.specification ACM Runtime ABAP Unit Test view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Id id WorklistID
Char6 char6
Numc8 numc8
Int4 int4
NONEendasenum_color_int2

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

CREATE VIEW ACMRT_AUNIT_CUST_CONF_ENTITY AS
SELECT
  Id,
  Char6,
  Numc8,
  Int4,
  case char6 when 'RED' then ACMRT_AUNIT_ENUM_COLOR_INT2.#RED when 'GREEN' then ACMRT_AUNIT_ENUM_COLOR_INT2.#GREEN when 'BLUE' then ACMRT_AUNIT_ENUM_COLOR_INT2.#BLUE else ACMRT_AUNIT_ENUM_COLOR_INT2.#NONE end as enum_color_int2 AS NONEendasenum_color_int2
FROM acmrtaunit
;