I_ProbSolvingProcVH

DDL: I_PROBSOLVINGPROCVH Type: view_entity COMPOSITE Package: VDM_QM_PROBSOLVINGPROC

Problem-Solving Process

I_ProbSolvingProcVH is a Composite CDS View that provides data about "Problem-Solving Process" in SAP S/4HANA. It reads from 1 data source (I_ProbSolvingProc) and exposes 5 fields with key field ProbSolvingProc. Part of development package VDM_QM_PROBSOLVINGPROC.

Data Sources (1)

SourceAliasJoin Type
I_ProbSolvingProc I_ProbSolvingProc from

Annotations (12)

NameValueLevelField
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.technicalName IPSP_VH view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.representativeKey ProbSolvingProc view
AccessControl.authorizationCheck #CHECK view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view
EndUserText.label Problem-Solving Process view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ProbSolvingProc ProbSolvingProc
ProbSolvingProcDesc ProbSolvingProcDesc
ProbSolvingProcType ProbSolvingProcType
Material Material
Plant Plant
@VDM.viewType: #COMPOSITE

@ObjectModel.dataCategory: #VALUE_HELP
@Analytics.technicalName: 'IPSP_VH'
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER]
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.sizeCategory: #M
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.representativeKey: 'ProbSolvingProc'
@AccessControl: { authorizationCheck: #CHECK }
@Search.searchable: true

@Metadata.ignorePropagatedAnnotations: true
@Consumption.ranked: true
@EndUserText.label: 'Problem-Solving Process'
define view entity I_ProbSolvingProcVH as select from I_ProbSolvingProc {

  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.8
  @Search.ranking: #HIGH
  key ProbSolvingProc,
  
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.7
  @Search.ranking: #LOW
  ProbSolvingProcDesc,
 
  @Consumption.hidden: true
  ProbSolvingProcType,
  
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.7
  @Search.ranking: #LOW
  Material,
  
  @Search.defaultSearchElement: true
  @Search.fuzzinessThreshold: 0.7
  @Search.ranking: #LOW
  Plant
 
}