I_MRPControllerVH

DDL: I_MRPCONTROLLERVH Type: view_entity COMPOSITE

MRP Controller

I_MRPControllerVH is a Composite CDS View that provides data about "MRP Controller" in SAP S/4HANA. It reads from 1 data source (I_MRPController) and exposes 4 fields with key fields Plant, MRPController.

Data Sources (1)

SourceAliasJoin Type
I_MRPController I_MRPController from

Annotations (15)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #NOT_REQUIRED view
Analytics.technicalName IMRPCONTRLVH view
Consumption.ranked true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey MRPController view
ObjectModel.modelingPattern #NONE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #COMPOSITE view
EndUserText.label MRP Controller view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Plant Plant
KEY MRPController MRPController
MRPControllerName MRPControllerName
association_Plant
@AccessControl.authorizationCheck: #MANDATORY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Analytics.technicalName: 'IMRPCONTRLVH'
@Consumption.ranked: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'MRPController'
@ObjectModel.modelingPattern: #NONE
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER, #SEARCHABLE_ENTITY]
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #COMPOSITE
@EndUserText.label: 'MRP Controller'
// Dedicated VH view on privileged MRP Controller with MRP authorization object in DCLS


define view entity I_MRPControllerVH 
 as select from I_MRPController
{
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
  key Plant,
      @ObjectModel.text.element: ['MRPControllerName']
      @Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
  key MRPController,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      MRPControllerName,

      -- association
      @Consumption.hidden: true
      _Plant
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_MRPCONTROLLER"
],
"ASSOCIATED":
[
"I_PLANT"
],
"BASE":
[
"I_MRPCONTROLLER"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/