Xaj_Job_Templates

DDL: XAJ_JOB_TEMPLATES SQL: XAJ_JT_SIMPLE Type: view

XAJ: CDS for simple Job Templates

Xaj_Job_Templates is a CDS View that provides data about "XAJ: CDS for simple Job Templates" in SAP S/4HANA. It reads from 1 data source (APJ_V_JOB_TEMPLATE_UNION) and exposes 11 fields. It has 4 associations to related views.

Data Sources (1)

SourceAliasJoin Type
APJ_V_JOB_TEMPLATE_UNION APJ_V_JOB_TEMPLATE_UNION from

Associations (4)

CardinalityTargetAliasCondition
[0..*] XAJ_JOB_TEMPLATE_SEQUENCE_ASS _Sequences _Sequences.job_template_name = $projection.job_template_name
[0..*] XAJ_JOB_TEMPLATE_SECTION_ASS _Sections _Sections.job_template_name = $projection.job_template_name
[0..*] XAJ_JOB_TEMPLATE_GROUPS_ASS _Groups _Groups.job_template_name = $projection.job_template_name
[0..*] XAJ_JOB_TEMPLATE_PARAMS_V _Parameters _Parameters.job_template_name = $projection.job_template_name

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName XAJ_JT_SIMPLE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label XAJ: CDS for simple Job Templates view

Fields (11)

KeyFieldSource TableSource FieldDescription
created_at APJ_V_JOB_TEMPLATE_UNION created_at Uploaded On
created_by APJ_V_JOB_TEMPLATE_UNION created_by Version Created By
changed_at APJ_V_JOB_TEMPLATE_UNION changed_at Timestamp
changed_by APJ_V_JOB_TEMPLATE_UNION changed_by User Name
report_name APJ_V_JOB_TEMPLATE_UNION report_name Report Name
step_count APJ_V_JOB_TEMPLATE_UNION seq_count
description APJ_V_JOB_TEMPLATE_UNION text User Group
_Sequences _Sequences
_Sections _Sections
_Groups _Groups
_Parameters _Parameters

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_Templates.
-- 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_JT_SIMPLE

CREATE VIEW Xaj_Job_Templates AS
SELECT
  APJ_V_JOB_TEMPLATE_UNION.created_at AS created_at,
  APJ_V_JOB_TEMPLATE_UNION.created_by AS created_by,
  APJ_V_JOB_TEMPLATE_UNION.changed_at AS changed_at,
  APJ_V_JOB_TEMPLATE_UNION.changed_by AS changed_by,
  APJ_V_JOB_TEMPLATE_UNION.report_name AS report_name,
  APJ_V_JOB_TEMPLATE_UNION.seq_count AS step_count,
  APJ_V_JOB_TEMPLATE_UNION.text AS description
FROM APJ_V_JOB_TEMPLATE_UNION
LEFT OUTER JOIN XAJ_JOB_TEMPLATE_SEQUENCE_ASS AS _Sequences ON _Sequences.job_template_name = job_template_name  -- association [0..*]
LEFT OUTER JOIN XAJ_JOB_TEMPLATE_SECTION_ASS AS _Sections ON _Sections.job_template_name = job_template_name  -- association [0..*]
LEFT OUTER JOIN XAJ_JOB_TEMPLATE_GROUPS_ASS AS _Groups ON _Groups.job_template_name = job_template_name  -- association [0..*]
LEFT OUTER JOIN XAJ_JOB_TEMPLATE_PARAMS_V AS _Parameters ON _Parameters.job_template_name = job_template_name  -- association [0..*]
;