I_RecipeProcessParam

DDL: I_RECIPEPROCESSPARAM SQL: IRPRPARAM Type: view BASIC

Recipe Process Parameter

I_RecipeProcessParam is a Basic CDS View that provides data about "Recipe Process Parameter" in SAP S/4HANA. It reads from 1 data source (/plmb/rpr_pp_m) and exposes 21 fields with key field RecipeProcessParamUUID. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
/plmb/rpr_pp_m /plmb/rpr_pp_m from

Associations (2)

CardinalityTargetAliasCondition
[0..*] I_RecipeProcessParamText _RecipeProcessParamDesc $projection.RecipeProcessParamUUID = _RecipeProcessParamDesc.RecipeProcessParamUUID
[1..1] I_UnitOfMeasure _UnitOfMeasure $projection.RecipeProcessParamUnit = _UnitOfMeasure.UnitOfMeasure

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IRPRPARAM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey RecipeProcessParamUUID view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Recipe Process Parameter view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY RecipeProcessParamUUID pp_guid
RecipeProcessParam pp_name
RecipeProcessParamUnit def_uom
RecipeProcessParamUnitIsFxd def_uom_fix
RecipeProcessParamTgtVal def_target_value
RecipeProcessParamTgtValIsFxd def_target_fix
RecipeProcessParamMinVal def_min_value
RecipeProcessParamMinValIsFxd def_min_fix
RecipeProcessParamMaxVal def_max_value
RecipeProcessParamMaxValIsFxd def_max_fix
RecipeProcessParamDecPlaces def_dec_places
RecipeProcessParamGroup pp_group_id
RecipeProcessParamClass pp_class
RecipeProcessParamIsObsolete pp_obsolete
RecipeProcessParamIsDeleted pp_deleted
CreatedByUser created_by
CreationDateTime created_timestmp
LastChangedByUser changed_by
LastChangeDateTime changed_timestmp
_RecipeProcessParamDesc _RecipeProcessParamDesc
_UnitOfMeasure _UnitOfMeasure
@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

}