I_AssetKeyFigureSet

DDL: I_ASSETKEYFIGURESET Type: view BASIC

Asset Key Figure Set

I_AssetKeyFigureSet (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_AssetKeyFigureSet is a Basic CDS View (Dimension) that provides data about "Asset Key Figure Set" in SAP S/4HANA. It reads from 1 data source (faac_kfcset) and exposes 3 fields with key field AssetAccountingKeyFigureSet. It has 1 association 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 asset accounting key figure groups are defined?

Structure
Measures and attributes Important measures and attributes: Asset Accounting Key Figure Group

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-AA-AA
CapabilitiesData Source for Defining CDS Entities, Analytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select
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 asset accounting key figure groups are defined?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
faac_kfcset faac_kfcset from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_AssetKeyFigureSetText _Text $projection.AssetAccountingKeyFigureSet = _Text.AssetAccountingKeyFigureSet

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IASSETKEYFIGUSET view
AbapCatalog.preserveKey true view
Analytics.dataCategory #DIMENSION view
EndUserText.label Asset Key Figure Set view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey AssetAccountingKeyFigureSet 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
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AssetAccountingKeyFigureSet key_figure_set Key Figure Group
AssetAcctgKeyFigSetAnlytlCntxt context Application Context of Key Figure Variant
_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 I_AssetKeyFigureSet.
-- 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_AssetKeyFigureSet AS
SELECT
  key_figure_set AS AssetAccountingKeyFigureSet,
  context AS AssetAcctgKeyFigSetAnlytlCntxt
FROM faac_kfcset
LEFT OUTER JOIN I_AssetKeyFigureSetText AS _Text ON AssetAccountingKeyFigureSet = _Text.AssetAccountingKeyFigureSet  -- association [0..*]
;