C_OnHandStockStatusVH

DDL: C_ONHANDSTOCKSTATUSVH SQL: CONHANDSTKSTSVH Type: view CONSUMPTION

Demand Driven Product On-Hand stock status value help

C_OnHandStockStatusVH is a Consumption CDS View that provides data about "Demand Driven Product On-Hand stock status value help" in SAP S/4HANA. It reads from 1 data source (I_OnHandStockStatusText) and exposes 2 fields with key field OnHandStockStatus.

Data Sources (1)

SourceAliasJoin Type
I_OnHandStockStatusText OnHandStockStatus from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CONHANDSTKSTSVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label Demand Driven Product On-Hand stock status value help view
VDM.viewType #CONSUMPTION view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #MASTER view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY OnHandStockStatus I_OnHandStockStatusText OnHandStockStatusCode
OnHandStockStatusDescription I_OnHandStockStatusText OnHandStockStatusDescription
@AbapCatalog.sqlViewName: 'CONHANDSTKSTSVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking:  #NOT_REQUIRED
//@Search.searchable: true


@EndUserText.label: 'Demand Driven Product On-Hand stock status value help'
@ObjectModel.semanticKey:  [ 'OnHandStockStatus' ]
@ObjectModel.representativeKey: ['OnHandStockStatus']
@VDM.viewType: #CONSUMPTION

@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.dataClass: #MASTER
define view C_OnHandStockStatusVH
  as select from I_OnHandStockStatusText as OnHandStockStatus
{
      //      @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }

      @ObjectModel.text.element: ['OnHandStockStatusDescription']
  key OnHandStockStatus.OnHandStockStatusCode        as OnHandStockStatus,
      OnHandStockStatus.OnHandStockStatusDescription as OnHandStockStatusDescription
}
where
  OnHandStockStatus.Language = $session.system_language
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ONHANDSTOCKSTATUSTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/