I_RECIPEPROCESSPARAM
Recipe Process Parameter
I_RECIPEPROCESSPARAM is a CDS View in S/4HANA. Recipe Process Parameter. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_RecipeProcessParam | view | from | COMPOSITE | Recipe Process Parameters |
| ESH_N_RPR_PP_H | view | from | Anchor view -RPR_PP_H |
@AbapCatalog.sqlViewName: 'IRPRPARAM'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'RecipeProcessParamUUID'
@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'
define view I_RecipeProcessParam
as select from /plmb/rpr_pp_m
// Texts
association [0..*] to I_RecipeProcessParamText as _RecipeProcessParamDesc on $projection.RecipeProcessParamUUID = _RecipeProcessParamDesc.RecipeProcessParamUUID
association [1..1] to I_UnitOfMeasure as _UnitOfMeasure on $projection.RecipeProcessParamUnit = _UnitOfMeasure.UnitOfMeasure
{
key pp_guid as RecipeProcessParamUUID,
pp_name as RecipeProcessParam,
def_uom as RecipeProcessParamUnit,
def_uom_fix as RecipeProcessParamUnitIsFxd,
def_target_value as RecipeProcessParamTgtVal,
def_target_fix as RecipeProcessParamTgtValIsFxd,
def_min_value as RecipeProcessParamMinVal,
def_min_fix as RecipeProcessParamMinValIsFxd,
def_max_value as RecipeProcessParamMaxVal,
def_max_fix as RecipeProcessParamMaxValIsFxd,
def_dec_places as RecipeProcessParamDecPlaces,
pp_group_id as RecipeProcessParamGroup,
pp_class as RecipeProcessParamClass,
pp_obsolete as RecipeProcessParamIsObsolete,
pp_deleted as RecipeProcessParamIsDeleted,
created_by as CreatedByUser,
created_timestmp as CreationDateTime,
changed_by as LastChangedByUser,
changed_timestmp as LastChangeDateTime,
// Texts
_RecipeProcessParamDesc,
_UnitOfMeasure
}