I_ChmlSuplrMatlDataStsVH

DDL: I_CHMLSUPLRMATLDATASTSVH Type: view COMPOSITE Package: EHFND_BO_CSM

Value Help for Supplier Material Data Status

I_ChmlSuplrMatlDataStsVH is a Composite CDS View that provides data about "Value Help for Supplier Material Data Status" in SAP S/4HANA. It reads from 1 data source (I_ChmlSuplrMatlDataSts) and exposes 1 field. Part of development package EHFND_BO_CSM.

Data Sources (1)

SourceAliasJoin Type
I_ChmlSuplrMatlDataSts ChmlSuplrMatlDataSts from

Annotations (14)

NameValueLevelField
EndUserText.label Value Help for Supplier Material Data Status view
AbapCatalog.sqlViewName ICSUPMATDSTSVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.representativeKey ChmlSuplrMatlDataStatus view
Metadata.ignorePropagatedAnnotations true view

Fields (1)

KeyFieldSource TableSource FieldDescription
ChmlSuplrMatlDataStatusName
@EndUserText.label: 'Value Help for Supplier Material Data Status'

@AbapCatalog:
{
  -- SQL view name (16 characters)
  sqlViewName: 'ICSUPMATDSTSVH',

  --If it's true, the filter conditions are compared and, if they match, the associated join expression is evaluated only once
  compiler.compareFilter: true,
  preserveKey: true
}

--Access Control: Authorizations Checks
@AccessControl:
{
  authorizationCheck: #NOT_REQUIRED
}

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

--VDM view type
@VDM.viewType: #COMPOSITE

@ObjectModel:
{
  dataCategory: #VALUE_HELP,
  resultSet.sizeCategory: #XS,
  
  --Performance Annotations
  usageType:
  {
    dataClass: #CUSTOMIZING,
    sizeCategory: #S,
    serviceQuality: #B
  },
  representativeKey: 'ChmlSuplrMatlDataStatus'
}

@Metadata.ignorePropagatedAnnotations: true

define view I_ChmlSuplrMatlDataStsVH
  --Select data from customizing basic view 'Chemical Supplier Material Data Status'
  as select from I_ChmlSuplrMatlDataSts as ChmlSuplrMatlDataSts
{
      --Supplier Material Data Status
      @ObjectModel.text.element:  [ 'ChmlSuplrMatlDataStatusName' ] 
  key ChmlSuplrMatlDataStatus,

      --Description of Status
      @UI.hidden: true
      @Semantics.text: true
      _Text[1: Language = $session.system_language ].ChmlSuplrMatlDataStatusName
}