I_RecipeProcessElementText

DDL: I_RECIPEPROCESSELEMENTTEXT SQL: IRPRELMNTTEXT Type: view BASIC

Recipe Process Element Description

I_RecipeProcessElementText is a Basic CDS View that provides data about "Recipe Process Element Description" in SAP S/4HANA. It reads from 1 data source (/plmb/rcp_descr) and exposes 5 fields with key fields RecipeProcessElementUUID, Language, RecipeProcessUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
/plmb/rcp_descr /plmb/rcp_descr from

Associations (1)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IRPRELMNTTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey RecipeProcessElementUUID view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Recipe Process Element Description view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RecipeProcessElementUUID
KEY Language langu
KEY RecipeProcessUUID
RecipeProcessElementDesc descr
_Language _Language
@AbapCatalog.sqlViewName: 'IRPRELMNTTEXT'
@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'RecipeProcessElementUUID'
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER

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

@EndUserText.label: 'Recipe Process Element Description'
define view I_RecipeProcessElementText
  as select from /plmb/rcp_descr

  association [1..1] to I_Language as _Language on $projection.Language = _Language.Language
{
  key cast( object_guid as /plmb/rpr_pe_guid preserving type )   as RecipeProcessElementUUID,

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

  key cast( root_guid as /plmb/rpr_guid preserving type )        as RecipeProcessUUID,

      @Semantics.text: true
      descr                                                      as RecipeProcessElementDesc,

      /* Associations */
      _Language

}
where
  owner = 'RPR'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PLMB/RCP_DESCR"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"VERSION":0
}
}*/