I_EHSLocationStatus

DDL: I_EHSLOCATIONSTATUS SQL: ILOCSTATUS Type: view BASIC

EHS Location Status

I_EHSLocationStatus is a Basic CDS View (Dimension) that provides data about "EHS Location Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field EHSLocationStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_EHSLocationStatusText _Text $projection.EHSLocationStatus = _Text.EHSLocationStatus

Annotations (13)

NameValueLevelField
EndUserText.label EHS Location Status view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
ObjectModel.representativeKey EHSLocationStatus view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILOCSTATUS view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ObjectModel.resultSet.sizeCategory #XS view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY EHSLocationStatus
_Text _Text
@EndUserText.label: 'EHS Location Status'
@Analytics: { dataCategory:#DIMENSION , dataExtraction.enabled:true }
@VDM.viewType: #BASIC
@ObjectModel.representativeKey: 'EHSLocationStatus'
@AccessControl.authorizationCheck: #NOT_REQUIRED

@AbapCatalog.sqlViewName: 'ILOCSTATUS'
@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:  #L,         // < 10.000.000

                         dataClass: #META } 
@ObjectModel.resultSet.sizeCategory: #XS
define view I_EHSLocationStatus as select from dd07l
    association [0..*] to I_EHSLocationStatusText as _Text on $projection.EHSLocationStatus = _Text.EHSLocationStatus
{
    @ObjectModel.text.association: '_Text'
    key cast( substring( domvalue_l, 1, 2 ) as ehfnd_loc_status_nc preserving type ) as EHSLocationStatus, 
    @ObjectModel.association.boundFields.dataMatchesSourceAndTargetTypes: true
    _Text
}
where dd07l.domname  = 'EHFND_LOC_STATUS'
  and dd07l.as4local = 'A'
    
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_EHSLOCATIONSTATUSTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/