P_ProcurementStatus
P_ProcurementStatus is a Composite CDS View in SAP S/4HANA. It reads from 1 data source (I_StatusObjectUUIDStatus) and exposes 3 fields with key fields StatusObjectUUID, StatusCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_StatusObjectUUIDStatus | I_StatusObjectUUIDStatus | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | PPRCRSTAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.private | true | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StatusObjectUUID | StatusObjectUUID | ||
| KEY | StatusCode | StatusCode | ||
| StatusProfile | StatusProfile |
@AbapCatalog.sqlViewName: 'PPRCRSTAT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
//@EndUserText.label: 'Procurement Status for Spare Part Item'
@VDM.viewType: #COMPOSITE
@VDM.private: true
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
define view P_ProcurementStatus
as select from I_StatusObjectUUIDStatus
{
key StatusObjectUUID,
key StatusCode,
StatusProfile
}
where
StatusCode like 'I8%'
and StatusIsActive = 'X'
group by
StatusObjectUUID,
StatusCode,
StatusProfile
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_STATUSOBJECTUUIDSTATUS"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"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