I_RecipeStreamQuantity
Recipe Formula Stream Quantity
I_RecipeStreamQuantity is a Basic CDS View that provides data about "Recipe Formula Stream Quantity" in SAP S/4HANA. It reads from 1 data source (/plmi/rfo_str_q) and exposes 5 fields with key fields ExplosionScope, RecipeUUID, RcpFmlaUUID, RcpFmlaItemUUID. Part of development package VDM_PLMB_RCA.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /plmi/rfo_str_q | /plmi/rfo_str_q | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IRFOSTRQTY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Recipe Formula Stream Quantity | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ExplosionScope | expl_scope | ||
| KEY | RecipeUUID | rcp_guid | ||
| KEY | RcpFmlaUUID | rfo_guid | ||
| KEY | RcpFmlaItemUUID | rfo_item_guid | ||
| RcpFmlaItemStreamQuantityInKg | strmassabsfloat |
@AbapCatalog.sqlViewName: 'IRFOSTRQTY'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Recipe Formula Stream Quantity'
define view I_RecipeStreamQuantity
as select from /plmi/rfo_str_q
{
// /plmi/rfo_str_q
key expl_scope as ExplosionScope,
key rcp_guid as RecipeUUID,
key rfo_guid as RcpFmlaUUID,
key rfo_item_guid as RcpFmlaItemUUID,
strmassabsfloat as RcpFmlaItemStreamQuantityInKg
}
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