I_JITCustomerStatusText

DDL: I_JITCUSTOMERSTATUSTEXT Type: view_entity BASIC

JIT Customer Status Text

I_JITCustomerStatusText is a Basic CDS View that provides data about "JIT Customer Status Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, JITCustomerStatus. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language
[0..1] I_JITCustomerStatus _JITCustomerStatus $projection.JITCustomerStatus = _JITCustomerStatus.JITCustomerStatus

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.technicalName IJITCUSTSTATUST view
EndUserText.label JIT Customer Status Text view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey JITCustomerStatus 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 (5)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage
KEY JITCustomerStatus
JITCustomerStatusText ddtext
_Language _Language
_JITCustomerStatus _JITCustomerStatus
@AccessControl.authorizationCheck   : #NOT_REQUIRED
@Analytics.technicalName            : 'IJITCUSTSTATUST'
@EndUserText.label                  : 'JIT Customer Status Text'
@ObjectModel                        : { dataCategory            : #TEXT,
                                        modelingPattern         : #LANGUAGE_DEPENDENT_TEXT,
                                        representativeKey       : 'JITCustomerStatus',
                                        supportedCapabilities   : [ #LANGUAGE_DEPENDENT_TEXT, #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_JITCustomerStatusText
  as select from dd07t

  association [0..1] to I_Language          as _Language          on $projection.Language = _Language.Language

  /*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ] } */
  association [0..1] to I_JITCustomerStatus as _JITCustomerStatus on $projection.JITCustomerStatus = _JITCustomerStatus.JITCustomerStatus
{
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key ddlanguage                                                               as Language,
      @ObjectModel.text.element: ['JITCustomerStatusText']
      @ObjectModel.foreignKey.association: '_JITCustomerStatus'
  key cast ( substring( domvalue_l, 1, 1 ) as njit_cust_stat preserving type ) as JITCustomerStatus,
      @Semantics.text: true
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Search.ranking: #LOW
      ddtext                                                                   as JITCustomerStatusText,
      _Language,
      _JITCustomerStatus
}
where
      domname  = 'NJIT_CUST_STAT'
  and as4local = 'A'