I_CostingValuationVariant

DDL: I_COSTINGVALUATIONVARIANT Type: view BASIC

Valuation Variant in Costing

I_CostingValuationVariant (Basic)

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

Costing Valuation Variant · Accounting and Financial Close

I_CostingValuationVariant is a Basic CDS View (Dimension) that provides data about "Valuation Variant in Costing" in SAP S/4HANA. It reads from 1 data source (tck05) and exposes 4 fields with key field ValuationVariant. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Product Cost Controlling
Data CategoryDIMENSION
Purpose
This CDS view provides information about settings for Valuation Variants in Product Cost Planning. 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 .

Structure
Further Important Fields Important fields in I_CostingValuationVariant include the following: Field Name Description Comment ValuationVariant Valuation variant in product costing Defines settings required for valuation of a cost estimate. OverheadCostingSheet Overhead costing sheet Defines how to calculate overhead costs. ExtProcuredMatlOvhdCostingSht Costing sheet for externally procured materials Can be used to apply specific overhead conditions for raw materials. Important fields in I_CostingValuationVarText include the following: Field Name Description ValuationVariant Valuation variant in product costing Language Language key ValuationVariantName Description of valuation variant

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentCO-PC-PCP
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities, Data Source for Data Extraction, Data Source for Search
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides information about settings for Valuation Variants in Product Cost Planning.</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
tck05 tck05 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CostingValuationVarText _Text $projection.ValuationVariant = _Text.ValuationVariant

Annotations (17)

NameValueLevelField
AbapCatalog.sqlViewName IFICOSTVALNVAR view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name CostingValuationVariant view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey ValuationVariant view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
EndUserText.label Valuation Variant in Costing view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ValuationVariant bwvar Valuation Variant in Costing
OverheadCostingSheet kalsm Costing Sheet for Calculating Overhead
ExtProcuredMatlOvhdCostingSht Costing Sheet for Externally Procured Materials
_Text _Text

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_CostingValuationVariant.
-- 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_CostingValuationVariant AS
SELECT
  bwvar AS ValuationVariant,
  kalsm AS OverheadCostingSheet,
  cast(kalsm_raw as fml_kalsm_raw preserving type) AS ExtProcuredMatlOvhdCostingSht
FROM tck05
LEFT OUTER JOIN I_CostingValuationVarText AS _Text ON ValuationVariant = _Text.ValuationVariant  -- association [0..*]
;