XAJ_JOB_APPL_LOG_OVERVIEW

DDL: XAJ_JOB_APPL_LOG_OVERVIEW SQL: XAJ_JOB_APP_LOG Type: view

CDS view for job name & application log

XAJ_JOB_APPL_LOG_OVERVIEW is a CDS View that provides data about "CDS view for job name & application log" in SAP S/4HANA. It reads from 2 data sources (APL_C_APPL_LOG_OVERVIEW, XAJ_JOB_LOG) and exposes 25 fields. It has 1 association to related views.

Data Sources (2)

SourceAliasJoin Type
APL_C_APPL_LOG_OVERVIEW appl_log from
XAJ_JOB_LOG job_log inner

Associations (1)

CardinalityTargetAliasCondition
[0..*] XAJ_JOB_LOG _TestAssociation _TestAssociation.log_handle_concat = $projection.log_handle

Annotations (3)

NameValueLevelField
AbapCatalog.sqlViewName XAJ_JOB_APP_LOG view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label CDS view for job name & application log view

Fields (25)

KeyFieldSource TableSource FieldDescription
job_name XAJ_JOB_LOG job_name Job No.
job_count XAJ_JOB_LOG job_count Job No.
log_handle APL_C_APPL_LOG_OVERVIEW log_handle Migration Log Handle
lognumber APL_C_APPL_LOG_OVERVIEW lognumber UUID
extnumber APL_C_APPL_LOG_OVERVIEW extnumber External ID
object APL_C_APPL_LOG_OVERVIEW object TRFM Object
obj_txt APL_C_APPL_LOG_OVERVIEW obj_txt
subobject APL_C_APPL_LOG_OVERVIEW subobject Triggering obj.
subobj_txt APL_C_APPL_LOG_OVERVIEW subobj_txt
msg_cnt_al APL_C_APPL_LOG_OVERVIEW msg_cnt_al Total Messages
alchdate APL_C_APPL_LOG_OVERVIEW alchdate Changed on
alchtime APL_C_APPL_LOG_OVERVIEW alchtime Changed at
alchuser APL_C_APPL_LOG_OVERVIEW alchuser Changed by
aldate_del APL_C_APPL_LOG_OVERVIEW aldate_del Expiration Date
msg_cnt_a APL_C_APPL_LOG_OVERVIEW msg_cnt_a Terminations
msg_cnt_e APL_C_APPL_LOG_OVERVIEW msg_cnt_e Error Msg
msg_cnt_i APL_C_APPL_LOG_OVERVIEW msg_cnt_i Informtn Msg
msg_cnt_s APL_C_APPL_LOG_OVERVIEW msg_cnt_s Successful
msg_cnt_w APL_C_APPL_LOG_OVERVIEW msg_cnt_w Warning Msg
aldate APL_C_APPL_LOG_OVERVIEW aldate Date
altime APL_C_APPL_LOG_OVERVIEW altime Time
aluser APL_C_APPL_LOG_OVERVIEW aluser User
severity APL_C_APPL_LOG_OVERVIEW severity Thresh.Val. Severity
SeverityText APL_C_APPL_LOG_OVERVIEW SeverityText
_TestAssociation _TestAssociation

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view XAJ_JOB_APPL_LOG_OVERVIEW.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: XAJ_JOB_APP_LOG

CREATE VIEW XAJ_JOB_APPL_LOG_OVERVIEW AS
SELECT
  job_log.job_name AS job_name,
  job_log.job_count AS job_count,
  appl_log.log_handle AS log_handle,
  appl_log.lognumber AS lognumber,
  appl_log.extnumber AS extnumber,
  appl_log.object AS object,
  appl_log.obj_txt AS obj_txt,
  appl_log.subobject AS subobject,
  appl_log.subobj_txt AS subobj_txt,
  appl_log.msg_cnt_al AS msg_cnt_al,
  appl_log.alchdate AS alchdate,
  appl_log.alchtime AS alchtime,
  appl_log.alchuser AS alchuser,
  appl_log.aldate_del AS aldate_del,
  appl_log.msg_cnt_a AS msg_cnt_a,
  appl_log.msg_cnt_e AS msg_cnt_e,
  appl_log.msg_cnt_i AS msg_cnt_i,
  appl_log.msg_cnt_s AS msg_cnt_s,
  appl_log.msg_cnt_w AS msg_cnt_w,
  appl_log.aldate AS aldate,
  appl_log.altime AS altime,
  appl_log.aluser AS aluser,
  appl_log.severity AS severity,
  appl_log.SeverityText AS SeverityText
FROM APL_C_APPL_LOG_OVERVIEW AS appl_log
INNER JOIN XAJ_JOB_LOG AS job_log ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN XAJ_JOB_LOG AS _TestAssociation ON _TestAssociation.log_handle_concat = log_handle  -- association [0..*]
;