C_PurReqnProcessStatValueHelp

DDL: C_PURREQNPROCESSSTATVALUEHELP SQL: CPURREQPRSSTATVH Type: view CONSUMPTION

Processing status of purchase requisition

C_PurReqnProcessStatValueHelp is a Consumption CDS View that provides data about "Processing status of purchase requisition" in SAP S/4HANA. It reads from 1 data source (I_Processingstatus) and exposes 2 fields with key field ProcessingStatus.

Data Sources (1)

SourceAliasJoin Type
I_Processingstatus I_Processingstatus from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName CPURREQPRSSTATVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Processing status of purchase requisition view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.representativeKey ProcessingStatus view
ClientHandling.type #INHERITED view
VDM.lifecycle.contract.type #NONE view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.dataCategory #VALUE_HELP view
Consumption.ranked true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ProcessingStatus ProcessingStatus Processing Status
DomainText Processing Status Description
@AbapCatalog.sqlViewName: 'CPURREQPRSSTATVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Processing status of purchase requisition'

@VDM.viewType: #CONSUMPTION
@Search.searchable: true
@ObjectModel.representativeKey: 'ProcessingStatus'
@ClientHandling.type: #INHERITED
@VDM.lifecycle.contract.type : #NONE 
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.dataCategory: #VALUE_HELP
@Consumption.ranked: true

define view C_PurReqnProcessStatValueHelp

  as select from I_Processingstatus

{

      @ObjectModel.text.element: [ 'DomainText' ]
      @EndUserText.label: 'Processing Status'
     // @Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.9}

     // @Search: { ranking: #HIGH }

  key ProcessingStatus,

      @Semantics.text: true
      @EndUserText.label: 'Processing Status Description'
    //  @Search: { ranking: #LOW }

      @Search: { defaultSearchElement: true, ranking: #LOW }
      @UI.hidden: false                         // DO NOT REMOVE : Overriding @UI.hidden: true in the underlying view

      _Text[1: Language = $session.system_language].ProcessingStatusName as DomainText

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PROCESSINGSTATUS",
"I_PROCESSINGSTATUSTEXT"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/