C_SalesInsightMaterialVH

DDL: C_SALESINSIGHTMATERIALVH SQL: CSIMATERIALVH Type: view CONSUMPTION Package: VDM_SD_SP

Sales Insight: Material Value Help

C_SalesInsightMaterialVH is a Consumption CDS View that provides data about "Sales Insight: Material Value Help" in SAP S/4HANA. It reads from 1 data source (I_Product) and exposes 4 fields with key field Material. Part of development package VDM_SD_SP.

Data Sources (1)

SourceAliasJoin Type
I_Product I_Product from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CSIMATERIALVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Sales Insight: Material Value Help view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
Search.searchable true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Material Product
AuthorizationGroup _ProductType AuthorizationGroup
MaterialAuthorizationGroup _ProductGroup AuthorizationGroup
_Text _Text
@AbapCatalog.sqlViewName: 'CSIMATERIALVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #('TRANSACTIONAL_DATA')
@EndUserText.label: 'Sales Insight: Material Value Help'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #MASTER
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #CONSUMPTION
@Search.searchable: true

define view C_SalesInsightMaterialVH 
    as select from I_Product 
{
    @Search.defaultSearchElement: true
    @Search.fuzzinessThreshold: 0.7
    @ObjectModel.text.association: '_Text'
    key Product as Material,
    
    @UI.hidden: true
    _ProductType.AuthorizationGroup,
    @UI.hidden: true
    _ProductGroup.AuthorizationGroup as MaterialAuthorizationGroup,    
    
    _Text
}