I_RecipeProcessElementAssgmt
Recipe Process Element Assignment
I_RecipeProcessElementAssgmt is a Basic CDS View that provides data about "Recipe Process Element Assignment" in SAP S/4HANA. It reads from 1 data source (/plmb/rcp_assign) and exposes 6 fields with key fields RecipeUUID, RcpFmlaItemSourceFmlaItemUUID. It has 3 associations to related views. Part of development package VDM_PLMB_RFO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /plmb/rcp_assign | /plmb/rcp_assign | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Recipe | _Recipe | $projection.RecipeUUID = _Recipe.RecipeUUID |
| [1..1] | I_RecipeFormulaItem | _RecipeFormulaItem | $projection.RcpFmlaItemSourceFmlaItemUUID = _RecipeFormulaItem.RcpFmlaItemSourceFmlaItemUUID and $projection.RecipeUUID = _RecipeFormulaItem.RecipeUUID |
| [1..1] | I_RecipeProcessElement | _RecipeProcessElement | $projection.RecipeProcessElementUUID = _RecipeProcessElement.RecipeProcessElementUUID |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRPRASSIGN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | 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 Element Assignment | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RecipeUUID | rcp_guid | ||
| KEY | RcpFmlaItemSourceFmlaItemUUID | item_guid | ||
| RecipeProcessElementUUID | pe_guid | |||
| _Recipe | _Recipe | |||
| _RecipeFormulaItem | _RecipeFormulaItem | |||
| _RecipeProcessElement | _RecipeProcessElement |
@AbapCatalog.sqlViewName: 'IRPRASSIGN'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_ALLOWED
@ClientHandling.algorithm: #SESSION_VARIABLE
@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 Element Assignment'
define view I_RecipeProcessElementAssgmt
as select from /plmb/rcp_assign
association [1..1] to I_Recipe as _Recipe on $projection.RecipeUUID = _Recipe.RecipeUUID
association [1..1] to I_RecipeFormulaItem as _RecipeFormulaItem on $projection.RcpFmlaItemSourceFmlaItemUUID = _RecipeFormulaItem.RcpFmlaItemSourceFmlaItemUUID
and $projection.RecipeUUID = _RecipeFormulaItem.RecipeUUID
association [1..1] to I_RecipeProcessElement as _RecipeProcessElement on $projection.RecipeProcessElementUUID = _RecipeProcessElement.RecipeProcessElementUUID
{
key rcp_guid as RecipeUUID,
key item_guid as RcpFmlaItemSourceFmlaItemUUID,
pe_guid as RecipeProcessElementUUID,
_Recipe,
_RecipeFormulaItem,
_RecipeProcessElement
}
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