DDIC_ACTIVE_TYPE

DDL: DDIC_ACTIVE_TYPE Type: view_entity

DDIC_ACTIVE_TYPE is a CDS View in SAP S/4HANA. It reads from 1 data source (ddddlsrc) and exposes 2 fields with key field ddlname.

Data Sources (1)

SourceAliasJoin Type
ddddlsrc ddddlsrc from

Annotations (1)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ddlname ddddlsrc ddlname DDL Source Name
source_type ddddlsrc source_type SRVC Source Type

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 DDIC_ACTIVE_TYPE.
-- 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 DDIC_ACTIVE_TYPE AS
SELECT
  ddddlsrc.ddlname AS ddlname,
  ddddlsrc.source_type AS source_type
FROM ddddlsrc
;