I_AssetLifecycleStatusText

DDL: I_ASSETLIFECYCLESTATUSTEXT SQL: IASSETLFCYCSTST Type: view BASIC Package: FINS_FAA_MD_BOPF

Text of Asset Lifecycle Status

I_AssetLifecycleStatusText is a Basic CDS View that provides data about "Text of Asset Lifecycle Status" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields Language, AssetLifecycleStatus. It has 1 association to related views. Part of development package FINS_FAA_MD_BOPF.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IASSETLFCYCSTST view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.status #ACTIVE view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Text of Asset Lifecycle Status view
VDM.viewType #BASIC view
ObjectModel.representativeKey AssetLifecycleStatus view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Language
KEY AssetLifecycleStatus
AssetLifecycleStatusName
_Language _Language
@AbapCatalog.sqlViewName: 'IASSETLFCYCSTST'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering:{
  type: #FULL,
  status: #ACTIVE
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Text of Asset Lifecycle Status'
@VDM.viewType: #BASIC
@ObjectModel: {
    representativeKey: 'AssetLifecycleStatus',
    dataCategory: #TEXT,
    usageType.serviceQuality: #A,
    usageType.sizeCategory: #S,
    usageType.dataClass: #CUSTOMIZING
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true

define view I_AssetLifecycleStatusText
  as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language

{
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(ddlanguage as spras)             as Language,
      @ObjectModel.text.element: ['AssetLifecycleStatusName']
  key cast(domvalue_l as faa_md_lc_status)  as AssetLifecycleStatus,

      @Semantics.text: true
      cast(ddtext as faa_md_lc_status_text) as AssetLifecycleStatusName,

      _Language
}
where
      as4local = 'A'
  and domname  = 'FAA_MD_LC_STATUS'