A_AssetRevaluationIndexItem

DDL: A_ASSETREVALUATIONINDEXITEM Type: view_entity CONSUMPTION Package: FINS_FAA_INDEX

Asset Revaluation Index Item

A_AssetRevaluationIndexItem is a Consumption CDS View that provides data about "Asset Revaluation Index Item" in SAP S/4HANA. It reads from 1 data source (R_AssetRevaluationIndexItemTP) and exposes 4 fields with key fields AssetRevaluationIndex, ValidityEndDate. It is exposed through 2 OData services (API_ASSETREVALUATIONINDEX, ASQL_F8873). Part of development package FINS_FAA_INDEX.

Data Sources (1)

SourceAliasJoin Type
R_AssetRevaluationIndexItemTP R_AssetRevaluationIndexItemTP projection

Annotations (9)

NameValueLevelField
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
EndUserText.label Asset Revaluation Index Item view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name AssetRevaluationIndexItem_Type view

OData Services (2)

ServiceBindingVersionContractRelease
API_ASSETREVALUATIONINDEX API_ASSETREVALUATIONINDEX V4 C2 C1
ASQL_F8873 ASQL_F8873 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY AssetRevaluationIndex AssetRevaluationIndex
KEY ValidityEndDate ValidityEndDate ValidTo
ValidityStartDate ValidityStartDate Validity Start Date
AssetRevaluationIndexValue AssetRevaluationIndexValue

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 A_AssetRevaluationIndexItem.
-- 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 A_AssetRevaluationIndexItem AS
SELECT
  AssetRevaluationIndex,
  ValidityEndDate,
  ValidityStartDate,
  AssetRevaluationIndexValue
FROM R_AssetRevaluationIndexItemTP
;