I_Prodvaluationclass

DDL: I_PRODVALUATIONCLASS Type: view BASIC Package: VDM_MD_PRODUCT_DDIC

Valuation Class

I_Prodvaluationclass (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Product Valuation Class · Database & Data Management

I_Prodvaluationclass is a Basic CDS View (Dimension) that provides data about "Valuation Class" in SAP S/4HANA. It reads from 1 data source (t025) and exposes 3 fields with key field ValuationClass. It has 1 association to related views. Part of development package VDM_MD_PRODUCT_DDIC.

SAP Help Documentation

CategoryCDS Views for Product Master
Purpose
This CDS view provides a list of valuation classes which is present in the system. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users must also have authorization to access the Material Master Data for Plant. One of the following business catalogs needs to be assigned to a user to be able to use this CDS view: SAP_CMD_BC_PR_MAINT_PC: Master Data - Product Master

Structure
Further important fields Important fields in this view include the following: Field Name Description ValuationClass Valuation Class AcctCategoryRef Account Category Reference

SAP Business Warehouse (SAP BW) Extraction
Data extraction type - Data extraction not enabled Note The corresponding DataSource (Extractor) and this CDS view may have different functionalities. For details about the DataSource, see the related documentation on the SAP Help Portal at https://help.sap.com/viewer/p/BI_CONTENT_757 under Use SAP Library BI Content . For more information about data extraction, see Extracting Data Through CDS Views to SAP BW/4HANA .

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessDatabase & Data Management
Application ComponentLO-MD-MM-2CL
CapabilitiesData Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities,Data Source for Search,Analytical Dimension
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageDatabase and Data Management for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides a list of valuation classes which is present in the system.</p> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
t025 t025 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_Prodvaluationclasstxt _ValuationClassText $projection.ValuationClass = _ValuationClassText.ValuationClass

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IVALCLASS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Valuation Class view
Search.searchable true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey ValuationClass view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name ProductValuationClass view
ObjectModel.objectIdentifier.oidElement ProductValuationClassOID view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ValuationClass t025 bklas Valuation Class
AcctCategoryRef t025 kkref Account category reference
_ValuationClassText _ValuationClassText

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_Prodvaluationclass.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_Prodvaluationclass AS
SELECT
  t025.bklas AS ValuationClass,
  t025.kkref AS AcctCategoryRef
FROM t025
LEFT OUTER JOIN I_Prodvaluationclasstxt AS _ValuationClassText ON ValuationClass = _ValuationClassText.ValuationClass  -- association [0..*]
;