C_PurReqnProcessStatValueHelp
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)
| Source | Alias | Join Type |
|---|---|---|
| I_Processingstatus | I_Processingstatus | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA