I_RecipeProcessParamText

DDL: I_RECIPEPROCESSPARAMTEXT SQL: IRPRPARAMTX Type: view BASIC Package: VDM_PLMB_RPR

Recipe Process Parameter Description

I_RecipeProcessParamText is a Basic CDS View that provides data about "Recipe Process Parameter Description" in SAP S/4HANA. It reads from 1 data source (/plmb/rcp_descr) and exposes 4 fields with key fields RecipeProcessParamUUID, Language. It has 1 association to related views. Part of development package VDM_PLMB_RPR.

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 IRPRPARAMTX view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey RecipeProcessParamUUID view
ObjectModel.dataCategory #TEXT 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 Parameter Description view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY RecipeProcessParamUUID
KEY Language langu
RecipeProcessParamDesc descr
_Language _Language
@AbapCatalog.sqlViewName: 'IRPRPARAMTX'
@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.representativeKey: 'RecipeProcessParamUUID'
@ObjectModel.dataCategory: #TEXT
@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 Parameter Description'

define view I_RecipeProcessParamText
  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_pp_guid preserving type )   as RecipeProcessParamUUID,

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

      // root_guid is the same as object_guid for PP_MASTER entries


      @Semantics.text: true
      descr                                                      as RecipeProcessParamDesc,

      /* Associations */
      _Language

}
where
  owner = 'PP_MASTER'