C_BufPositioningProdVH
Product Value Help
C_BufPositioningProdVH is a Consumption CDS View that provides data about "Product Value Help" in SAP S/4HANA. It reads from 1 data source (I_Product) and exposes 8 fields with key field Product. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Product | I_Product | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_ProductText | _Text | $projection.Product = _Text.Product and _Text.Language = $session.system_language |
| [0..1] | I_Producttype | _ProductType | $projection.ProductType = _ProductType.ProductType |
| [0..1] | I_ProductGroup | _ProductGroup | $projection.ProductGroup = _ProductGroup.MaterialGroup |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Product Value Help | view | |
| Search.searchable | true | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| Consumption.ranked | true | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Product | Product | Material | |
| ProductName | _Text | ProductName | Product Description test | |
| ProductType | ProductType | Material Type | ||
| ProductGroup | ProductGroup | Material Group | ||
| BaseUnit | BaseUnit | Base Unit of Measure | ||
| AuthorizationGroup | AuthorizationGroup | |||
| _ProductType | _ProductType | |||
| _ProductGroup | _ProductGroup |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Product Value Help'
@Search.searchable: true
@VDM.viewType: #CONSUMPTION
@ObjectModel.dataCategory: #VALUE_HELP
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
@Consumption.ranked: true
define view entity C_BufPositioningProdVH
as select from I_Product
association [0..1] to I_ProductText as _Text on $projection.Product = _Text.Product
and _Text.Language = $session.system_language
//For DCL Checks
association [0..1] to I_Producttype as _ProductType on $projection.ProductType = _ProductType.ProductType
association [0..1] to I_ProductGroup as _ProductGroup on $projection.ProductGroup = _ProductGroup.MaterialGroup
{
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@ObjectModel.text.element: ['ProductName']
@EndUserText.label: 'Material'
key Product,
@EndUserText.label: 'Product Description test'
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
_Text.ProductName,
@EndUserText.label: 'Material Type'
ProductType,
@EndUserText.label: 'Material Group'
ProductGroup,
@EndUserText.label: 'Base Unit of Measure'
BaseUnit,
//For DCL Check
@Consumption.hidden: true
AuthorizationGroup,
@Consumption.hidden: true
_ProductType,
@Consumption.hidden: true
_ProductGroup
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PRODUCT",
"I_PRODUCTTEXT"
],
"ASSOCIATED":
[
"I_PRODUCTGROUP",
"I_PRODUCTTYPE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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