ATOV_PREFIX_CATEGORY_TEXT

DDL: ATOV_PREFIX_CATEGORY_TEXT SQL: ATOV_PFX_CTGY_T Type: view

ATO: System Type Description

ATOV_PREFIX_CATEGORY_TEXT is a CDS View that provides data about "ATO: System Type Description" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields value, language.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATOV_PFX_CTGY_T view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label ATO: System Type Description view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY value domvalue_l Lower Value
KEY language ddlanguage Lang.
description ddtext Short text

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 ATOV_PREFIX_CATEGORY_TEXT.
-- 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: ATOV_PFX_CTGY_T

CREATE VIEW ATOV_PREFIX_CATEGORY_TEXT AS
SELECT
  domvalue_l AS value,
  ddlanguage AS language,
  ddtext AS description
FROM dd07t
;