I_RO_SAFTProductValuation
RO SAFT Product Valuation
I_RO_SAFTProductValuation is a Basic CDS View that provides data about "RO SAFT Product Valuation" in SAP S/4HANA. It reads from 1 data source (v_mbew_md) and exposes 9 fields with key fields Product, ValuationArea, ValuationType. It has 1 association to related views. Part of development package GLO_LOG_SAFT_RO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| v_mbew_md | Valuation | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_Product | _Product | $projection.Product = _Product.Product |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IROSAFTPRDVAL | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | RO SAFT Product Valuation | view |
Fields (9)
@AbapCatalog.sqlViewName: 'IROSAFTPRDVAL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations:true
@ObjectModel:{
usageType.serviceQuality: #C,
usageType.sizeCategory : #XL,
usageType.dataClass: #MASTER
}
@VDM.viewType: #BASIC
@EndUserText.label: 'RO SAFT Product Valuation'
// Scope of this view is V_MBEW _MD no fields from redirect views should be added
define view I_RO_SAFTProductValuation as select from v_mbew_md as Valuation
association [1..1] to I_Product as _Product on $projection.Product = _Product.Product {
key cast ( Valuation.matnr as productnumber preserving type ) as Product,
key Valuation.bwkey as ValuationArea,
key Valuation.bwtar as ValuationType,
Valuation.lvorm as IsMarkedForDeletion,
cast (Valuation.vprsv as inventoryvaluationprocedure preserving type ) as InventoryValuationProcedure,
cast (Valuation.xlifo as boole_d preserving type) as IsLIFOAndFIFORelevant,
Valuation.mypol as LIFOValuationPoolNumber,
Valuation.bklas as ValuationClass,
_Product
}
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