DHADM_MON_JobsOverview
Jobs overview
DHADM_MON_JobsOverview is a CDS View that provides data about "Jobs overview" in SAP S/4HANA. It reads from 2 data sources (dhcdc_rtacdprttn, dhcdc_rtcalcstat) and exposes 2 fields.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| dhcdc_rtacdprttn | acd | from |
| dhcdc_rtcalcstat | acp | inner |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Jobs overview | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MIXED | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| acd_id | dhcdc_rtacdprttn | acd_id | ||
| acp_id | dhcdc_rtcalcstat | acp_id |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Jobs overview'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #S,
dataClass: #MIXED
}
define view entity DHADM_MON_JobsOverview
as select from dhcdc_rtacdprttn as acd
inner join dhcdc_rtcalcstat as acp on acd.acd_id = acp.acd_id
{
acd.acd_id,
acp.acp_id
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DHCDC_RTACDPRTTN",
"DHCDC_RTCALCSTAT"
],
"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