A_RecipeProcessParam
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. Part of development package VDM_PLMB_RECIPE_API.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_RecipeProcessParam | I_RecipeProcessParam | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | A_RecipeProcessParamText | _RecipeProcessParamDesc | |
Annotations (16)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA