I_Group2AssetEvaluationKey

DDL: I_GROUP2ASSETEVALUATIONKEY Type: view BASIC

Group 2 Asset Evaluation Key

I_Group2AssetEvaluationKey (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Accounting and Financial Close

I_Group2AssetEvaluationKey is a Basic CDS View (Dimension) that provides data about "Group 2 Asset Evaluation Key" in SAP S/4HANA. It reads from 1 data source (t087) and exposes 3 fields with key field Group2AssetEvaluationKey. It has 2 associations to related views.

SAP Help Documentation

CategoryCDS Views for Master Data
Data CategoryDimension
StatusReleased
Purpose
This CDS view provides the prerequisites for answering the following business question: How many evaluation groups for fixed assets are defined?

Structure
Measures and attributes Important measure and attribute: Evaluation Group 2

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-AA-IS
CapabilitiesAnalytical Dimension
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business question:</p> <ul> <li><p>How many evaluation groups for fixed assets are defined?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
t087 t087 from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_AssetEvaluationKeyText _Text $projection.Group2AssetEvaluationKey = _Text.AssetEvaluationKey and _Text.AssetEvaluationGroup = '2'
[0..*] I_Group2AssetEvaluationKeyText _Group2AssetEvaluationKeyText $projection.Group2AssetEvaluationKey = _Group2AssetEvaluationKeyText.Group2AssetEvaluationKey

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIASSETEVALKEY2 view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
Analytics.dataCategory #DIMENSION view
EndUserText.label Group 2 Asset Evaluation Key view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey Group2AssetEvaluationKey view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Group2AssetEvaluationKey t087 ord4x Evaluation groups 1 - 4
_Text _Text
_Group2AssetEvaluationKeyText _Group2AssetEvaluationKeyText

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_Group2AssetEvaluationKey.
-- 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_Group2AssetEvaluationKey AS
SELECT
  t087.ord4x AS Group2AssetEvaluationKey
FROM t087
LEFT OUTER JOIN I_AssetEvaluationKeyText AS _Text ON Group2AssetEvaluationKey = _Text.AssetEvaluationKey AND _Text.AssetEvaluationGroup = '2'  -- association [0..*]
LEFT OUTER JOIN I_Group2AssetEvaluationKeyText AS _Group2AssetEvaluationKeyText ON Group2AssetEvaluationKey = _Group2AssetEvaluationKeyText.Group2AssetEvaluationKey  -- association [0..*]
;