I_FixedAssetValueHelp

DDL: I_FIXEDASSETVALUEHELP Type: view COMPOSITE Package: FINS_FIS_AA_MD

Fixed Asset Value Help

I_FixedAssetValueHelp is a Composite CDS View that provides data about "Fixed 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. It has 2 associations to related views. Part of development package FINS_FIS_AA_MD.

Data Sources (1)

SourceAliasJoin Type
I_FixedAsset I_FixedAsset from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_CompanyCode _CompanyCode $projection.CompanyCode = _CompanyCode.CompanyCode
[0..1] I_MasterFixedAsset _MasterFixedAsset $projection.CompanyCode = _MasterFixedAsset.CompanyCode and $projection.MasterFixedAsset = _MasterFixedAsset.MasterFixedAsset

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFIXASSETVH view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.representativeKey FixedAsset view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MASTER view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Fixed Asset Value Help view

Fields (9)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_FixedAsset CompanyCode
KEY MasterFixedAsset I_FixedAsset MasterFixedAsset
KEY FixedAsset I_FixedAsset FixedAsset
FixedAssetDescription I_FixedAsset FixedAssetDescription
AssetClass I_FixedAsset AssetClass
AssetCapitalizationDate
AssetAuthorizationContext I_FixedAsset AssetAuthorizationContext
_CompanyCode _CompanyCode
_MasterFixedAsset _MasterFixedAsset
@AbapCatalog: {sqlViewName: 'IFIXASSETVH', preserveKey: true}
@AbapCatalog.compiler.compareFilter: true
@VDM.viewType: #COMPOSITE
@ObjectModel: { representativeKey: 'FixedAsset',
                dataCategory: #VALUE_HELP,
                usageType.serviceQuality: #C,
                usageType.sizeCategory: #XXL,
                usageType.dataClass: #MASTER }
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@Metadata.ignorePropagatedAnnotations: true
@EndUserText.label: 'Fixed Asset Value Help'

define view I_FixedAssetValueHelp
  as select from           I_FixedAsset
    left outer to one join P_FixedAssetVH1 on  I_FixedAsset.CompanyCode      = P_FixedAssetVH1.CompanyCode
                                           and I_FixedAsset.MasterFixedAsset = P_FixedAssetVH1.MasterFixedAsset
                                           and I_FixedAsset.FixedAsset       = P_FixedAssetVH1.FixedAsset

  association [0..1] to I_CompanyCode      as _CompanyCode      on  $projection.CompanyCode = _CompanyCode.CompanyCode
  association [0..1] to I_MasterFixedAsset as _MasterFixedAsset on  $projection.CompanyCode      = _MasterFixedAsset.CompanyCode
                                                                and $projection.MasterFixedAsset = _MasterFixedAsset.MasterFixedAsset
{
      @ObjectModel.foreignKey.association: '_CompanyCode'
  key I_FixedAsset.CompanyCode as CompanyCode,
      @ObjectModel.foreignKey.association: '_MasterFixedAsset'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key I_FixedAsset.MasterFixedAsset as MasterFixedAsset,
      @ObjectModel.text.element: 'FixedAssetDescription'
  key I_FixedAsset.FixedAsset as FixedAsset,

      @Semantics.text:true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      I_FixedAsset.FixedAssetDescription as FixedAssetDescription,

      I_FixedAsset.AssetClass as AssetClass,
      cast(P_FixedAssetVH1.AssetCapitalizationDate as aktivd preserving type) as AssetCapitalizationDate,
      @Consumption.hidden: true
      I_FixedAsset.AssetAuthorizationContext, //Needed for DCL


      _CompanyCode,
      _MasterFixedAsset
}