ftg_enabled

DDL: FTG_ENABLED Type: view_entity Package: S_FEATURE_TOGGLES_API

Enabled feature toggles

ftg_enabled is a CDS View that provides data about "Enabled feature toggles" in SAP S/4HANA. It reads from 2 data sources (ftg_header, sfw_sw_states_pure) and exposes 1 field with key field ftg_id. Part of development package S_FEATURE_TOGGLES_API.

Data Sources (2)

SourceAliasJoin Type
ftg_header header inner
sfw_sw_states_pure sfw from

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Enabled feature toggles view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY ftg_id sfw_sw_states_pure switch_id Switch

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 ftg_enabled.
-- 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 ftg_enabled AS
SELECT
  sfw.switch_id AS ftg_id
FROM sfw_sw_states_pure AS sfw
INNER JOIN ftg_header AS header ON /* join condition not captured in parsed metadata */
;