I_RECIPEPROCESSPARAMVALUE

CDS View

Recipe Process Parameter Value

I_RECIPEPROCESSPARAMVALUE is a CDS View in S/4HANA. Recipe Process Parameter Value. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_RecipeProcessParamValueTP view from TRANSACTIONAL Recipe Process Parameter Value (Transactional Processing)
@AbapCatalog.sqlViewName: 'IRPRPARAMVAL'
@AbapCatalog.compiler.compareFilter: true

@AccessControl.authorizationCheck: #NOT_REQUIRED

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.representativeKey: 'RecipeProcessParamValUUID'

@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MASTER

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

@EndUserText.label: 'Recipe Process Parameter Value'

define view I_RecipeProcessParamValue
  as select from /plmb/rpr_pp_val

  association [1..1] to I_Recipe                      as _Recipe                      on $projection.RecipeProcessUUID = _Recipe.RecipeProcessUUID

  association [0..1] to I_RecipeProcessParam          as _RecipeProcessParam          on $projection.RecipeProcessParamUUID = _RecipeProcessParam.RecipeProcessParamUUID

  // Texts

  association [0..*] to I_RecipeProcessParamValueText as _RecipeProcessParamValueDesc on $projection.RecipeProcessParamValUUID = _RecipeProcessParamValueDesc.RecipeProcessParamValUUID

{
  key pp_val_guid                                                   as RecipeProcessParamValUUID,

      rpr_guid                                                      as RecipeProcessUUID,
      pe_guid                                                       as RecipeProcessElementUUID,
      pp_guid                                                       as RecipeProcessParamUUID,
      eqr_guid                                                      as RecipeProcessEquipRqmtUUID,

      uom                                                           as RecipeProcessParamUnit,
      target_value                                                  as RecipeProcessParamTgtVal,
      min_value                                                     as RecipeProcessParamMinVal,
      max_value                                                     as RecipeProcessParamMaxVal,

      //RPR_ORIGIN

      cast ( sequence as /plmb/rpr_pp_seq_vdm preserving type )     as RecipeProcessParamSqncNmbr,

      _Recipe.RecipeUUID,

      //SYMBOL_NAME

      //CALC_RULE

      //ORIGIN_GUID

      //PP_VAL_GUID_LINK

      //RCP_GUID_LINK

      //LINK_TYPE


      _RecipeProcessParam,
      _Recipe,

      // Texts

      _RecipeProcessParamValueDesc
}