I_RecipeStreamQuantity

DDL: I_RECIPESTREAMQUANTITY SQL: IRFOSTRQTY Type: view BASIC

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.

Data Sources (1)

SourceAliasJoin Type
/plmi/rfo_str_q /plmi/rfo_str_q from

Annotations (10)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/PLMI/RFO_STR_Q"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/