A_RecipeProcessParam

DDL: A_RECIPEPROCESSPARAM SQL: ARPRPARAM Type: view COMPOSITE

Recipe Process Parameters

A_RecipeProcessParam is a Composite CDS View that provides data about "Recipe Process Parameters" in SAP S/4HANA. It reads from 1 data source (I_RecipeProcessParam) and exposes 16 fields with key field RecipeProcessParamUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_RecipeProcessParam I_RecipeProcessParam from

Associations (1)

CardinalityTargetAliasCondition
[0..*] A_RecipeProcessParamText _RecipeProcessParamDesc

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName ARPRPARAM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
ObjectModel.representativeKey RecipeProcessParamUUID view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.createEnabled false view
ObjectModel.updateEnabled false view
ObjectModel.deleteEnabled false view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Recipe Process Parameters view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY RecipeProcessParamUUID RecipeProcessParamUUID
RecipeProcessParam RecipeProcessParam
RecipeProcessParamUnit RecipeProcessParamUnit
RecipeProcessParamUnitIsFxd RecipeProcessParamUnitIsFxd
RecipeProcessParamTgtVal RecipeProcessParamTgtVal
RecipeProcessParamTgtValIsFxd RecipeProcessParamTgtValIsFxd
RecipeProcessParamMinVal RecipeProcessParamMinVal
RecipeProcessParamMinValIsFxd RecipeProcessParamMinValIsFxd
RecipeProcessParamMaxVal RecipeProcessParamMaxVal
RecipeProcessParamMaxValIsFxd RecipeProcessParamMaxValIsFxd
RecipeProcessParamDecPlaces RecipeProcessParamDecPlaces
RecipeProcessParamGroup RecipeProcessParamGroup
RecipeProcessParamClass RecipeProcessParamClass
RecipeProcessParamIsObsolete RecipeProcessParamIsObsolete
RecipeProcessParamIsDeleted RecipeProcessParamIsDeleted
_RecipeProcessParamDesc _RecipeProcessParamDesc
@AbapCatalog.sqlViewName: 'ARPRPARAM'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #COMPOSITE
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API

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

@ObjectModel.createEnabled: false
@ObjectModel.updateEnabled: false
@ObjectModel.deleteEnabled: false

@Metadata.ignorePropagatedAnnotations: true

@EndUserText.label: 'Recipe Process Parameters'
define root view A_RecipeProcessParam
  as select from I_RecipeProcessParam
  composition [0..*] of A_RecipeProcessParamText as _RecipeProcessParamDesc
{
  key RecipeProcessParamUUID,

      RecipeProcessParam,
      RecipeProcessParamUnit,
      RecipeProcessParamUnitIsFxd,
      RecipeProcessParamTgtVal,
      RecipeProcessParamTgtValIsFxd,
      RecipeProcessParamMinVal,
      RecipeProcessParamMinValIsFxd,
      RecipeProcessParamMaxVal,
      RecipeProcessParamMaxValIsFxd,
      RecipeProcessParamDecPlaces,
      RecipeProcessParamGroup,
      RecipeProcessParamClass,
      RecipeProcessParamIsObsolete,
      RecipeProcessParamIsDeleted,

      _RecipeProcessParamDesc

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_RECIPEPROCESSPARAM"
],
"ASSOCIATED":
[
"A_RECIPEPROCESSPARAMTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/