I_RecipeStatusText

DDL: I_RECIPESTATUSTEXT SQL: IRECIPESTATUSTXT Type: view COMPOSITE

Recipe Status Text

I_RecipeStatusText is a Composite CDS View that provides data about "Recipe Status Text" in SAP S/4HANA. It reads from 2 data sources (I_RecipeStatus, I_StsActnMgmtStatusText) and exposes 5 fields with key fields RecipeStatus, Language. It has 2 associations to related views.

Data Sources (2)

SourceAliasJoin Type
I_RecipeStatus I_RecipeStatus inner
I_StsActnMgmtStatusText I_StsActnMgmtStatusText from

Associations (2)

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

Annotations (14)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName IRECIPESTATUSTXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RecipeStatus view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #COMPOSITE view
Search.searchable true view
EndUserText.label Recipe Status Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RecipeStatus
KEY Language I_StsActnMgmtStatusText Language
RecipeStatusDescription
_RecipeStatus _RecipeStatus
_Language _Language
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'IRECIPESTATUSTXT'
@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RecipeStatus'
@ObjectModel.semanticKey:  [ 'RecipeStatus' ]

@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #COMPOSITE

@Search.searchable: true

@EndUserText.label: 'Recipe Status Text'
define view I_RecipeStatusText
  as select from I_StsActnMgmtStatusText
    inner join   I_RecipeStatus as I_RecipeStatus on  I_StsActnMgmtStatusText.StsActnMgmtStatus     = I_RecipeStatus.RecipeStatus
                                                  and I_StsActnMgmtStatusText.StsActnMgmtObjectType = ''
  association [1..1] to I_Language     as _Language     on $projection.Language = _Language.Language
  association [0..1] to I_RecipeStatus as _RecipeStatus on $projection.RecipeStatus = _RecipeStatus.RecipeStatus
{
      @ObjectModel.foreignKey.association: '_RecipeStatus'
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
  key cast( I_StsActnMgmtStatusText.StsActnMgmtStatus as /plmb/rcp_status preserving type )          as RecipeStatus,

      @Semantics.language
      @ObjectModel.foreignKey.association: '_Language'
  key I_StsActnMgmtStatusText.Language                                                               as Language,

      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      cast( I_StsActnMgmtStatusText.StsActnMgmtStatusText as /plmb/rcp_status_desc preserving type ) as RecipeStatusDescription,

      /* Associations */
      _RecipeStatus,
      _Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RECIPESTATUS",
"I_STSACTNMGMTSTATUSTEXT"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_RECIPESTATUS"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/