I_CostingValuationVariant
Valuation Variant in Costing
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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tck05 | tck05 | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_CostingValuationVarText | _Text | $projection.ValuationVariant = _Text.ValuationVariant |
Annotations (17)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IFICOSTVALNVAR | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | 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.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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ValuationVariant | bwvar | ||
| OverheadCostingSheet | kalsm | |||
| ExtProcuredMatlOvhdCostingSht | ||||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'IFICOSTVALNVAR',
compiler.compareFilter: true,
preserveKey: true }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API }
@Analytics: {
dataCategory: #DIMENSION,
dataExtraction.enabled: true
}
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #A,
sizeCategory: #S
},
supportedCapabilities: [
#ANALYTICAL_DIMENSION,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#SEARCHABLE_ENTITY ],
modelingPattern: #ANALYTICAL_DIMENSION,
representativeKey: 'ValuationVariant'
}
@Metadata.ignorePropagatedAnnotations: true
@Search.searchable: true
@EndUserText.label: 'Valuation Variant in Costing'
define view I_CostingValuationVariant
as select from tck05
association [0..*] to I_CostingValuationVarText as _Text on $projection.ValuationVariant = _Text.ValuationVariant
{
@Search: {
defaultSearchElement: true,
ranking: #HIGH
}
@ObjectModel.text.association: '_Text'
key bwvar as ValuationVariant,
kalsm as OverheadCostingSheet,
cast(kalsm_raw as fml_kalsm_raw preserving type) as ExtProcuredMatlOvhdCostingSht,
_Text
}
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