I_ProdValnClassByProdTypeVH

DDL: I_PRODVALNCLASSBYPRODTYPEVH Type: view COMPOSITE Package: VDM_MD_PRODUCT

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. Part of development package VDM_MD_PRODUCT.

Data Sources (2)

SourceAliasJoin Type
I_Producttype ProductType inner
I_Prodvaluationclass ValnClassByProdType from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Producttype _ProductType $projection.ProductType = _ProductType.ProductType

Annotations (14)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY ValuationClass ValuationClass
KEY ProductType I_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
       }
       @UI.lineItem: [{ position: 10 }]
  key ValuationClass,

      @ObjectModel.foreignKey.association: '_ProductType'
      @Search: {
        defaultSearchElement: true,
        fuzzinessThreshold: 0.8,
        ranking: #HIGH
      }
      @Consumption.valueHelpDefinition: { entity: { name: 'I_ProductTypeVH', element: 'ProductType' }}
  key ProductType.ProductType,


      @UI.lineItem: [{ position: 20 }]
      _ValuationClassText,
      _ProductType
}