I_CnsldtnFeatureToggle

DDL: I_CNSLDTNFEATURETOGGLE Type: view_entity BASIC Package: FIN_CS_COMM

Consolidation Feature Toggle

I_CnsldtnFeatureToggle is a Basic CDS View that provides data about "Consolidation Feature Toggle" in SAP S/4HANA. It reads from 2 data sources (ftg_header, sfw_sw_states_pure) and exposes 1 field with key field FeatureToggle. Part of development package FIN_CS_COMM.

Data Sources (2)

SourceAliasJoin Type
ftg_header _FeatureToggle inner
sfw_sw_states_pure _Switch from

Annotations (8)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey FeatureToggle view
VDM.viewType #BASIC view
EndUserText.label Consolidation Feature Toggle view

Fields (1)

KeyFieldSource TableSource FieldDescription
KEY FeatureToggle

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 I_CnsldtnFeatureToggle.
-- 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 I_CnsldtnFeatureToggle AS
SELECT
  cast( _Switch.switch_id as fincs_featuretoggle preserving type ) AS FeatureToggle
FROM sfw_sw_states_pure AS _Switch
INNER JOIN ftg_header AS _FeatureToggle ON /* join condition not captured in parsed metadata */
;