P_EHSLocationWithCharKey

DDL: P_EHSLOCATIONWITHCHARKEY SQL: PEHSLOCATIONCHAR Type: view BASIC Package: EHFND_BO_LOC_IMPL

Delivers location with char32 key and raw key

P_EHSLocationWithCharKey is a Basic CDS View that provides data about "Delivers location with char32 key and raw key" in SAP S/4HANA. It reads from 1 data source (ehfndd_loc_root) and exposes 3 fields with key field EHSLocationUUID. Part of development package EHFND_BO_LOC_IMPL.

Data Sources (1)

SourceAliasJoin Type
ehfndd_loc_root ehfndd_loc_root from

Annotations (9)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PEHSLOCATIONCHAR view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationUUID
EHSLocationID id
EHSLocationCharKey
@VDM.private: true
@VDM.viewType: #BASIC

@AccessControl.authorizationCheck: #NOT_REQUIRED

@AbapCatalog.sqlViewName: 'PEHSLOCATIONCHAR'
@AbapCatalog.compiler.compareFilter: true

// Client handling by session

@ClientHandling.algorithm: #SESSION_VARIABLE

// used for BOBF Master Data Object

@ObjectModel.usageType:{ serviceQuality: #C,        // < 15 msec

                         sizeCategory:  #M,         // < 100.000

                         dataClass: #MASTER }
                         
define view P_EHSLocationWithCharKey  as select from ehfndd_loc_root
{
  key cast( db_key as ehfnd_location_uuid_ref preserving type) as EHSLocationUUID,
  id as EHSLocationID,
  bintohex(db_key) as EHSLocationCharKey  
}