FCCX_V_TASK_EXEC_M

DDL: FCCX_V_TASK_EXEC_M SQL: FCCX_V_TSK_M Type: view

Join against FCCX_V_TASK_EXEC_ANALYZE

FCCX_V_TASK_EXEC_M is a CDS View that provides data about "Join against FCCX_V_TASK_EXEC_ANALYZE" in SAP S/4HANA. It reads from 2 data sources (FCCX_V_TASK_EXEC_ANALYZE, fccx_task_exec_m) and exposes 35 fields with key field msguuid.

Data Sources (2)

SourceAliasJoin Type
FCCX_V_TASK_EXEC_ANALYZE a from
fccx_task_exec_m b left_outer

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName FCCX_V_TSK_M view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Join against FCCX_V_TASK_EXEC_ANALYZE view
ObjectModel.usageType.serviceQuality C view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (35)

KeyFieldSource TableSource FieldDescription
KEY msguuid fccx_task_exec_m msguuid UUID
execuuid FCCX_V_TASK_EXEC_ANALYZE execuuid UUID
task_uuid FCCX_V_TASK_EXEC_ANALYZE task_uuid UUID
taskc FCCX_V_TASK_EXEC_ANALYZE taskc Task/Log Entry
bttype FCCX_V_TASK_EXEC_ANALYZE bttype Business Transaction Type
programname FCCX_V_TASK_EXEC_ANALYZE programname Program
variant_id FCCX_V_TASK_EXEC_ANALYZE variant_id Variant Id
job_name FCCX_V_TASK_EXEC_ANALYZE job_name Job No.
job_count FCCX_V_TASK_EXEC_ANALYZE job_count Job No.
old_sched FCCX_V_TASK_EXEC_ANALYZE old_sched
created_on fccx_task_exec_m created_on Variant created on
created_by fccx_task_exec_m created_by Version Created By
strtdate FCCX_V_TASK_EXEC_ANALYZE strtdate Execution Date
strttime FCCX_V_TASK_EXEC_ANALYZE strttime Execution Date
enddate FCCX_V_TASK_EXEC_ANALYZE enddate Term to
endtime FCCX_V_TASK_EXEC_ANALYZE endtime Time Stamp
job_status FCCX_V_TASK_EXEC_ANALYZE job_status Job status
result_type fccx_task_exec_m result_type Result Type
result_uuid fccx_task_exec_m result_uuid UUID
lognumber fccx_task_exec_m lognumber UUID
object fccx_task_exec_m object TRFM Object
subobject fccx_task_exec_m subobject Triggering obj.
msgty fccx_task_exec_m msgty Msg.Type (E,I,W..)
msgid fccx_task_exec_m msgid Message ID
msgno fccx_task_exec_m msgno Message Number
msgv1 fccx_task_exec_m msgv1 Message variable 1
msgv2 fccx_task_exec_m msgv2 Message variable 2
msgv3 fccx_task_exec_m msgv3 Message variable 3
msgv4 fccx_task_exec_m msgv4 Message variable 4
message fccx_task_exec_m message User Message
bukrs fccx_task_exec_m bukrs Value
kokrs fccx_task_exec_m kokrs Org. Value
werks fccx_task_exec_m werks Receiving Plant
cgrop fccx_task_exec_m cgrop Org. Value
cunit fccx_task_exec_m cunit Unit

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 FCCX_V_TASK_EXEC_M.
-- 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: FCCX_V_TSK_M

CREATE VIEW FCCX_V_TASK_EXEC_M AS
SELECT
  b.msguuid AS msguuid,
  a.execuuid AS execuuid,
  a.task_uuid AS task_uuid,
  a.taskc AS taskc,
  a.bttype AS bttype,
  a.programname AS programname,
  a.variant_id AS variant_id,
  a.job_name AS job_name,
  a.job_count AS job_count,
  a.old_sched AS old_sched,
  b.created_on AS created_on,
  b.created_by AS created_by,
  a.strtdate AS strtdate,
  a.strttime AS strttime,
  a.enddate AS enddate,
  a.endtime AS endtime,
  a.job_status AS job_status,
  b.result_type AS result_type,
  b.result_uuid AS result_uuid,
  b.lognumber AS lognumber,
  b.object AS object,
  b.subobject AS subobject,
  b.msgty AS msgty,
  b.msgid AS msgid,
  b.msgno AS msgno,
  b.msgv1 AS msgv1,
  b.msgv2 AS msgv2,
  b.msgv3 AS msgv3,
  b.msgv4 AS msgv4,
  b.message AS message,
  b.bukrs AS bukrs,
  b.kokrs AS kokrs,
  b.werks AS werks,
  b.cgrop AS cgrop,
  b.cunit AS cunit
FROM FCCX_V_TASK_EXEC_ANALYZE AS a
LEFT OUTER JOIN fccx_task_exec_m AS b ON /* join condition not captured in parsed metadata */
;