P_ChmlSuplrMatlDataStsCritlty

DDL: P_CHMLSUPLRMATLDATASTSCRITLTY Type: view CONSUMPTION

Criticality of Data Status

P_ChmlSuplrMatlDataStsCritlty is a Consumption CDS View that provides data about "Criticality of Data Status" in SAP S/4HANA. It reads from 1 data source (I_ChmlSuplrMatlDataSts) and exposes 2 fields.

Data Sources (1)

SourceAliasJoin Type
I_ChmlSuplrMatlDataSts DataStatus from

Annotations (8)

NameValueLevelField
EndUserText.label Criticality of Data Status view
AbapCatalog.sqlViewName PCSMDSTSCRIT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
VDM.private true view

Fields (2)

KeyFieldSource TableSource FieldDescription
ChmlSuplrMatlDataStatus
ChmlSuplrMatlDataStsCritlty
--Label of view
-- e.g. display as filter name in the consumption
@EndUserText.label: 'Criticality of Data Status'

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

  --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: #CONSUMPTION
--Private view
@VDM.private: true

define view P_ChmlSuplrMatlDataStsCritlty
  --Select data from basic view data status
  as select from I_ChmlSuplrMatlDataSts as DataStatus
{
      --Data status
  key DataStatus.ChmlSuplrMatlDataStatus,

      --Criticality of supplier status
      DataStatus.ChmlSuplrMatlDataStsCritlty
}