Rv_I_Rspm_Process_Status
Rv_I_Rspm_Process_Status is a CDS View of category Dimension in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field processStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | RVIPROCSTAT | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| ObjectModel.representativeKey | processStatus | view | |
| ClientDependent | false | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.compiler.compareFilter | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | processStatus | |||
| _text | _text |
//@RV.viewType: #RANGE
@AbapCatalog.sqlViewName: 'RVIPROCSTAT' // 11
@Analytics: { dataCategory: #DIMENSION,
dataExtraction.enabled: true }
@ObjectModel.representativeKey: 'processStatus'
@ClientDependent: false
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter: true
define view Rv_I_Rspm_Process_Status
(
processStatus,
_text
)
as
select from dd07l
association[0..*] to Rv_I_Rspm_Process_StatusT as _text on _text.processStatus = $projection.processStatus
{
@ObjectModel.text.association: '_text'
key cast( domvalue_l as rspm_process_status ) as processStatus,
_text
} where domname = 'RSPM_PROCESS_STATUS' and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"RV_I_RSPM_PROCESS_STATUST"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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