I_IncidentReportingSource

DDL: I_INCIDENTREPORTINGSOURCE SQL: IINCREPSRC Type: view BASIC

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.

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
Analytics.dataExtraction.enabled true 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

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY IncidentReportingSourceCode
_Text _Text
@AbapCatalog.sqlViewName: 'IINCREPSRC'
@Analytics: { dataCategory:#DIMENSION , dataExtraction.enabled:true }
@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

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'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"I_INCIDENTREPORTINGSOURCETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/