I_FixedAssetStdVH

DDL: I_FIXEDASSETSTDVH Type: view_entity COMPOSITE

Fixed Asset

I_FixedAssetStdVH (Composite)

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_FixedAssetStdVH is a Composite CDS View that provides data about "Fixed Asset" in SAP S/4HANA. It reads from 1 data source (I_FixedAsset) and exposes 8 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-AA-IS
CapabilitiesData Provider for Value Help, Data Source in SQL Select, Data Source for Search
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_FixedAsset I_FixedAsset from

Annotations (12)

NameValueLevelField
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey FixedAsset view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #VALUE_HELP_PROVIDER view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Fixed Asset view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY MasterFixedAsset MasterFixedAsset Main Asset Number
KEY FixedAsset FixedAsset Asset Subnumber
FixedAssetDescription FixedAssetDescription Asset Description
AssetClass AssetClass Asset Class
AssetAuthorizationContext AssetAuthorizationContext Asset Authorization Context
_CompanyCode _CompanyCode
_MasterFixedAsset _MasterFixedAsset

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_FixedAssetStdVH.
-- 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_FixedAssetStdVH AS
SELECT
  CompanyCode,
  MasterFixedAsset,
  FixedAsset,
  FixedAssetDescription,
  AssetClass,
  AssetAuthorizationContext
FROM I_FixedAsset
;