I_IncidentReportingSource

DDL: I_INCIDENTREPORTINGSOURCE SQL: IINCREPSRC Type: view BASIC Package: EHHSS_BO_INC_IMPL

Incident Reporting Source

I_IncidentReportingSource is a Basic CDS View (Dimension) that provides data about "Incident Reporting Source" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field IncidentReportingSourceCode. It has 1 association to related views. Part of development package EHHSS_BO_INC_IMPL.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_IncidentReportingSourceText _Text $projection.IncidentReportingSourceCode = _Text.IncidentReportingSourceCode

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IINCREPSRC view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Incident Reporting Source view
ObjectModel.representativeKey IncidentReportingSourceCode view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.preserveKey true view
Analytics.internalName #LOCAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #META view
ObjectModel.resultSet.sizeCategory #XS view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY IncidentReportingSourceCode
_Text _Text
@AbapCatalog.sqlViewName: 'IINCREPSRC'
@Analytics: { dataCategory:#DIMENSION }
@VDM.viewType: #BASIC
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Incident Reporting Source'
@ObjectModel.representativeKey: 'IncidentReportingSourceCode'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.preserveKey:true
@Analytics.internalName:#LOCAL

@ObjectModel.usageType: {serviceQuality: #C, sizeCategory: #L, dataClass: #META}
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET]
@Metadata.ignorePropagatedAnnotations:true

define view I_IncidentReportingSource
  as select from dd07l
  association [0..*] to I_IncidentReportingSourceText as _Text on $projection.IncidentReportingSourceCode = _Text.IncidentReportingSourceCode
{
      @ObjectModel.text.association: '_Text'
  key cast(dd07l.domvalue_l as ehhss_inc_report_source_code) as IncidentReportingSourceCode,
      _Text
}
where
      dd07l.domname  = 'EHHSS_INC_REPORT_SOURCE_CODE'
  and dd07l.as4local = 'A'