I_InspLotApprovalStatusVH

DDL: I_INSPLOTAPPROVALSTATUSVH Type: view_entity COMPOSITE

Inspection Lot with Approval Status

I_InspLotApprovalStatusVH is a Composite CDS View that provides data about "Inspection Lot with Approval Status" in SAP S/4HANA. It reads from 1 data source (I_SystemStatusText) and exposes 4 fields with key fields SystemStatus, Language.

Data Sources (1)

SourceAliasJoin Type
I_SystemStatusText I_SystemStatusText from

Annotations (12)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Inspection Lot with Approval Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #COMPOSITE view
ObjectModel.resultSet.sizeCategory #XS view
Search.searchable true view
ObjectModel.representativeKey SystemStatus view
Consumption.ranked true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SystemStatus SystemStatus
KEY Language Language
SystemStatusShortName SystemStatusShortName
SystemStatusName SystemStatusName
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label:'Inspection Lot with Approval Status'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType:{
  serviceQuality: #X,
  sizeCategory: #S,
  dataClass: #MIXED
}
@VDM.viewType: #COMPOSITE
@ObjectModel.resultSet.sizeCategory: #XS
@Search.searchable: true
@ObjectModel.representativeKey :'SystemStatus'
@Consumption.ranked: true

define view entity I_InspLotApprovalStatusVH
  as select from I_SystemStatusText

{

  key SystemStatus,
  key Language,
      @Search: { defaultSearchElement: true, ranking: #HIGH,  fuzzinessThreshold: 0.7 }
      @ObjectModel: { text.element:  [ 'SystemStatusName' ] }
      SystemStatusShortName,
      @Search: { defaultSearchElement: true, ranking: #LOW,  fuzzinessThreshold: 0.7 }
      @Semantics.text: true
      SystemStatusName
}

where
       Language     = $session.system_language
  and(
       SystemStatus = 'I0325' 
    or SystemStatus = 'I0322'
  )
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SYSTEMSTATUSTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/