I_ProdValnClassByProdTypeVH
Value Help: Valuation Class for Product Type
I_ProdValnClassByProdTypeVH is a Composite CDS View that provides data about "Value Help: Valuation Class for Product Type" in SAP S/4HANA. It reads from 2 data sources (I_Producttype, I_Prodvaluationclass) and exposes 4 fields with key fields ValuationClass, ProductType. It has 1 association to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_Producttype | ProductType | inner |
| I_Prodvaluationclass | ValnClassByProdType | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Producttype | _ProductType | $projection.ProductType = _ProductType.ProductType |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IVALCLSBYPRDTYVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Value Help: Valuation Class for Product Type | view | |
| VDM.viewType | #COMPOSITE | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.representativeKey | ValuationClass | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Consumption.ranked | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ValuationClass | ValuationClass | ||
| KEY | ProductType | ProductType | ||
| _ValuationClassText | _ValuationClassText | |||
| _ProductType | _ProductType |
@AbapCatalog: {
sqlViewName: 'IVALCLSBYPRDTYVH',
compiler.compareFilter: true,
preserveKey: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Value Help: Valuation Class for Product Type'
@VDM.viewType: #COMPOSITE
@Search.searchable: true
@ObjectModel: {
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #B,
sizeCategory: #S
},
representativeKey: 'ValuationClass',
dataCategory: #VALUE_HELP
}
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
define view I_ProdValnClassByProdTypeVH
as select from I_Prodvaluationclass as ValnClassByProdType
inner join I_Producttype as ProductType on ValnClassByProdType.AcctCategoryRef = ProductType.AcctCategoryRef
association [0..1] to I_Producttype as _ProductType on $projection.ProductType = _ProductType.ProductType
{
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
key ValuationClass,
@ObjectModel.foreignKey.association: '_ProductType'
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.8,
ranking: #HIGH
}
@Consumption.valueHelpDefinition: { entity: { name: 'I_ProductTypeVH', element: 'ProductType' }}
key ProductType,
_ValuationClassText,
_ProductType
}
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