I_EHSLocAllClassifiersText

DDL: I_EHSLOCALLCLASSIFIERSTEXT Type: view COMPOSITE Package: EHFND_BO_LOC_IMPL

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. Part of development package EHFND_BO_LOC_IMPL.

Data Sources (1)

SourceAliasJoin Type
P_EHSLOCCLASSIFIERS P_EHSLOCCLASSIFIERS from

Annotations (9)

NameValueLevelField
EndUserText.label All classifiers concatenated view
AbapCatalog.sqlViewName ILOCALLCLASSTXT view
AbapCatalog.compiler.compareFilter 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
EHSLocClassifiersText Classifiers
EHSClassifiersLongText
@EndUserText.label: 'All classifiers concatenated'

@AbapCatalog:
{
  sqlViewName: 'ILOCALLCLASSTXT',
  compiler.compareFilter: 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_Langu: $session.system_language)
{

  key cast( EHSLocationUUID as ehfnd_location_uuid_ref preserving type )   as EHSLocationUUID,

      Classifiers                                                          as EHSLocClassifiersText,
      cast( ClassifiersLong as ehfnd_loc_classifiers_all preserving type ) as EHSClassifiersLongText

}