I_NutrientReferenceQuantity

DDL: I_NUTRIENTREFERENCEQUANTITY SQL: INUTRIENTREFQTY Type: view BASIC Package: VDM_PLMB_SPC_BAS_OP

Nutrient Reference Quantity

I_NutrientReferenceQuantity is a Basic CDS View that provides data about "Nutrient Reference Quantity" in SAP S/4HANA. It reads from 2 data sources (I_RcpCalcRefQuantityBySpecType, I_SpecStdCompositionDefinition) and exposes 3 fields with key field NutrientReferenceQuantityID. Part of development package VDM_PLMB_SPC_BAS_OP.

Data Sources (2)

SourceAliasJoin Type
I_RcpCalcRefQuantityBySpecType rcpCalcRefQuantityBySpecType from
I_SpecStdCompositionDefinition specStdCompositionDefinition inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName INUTRIENTREFQTY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey NutrientReferenceQuantityID view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #BASIC view
EndUserText.label Nutrient Reference Quantity view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY NutrientReferenceQuantityID
NutrientReferenceQuantity RcpCalcReferenceQuantity
NutrientReferenceUnitOfMeasure RcpCalcUnitOfMeasure
@AbapCatalog.sqlViewName: 'INUTRIENTREFQTY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true

@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.representativeKey: 'NutrientReferenceQuantityID'

@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #CUSTOMIZING

@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@VDM.viewType: #BASIC

@EndUserText.label: 'Nutrient Reference Quantity'
define view I_NutrientReferenceQuantity
  as select from I_RcpCalcRefQuantityBySpecType as rcpCalcRefQuantityBySpecType
    inner join   I_SpecStdCompositionDefinition as specStdCompositionDefinition on  rcpCalcRefQuantityBySpecType.SpecificationType       = specStdCompositionDefinition.ProdSpecCmpstnGroupSpecType
                                                                                and specStdCompositionDefinition.ProdSpecCompositionType = 'NUTRIENT'
{

  key '1'                      as NutrientReferenceQuantityID,

      RcpCalcReferenceQuantity as NutrientReferenceQuantity,
      RcpCalcUnitOfMeasure     as NutrientReferenceUnitOfMeasure

}