I_FixedAssetFromLegacySystemVH
Legacy Asset Value Help
I_FixedAssetFromLegacySystemVH is a Composite CDS View that provides data about "Legacy Asset Value Help" in SAP S/4HANA. It reads from 1 data source (I_FixedAsset) and exposes 9 fields with key fields CompanyCode, MasterFixedAsset, FixedAsset. Part of development package FINS_FAA_MD_BOPF.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_FixedAsset | I_FixedAsset | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFILGFXDAST_VH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| 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 | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Legacy Asset Value Help | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | CompanyCode | ||
| KEY | MasterFixedAsset | MasterFixedAsset | ||
| KEY | FixedAsset | FixedAsset | ||
| FixedAssetDescription | FixedAssetDescription | |||
| IsMainAsset | IsMainAsset | |||
| AssetClass | AssetClass | |||
| AssetAuthorizationContext | AssetAuthorizationContext | |||
| _CompanyCode | _CompanyCode | |||
| _MasterFixedAsset | _MasterFixedAsset |
@AbapCatalog.sqlViewName: 'IFILGFXDAST_VH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #COMPOSITE
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'FixedAsset'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Legacy Asset Value Help'
define view I_FixedAssetFromLegacySystemVH
as select from I_FixedAsset
{
@ObjectModel.foreignKey.association: '_CompanyCode'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 1.0
@Search.ranking: #LOW
key CompanyCode,
@ObjectModel.foreignKey.association: '_MasterFixedAsset'
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
key MasterFixedAsset,
@ObjectModel.text.element: ['FixedAssetDescription']
key FixedAsset,
@Semantics.text:true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #LOW
FixedAssetDescription,
@UI.hidden:true
IsMainAsset,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 1.0
@Search.ranking: #LOW
AssetClass,
@Consumption.hidden: true
AssetAuthorizationContext, //Needed for DCL
@Consumption.hidden: true
_CompanyCode,
@Consumption.hidden: true
_MasterFixedAsset
}
where
LegacyDataTransferDate is not null
and LegacyDataTransferDate <> '00000000'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA