I_SuplrActLifecycleStatusText

DDL: I_SUPLRACTLIFECYCLESTATUSTEXT SQL: ISUPACTLFSTST Type: view BASIC

Lifecycle Status of Suplr Acty - Text

I_SuplrActLifecycleStatusText is a Basic CDS View that provides data about "Lifecycle Status of Suplr Acty - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields SuplrActyLifecycleStatus, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

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

Annotations (13)

NameValueLevelField
EndUserText.label Lifecycle Status of Suplr Acty - Text view
ObjectModel.dataCategory #TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SuplrActyLifecycleStatus view
AbapCatalog.sqlViewName ISUPACTLFSTST view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SuplrActyLifecycleStatus
KEY Language ddlanguage
SuplrActyLifecycleStatusName
_SuplrActLifecycleStatus _SuplrActLifecycleStatus
_Language _Language
@EndUserText.label: 'Lifecycle Status of Suplr Acty - Text' 
@ObjectModel.dataCategory: #TEXT
@VDM.viewType: #BASIC
@ObjectModel.supportedCapabilities: 
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@AbapCatalog.compiler.compareFilter: true
@Metadata.ignorePropagatedAnnotations: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.dataClass:  #META
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ClientHandling.algorithm: #SESSION_VARIABLE 
@ObjectModel.representativeKey: 'SuplrActyLifecycleStatus'
@AbapCatalog.sqlViewName: 'ISUPACTLFSTST'
define view I_SuplrActLifecycleStatusText as select from dd07t
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
  association [1..1] to I_SuplrActLifecycleStatus as _SuplrActLifecycleStatus on $projection.SuplrActyLifecycleStatus = _SuplrActLifecycleStatus.SuplrActyLifecycleStatus
{
  key cast ( substring( domvalue_l, 1, 2 ) as /srmsmc/act_lifecycle_stat_cd preserving type) as SuplrActyLifecycleStatus,

  @Semantics.language: true
  key ddlanguage as Language,

  @Semantics.text: true
  cast(ddtext as /srmsmc/status_descr) as SuplrActyLifecycleStatusName,

  _SuplrActLifecycleStatus, 
  _Language
}
where domname = '/SRMSMC/ACT_LIFECYCLE_STAT_CD' and as4local = 'A'
    
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_SUPLRACTLIFECYCLESTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/