APJ_V_JOB_STATUS
Status eines Application Jobs lesen
APJ_V_JOB_STATUS is a CDS View that provides data about "Status eines Application Jobs lesen" in SAP S/4HANA. It reads from 3 data sources (APJ_V_JOB_STATUS_INT, dd07t, dd07t) and exposes 5 fields with key fields jobname, jobcount.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| APJ_V_JOB_STATUS_INT | runs | from |
| dd07t | text | left_outer |
| dd07t | text_e | left_outer |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APJ_V_JOB_STAT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Status eines Application Jobs lesen | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | jobname | APJ_V_JOB_STATUS_INT | jobname | |
| KEY | jobcount | APJ_V_JOB_STATUS_INT | jobcount | |
| status | APJ_V_JOB_STATUS_INT | status | ||
| statustext | ||||
| created_by | APJ_V_JOB_STATUS_INT | created_by |
@AbapCatalog.sqlViewName: 'APJ_V_JOB_STAT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Status eines Application Jobs lesen'
define view APJ_V_JOB_STATUS
as select from APJ_V_JOB_STATUS_INT as runs
left outer join dd07t as text on runs.status = text.domvalue_l
and text.domname = 'APJ_STATUS'
and text.as4local = 'A'
and text.as4vers = '0000'
and text.ddlanguage = $session.system_language
left outer join dd07t as text_e on runs.status = text_e.domvalue_l
and text_e.domname = 'APJ_STATUS'
and text_e.as4local = 'A'
and text_e.as4vers = '0000'
and text_e.ddlanguage = 'E'
{
key runs.jobname as jobname,
key runs.jobcount as jobcount,
// runs.status_tech as status_tech,
runs.status as status,
coalesce(text.ddtext,text_e.ddtext) as statustext,
runs.created_by as created_by
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"APJ_V_JOB_STATUS_INT",
"DD07T"
],
"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