I_NutrientReferenceQuantity
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)
| Source | Alias | Join Type |
|---|---|---|
| I_RcpCalcRefQuantityBySpecType | rcpCalcRefQuantityBySpecType | from |
| I_SpecStdCompositionDefinition | specStdCompositionDefinition | inner |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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
}
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