DDCDS_SCALAR_FUNCTIONS

DDL: DDCDS_SCALAR_FUNCTIONS Type: view_entity

ABAP Dictionary: CDS Scalar Functions

DDCDS_SCALAR_FUNCTIONS is a CDS View that provides data about "ABAP Dictionary: CDS Scalar Functions" in SAP S/4HANA. It reads from 1 data source (dddsfd_header) and exposes 7 fields with key fields ScalarFunctionName, State.

Data Sources (1)

SourceAliasJoin Type
dddsfd_header header from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label ABAP Dictionary: CDS Scalar Functions view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ScalarFunctionName CDS Scalar Function Name
KEY State Activation State
ScalarFunctionNameRaw Case sensitive CDS Scalar Function Name
_Parameters _Parameters
_Result _Result
_SQLImplementation _SQLImplementation
_Texts _Texts

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 DDCDS_SCALAR_FUNCTIONS.
-- 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 DDCDS_SCALAR_FUNCTIONS AS
SELECT
  cast( header.scalar_function_name as abap.char(30) ) AS ScalarFunctionName,
  cast( header.as4local as abap.char(1) ) AS State,
  cast( header.scalar_function_name_raw as abap.char(30) ) AS ScalarFunctionNameRaw
FROM dddsfd_header AS header
;