C_StatKeyFigGroupObj

DDL: C_STATKEYFIGGROUPOBJ SQL: CWUSKFGO Type: view CONSUMPTION Package: ODATA_WHERE_USED_STAT_KEY_FIG

Where-Used List – Statistical Key Figures

C_StatKeyFigGroupObj is a Consumption CDS View that provides data about "Where-Used List – Statistical Key Figures" in SAP S/4HANA. It reads from 1 data source (C_StatKeyFigWhereUsedObjTypeVH) and exposes 4 fields with key fields StatKeyFigWhereUsedObjType, FioriUIFilterHash. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F4078). Part of development package ODATA_WHERE_USED_STAT_KEY_FIG.

Data Sources (1)

SourceAliasJoin Type
C_StatKeyFigWhereUsedObjTypeVH C_StatKeyFigWhereUsedObjTypeVH from

Associations (1)

CardinalityTargetAliasCondition
[1..*] C_StatKeyFigGroup _StatKeyFigGroup $projection.StatKeyFigWhereUsedObjType = _StatKeyFigGroup.StatKeyFigWhereUsedObjType

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CWUSKFGO view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Where-Used List – Statistical Key Figures view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #META view
VDM.viewType #CONSUMPTION view
UI.headerInfo.title.value StatKeyFigWhereUsedObjTypeText view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F4078 ASQL_F4078 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY StatKeyFigWhereUsedObjType StatKeyFigWhereUsedObjType
KEY FioriUIFilterHash
StatKeyFigWhereUsedObjTypeText StatKeyFigWhereUsedObjTypeText
_StatKeyFigGroup _StatKeyFigGroup

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 C_StatKeyFigGroupObj.
-- 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: CWUSKFGO

CREATE VIEW C_StatKeyFigGroupObj AS
SELECT
  StatKeyFigWhereUsedObjType,
  cast ('' as filterhash) AS FioriUIFilterHash,
  StatKeyFigWhereUsedObjTypeText
FROM C_StatKeyFigWhereUsedObjTypeVH
LEFT OUTER JOIN C_StatKeyFigGroup AS _StatKeyFigGroup ON StatKeyFigWhereUsedObjType = _StatKeyFigGroup.StatKeyFigWhereUsedObjType  -- association [1..*]
;