FCCX_V_TASK_EXEC_R_BAL
Analyze Task Task Exec Results
FCCX_V_TASK_EXEC_R_BAL is a CDS View that provides data about "Analyze Task Task Exec Results" in SAP S/4HANA. It reads from 3 data sources (FCCX_V_TASK_EXEC_ANALYZE, fccx_task_exec_r, balhdr) and exposes 39 fields with key field resultuuid.
Data Sources (3)
| Source | Alias | Join Type |
|---|---|---|
| FCCX_V_TASK_EXEC_ANALYZE | a | from |
| fccx_task_exec_r | b | inner |
| balhdr | h | inner |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | FCCX_V_TSK_R | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Analyze Task Task Exec Results | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | C | view | |
| ObjectModel.usageType.sizeCategory | L | view | |
| ObjectModel.usageType.dataClass | TRANSACTIONAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (39)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | resultuuid | fccx_task_exec_r | resultuuid | 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_r | created_on | Variant created on | |
| created_by | fccx_task_exec_r | 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_r | result_type | Result Type | |
| log_id | fccx_task_exec_r | log_id | Log UUID | |
| object | balhdr | object | TRFM Object | |
| subobject | balhdr | subobject | Triggering obj. | |
| log_handle | balhdr | log_handle | Migration Log Handle | |
| extnumber | balhdr | extnumber | External ID | |
| lognumber | balhdr | lognumber | UUID | |
| aldate | balhdr | aldate | Date | |
| altime | balhdr | altime | Time | |
| aluser | balhdr | aluser | User | |
| msg_cnt_al | balhdr | msg_cnt_al | Total Messages | |
| msg_cnt_a | balhdr | msg_cnt_a | Terminations | |
| msg_cnt_i | balhdr | msg_cnt_i | Informtn Msg | |
| msg_cnt_e | balhdr | msg_cnt_e | Error Msg | |
| msg_cnt_w | balhdr | msg_cnt_w | Warning Msg | |
| msg_cnt_s | balhdr | msg_cnt_s | Successful | |
| probclass | balhdr | probclass | Max. prob. cl. | |
| bukrs | fccx_task_exec_r | bukrs | Value | |
| kokrs | fccx_task_exec_r | kokrs | Org. Value | |
| werks | fccx_task_exec_r | werks | Receiving Plant | |
| cgrop | fccx_task_exec_r | cgrop | Org. Value | |
| cunit | fccx_task_exec_r | 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_R_BAL.
-- 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_R
CREATE VIEW FCCX_V_TASK_EXEC_R_BAL AS
SELECT
b.resultuuid AS resultuuid,
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.log_id AS log_id,
h.object AS object,
h.subobject AS subobject,
h.log_handle AS log_handle,
h.extnumber AS extnumber,
h.lognumber AS lognumber,
h.aldate AS aldate,
h.altime AS altime,
h.aluser AS aluser,
h.msg_cnt_al AS msg_cnt_al,
h.msg_cnt_a AS msg_cnt_a,
h.msg_cnt_i AS msg_cnt_i,
h.msg_cnt_e AS msg_cnt_e,
h.msg_cnt_w AS msg_cnt_w,
h.msg_cnt_s AS msg_cnt_s,
h.probclass AS probclass,
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
INNER JOIN fccx_task_exec_r AS b ON /* join condition not captured in parsed metadata */
INNER JOIN balhdr AS h ON /* join condition not captured in parsed metadata */
;
Learn More
- CDS View Annotations — A Complete Guide
- 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 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA