Deprecated
This CDS view is deprecated in S/4HANA. Use I_ScalesGroup instead. View all deprecated CDS views →

C_Scalesgrouptemp

DDL: C_SCALESGROUPTEMP SQL: CSCALESGROUP Type: view CONSUMPTION

Scales Group View

C_Scalesgrouptemp is a Consumption CDS View that provides data about "Scales Group View" in SAP S/4HANA. It reads from 1 data source (twwag) and exposes 2 fields with key field ScalesGroup. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
twwag twwag from

Associations (1)

CardinalityTargetAliasCondition
[0..*] C_Scalesgrouptexttemp _Text $projection.ScalesGroup = _Text.ScalesGroup

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName CSCALESGROUP view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor I_ScalesGroup view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey ScalesGroup view
EndUserText.label Scales Group View view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.dataCategory #VALUE_HELP view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ScalesGroup Scales group
_Text _Text

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_Scalesgrouptemp.
-- 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: CSCALESGROUP

CREATE VIEW C_Scalesgrouptemp AS
SELECT
  cast(scagr as scalesgroup preserving type ) AS ScalesGroup
FROM twwag
LEFT OUTER JOIN C_Scalesgrouptexttemp AS _Text ON ScalesGroup = _Text.ScalesGroup  -- association [0..*]
;