I_JITCallForwardingStatus

DDL: I_JITCALLFORWARDINGSTATUS Type: view_entity BASIC

JIT Call Forwarding Status

I_JITCallForwardingStatus is a Basic CDS View (Dimension) that provides data about "JIT Call Forwarding Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field JITCallForwardingStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_JITCallForwardingStsText _Text $projection.JITCallForwardingStatus = _Text.JITCallForwardingStatus

Annotations (13)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.entityBuffer.definitionAllowed true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
EndUserText.label JIT Call Forwarding Status view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey JITCallForwardingStatus view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY JITCallForwardingStatus
DomainValue domvalue_l
_Text _Text
@AccessControl.authorizationCheck          : #NOT_REQUIRED
@AbapCatalog.entityBuffer.definitionAllowed: true
@Analytics.dataCategory                    : #DIMENSION
@Analytics.internalName                    : #LOCAL
@EndUserText.label                         : 'JIT Call Forwarding Status'
@ObjectModel                               : { modelingPattern         : #ANALYTICAL_DIMENSION,
                                               representativeKey       : 'JITCallForwardingStatus',
                                               resultSet.sizeCategory  : #XS,
                                               supportedCapabilities   : [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ],
                                               usageType               : { dataClass       : #META,
                                                                           serviceQuality  : #A,
                                                                           sizeCategory    : #S }
                                             }
@Search.searchable                  : true
@VDM.viewType                       : #BASIC
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
/*+[hideWarning] { "IDS" : [ "KEY_CHECK/code>*/
define view entity I_JITCallForwardingStatus
  as select from dd07l
  /*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ] } */
  association [0..*] to I_JITCallForwardingStsText as _Text on $projection.JITCallForwardingStatus = _Text.JITCallForwardingStatus
{
      @ObjectModel.text.association: '_Text'
  key cast(substring( dd07l.domvalue_l, 1, 1) as njit_call_forwarding_status preserving type) as JITCallForwardingStatus,
      @Analytics.hidden: true
      @Consumption.hidden: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #HIGH
      domvalue_l                                                                              as DomainValue,
      _Text
}
where
      dd07l.domname  = 'NJIT_CALL_FORWARDING_STATUS'
  and dd07l.as4local = 'A'