I_EHSLocAllClassifiersText

DDL: I_EHSLOCALLCLASSIFIERSTEXT Type: view COMPOSITE

All classifiers concatenated

I_EHSLocAllClassifiersText is a Composite CDS View that provides data about "All classifiers concatenated" in SAP S/4HANA. It reads from 1 data source (P_EHSLOCCLASSIFIERS) and exposes 3 fields with key field EHSLocationUUID.

Data Sources (1)

SourceAliasJoin Type
P_EHSLOCCLASSIFIERS P_EHSLOCCLASSIFIERS from

Annotations (10)

NameValueLevelField
EndUserText.label All classifiers concatenated view
AbapCatalog.sqlViewName ILOCALLCLASSTXT 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.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #C view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationUUID EHSLocationUUID
EHSLocClassifiersText Classifiers
EHSClassifiersLongText ClassifiersLong
@EndUserText.label: 'All classifiers concatenated'

@AbapCatalog:
{
  sqlViewName: 'ILOCALLCLASSTXT',
  compiler.compareFilter: true,
  preserveKey:true
}

// no authorization check required because view only reads customizing for which a check is not needed

@AccessControl.authorizationCheck: #NOT_REQUIRED

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

@VDM.viewType: #COMPOSITE

@ObjectModel:
{
  usageType:
  {
    dataClass: #MIXED,
    sizeCategory: #S,
    serviceQuality: #C
  }
}
define view I_EHSLocAllClassifiersText
  as select from P_EHSLOCCLASSIFIERS(P_Mandt:$session.client, P_Langu: $session.system_language)
 {

  key EHSLocationUUID,
  
  Classifiers as EHSLocClassifiersText,
  ClassifiersLong as EHSClassifiersLongText
  
}