/LTB/I_MC_ACTIVITY_DETAIL_LIST
The activity details of MC
/LTB/I_MC_ACTIVITY_DETAIL_LIST is a CDS View that provides data about "The activity details of MC" in SAP S/4HANA. It reads from 29 data sources and exposes 19 fields.
Data Sources (29)
| Source | Alias | Join Type |
|---|---|---|
| /LTB/I_MC_ACTIVITY_LIST | c | from |
| dmc_cntrlparam | cp | left_outer |
| dmc_cntrlparamt | cpt_en | left_outer |
| dmc_cntrlparamt | cpt_logon | left_outer |
| /ltb/mc_eventlog | e | inner |
| /ltb/mc_eventlog | e1 | inner |
| /ltb/mc_evtrel | evt_rel | left_outer |
| dmc_fixedvalue | fv | left_outer |
| dmc_fixedvaluet | fvt_en | left_outer |
| dmc_fixedvaluet | fvt_logon | left_outer |
| /ltb/mc_proj | mc_proj | left_outer |
| dmc_cobj | mwb_obj | left_outer |
| dmc_cobjt | mwb_obj_en | left_outer |
| dmc_cobjt | mwb_obj_logon | left_outer |
| dmc_prjctt | mwb_proj_en | left_outer |
| dmc_prjctt | mwb_proj_logon | left_outer |
| CNV_PE_MC_UNION_OBJECT | pe_area | left_outer |
| cnv_pe_object | pe_proj | left_outer |
| cnv_pe_object_t | pe_proj_en | left_outer |
| cnv_pe_object_t | pe_proj_logon | left_outer |
| CNV_PE_MC_TASK | pe_task | left_outer |
| /ltb/mc_evtstatt | stt_en | left_outer |
| /ltb/mc_evtstatt | stt_logon | left_outer |
| dmc_trobj | trobj | left_outer |
| dmc_trobjt | trobjt_en | left_outer |
| dmc_trobjt | trobjt_logon | left_outer |
| /ltb/mc_evttypt | txt_en | left_outer |
| /ltb/mc_evttypt | txt_logon | left_outer |
| I_User | usr | left_outer |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | /LTB/V_MC_ACTDL | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ClientHandling.type | #CLIENT_DEPENDENT | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | The activity details of MC | view |
Fields (19)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| migproj_uuid | /ltb/mc_eventlog | proj_uuid | Project UUID | |
| migproj_name | cnv_pe_object | name | Zone name | |
| act_uuid | /ltb/mc_eventlog | act_uuid | Activity UUID | |
| migobj_uuid | /LTB/I_MC_ACTIVITY_LIST | migobj_uuid | Object UUID | |
| migobj_name | ||||
| migobj_descr | ||||
| task_uuid | /LTB/I_MC_ACTIVITY_LIST | task_uuid | UUID | |
| started_at | /ltb/mc_eventlog | created_at | Uploaded On | |
| started_by | /ltb/mc_eventlog | created_by | Version Created By | |
| UserDescriptionendendasstarted_by_name | ||||
| event_type | /ltb/mc_eventlog | event_type | Type of Event | |
| finished_at | /ltb/mc_eventlog | created_at | Uploaded On | |
| appllognr | /ltb/mc_eventlog | lognr | Log Number | |
| event_data | /ltb/mc_eventlog | event_data | ||
| event_uuid | /ltb/mc_eventlog | event_uuid | Event UUID | |
| event_time | ||||
| event_action | /ltb/mc_evtrel | event_action | Event Acton | |
| text_history | ||||
| event_status | /ltb/mc_evtrel | event_status | Event Status |
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 /LTB/I_MC_ACTIVITY_DETAIL_LIST.
-- 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: /LTB/V_MC_ACTDL
CREATE VIEW /LTB/I_MC_ACTIVITY_DETAIL_LIST AS
SELECT
e.proj_uuid AS migproj_uuid,
pe_proj.name AS migproj_name,
e.act_uuid AS act_uuid,
c.migobj_uuid AS migobj_uuid,
coalesce( pe_area.name, mwb_obj.ident ) AS migobj_name,
coalesce( pe_area.descr, coalesce( mwb_obj_logon.descr, mwb_obj_en.descr ) ) AS migobj_descr,
c.task_uuid AS task_uuid,
e.created_at AS started_at,
e.created_by AS started_by,
case when usr.UserDescription is null then e.created_by else case ltrim( usr.UserDescription, ' ' ) when '' then e.created_by else usr.UserDescription end end as started_by_name AS UserDescriptionendendasstarted_by_name,
e1.event_type AS event_type,
e1.created_at AS finished_at,
e1.lognr AS appllognr,
e1.event_data AS event_data,
e1.event_uuid AS event_uuid,
coalesce( e1.created_at, e.created_at ) AS event_time,
evt_rel.event_action AS event_action,
coalesce( txt_logon.text_history, txt_en.text_history ) AS text_history,
evt_rel.event_status AS event_status
FROM /LTB/I_MC_ACTIVITY_LIST AS c
INNER JOIN /ltb/mc_eventlog AS e ON /* join condition not captured in parsed metadata */
INNER JOIN /ltb/mc_eventlog AS e1 ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /ltb/mc_proj AS mc_proj ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN cnv_pe_object AS pe_proj ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN cnv_pe_object_t AS pe_proj_logon ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN cnv_pe_object_t AS pe_proj_en ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_prjctt AS mwb_proj_logon ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_prjctt AS mwb_proj_en ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN CNV_PE_MC_UNION_OBJECT AS pe_area ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_cobj AS mwb_obj ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_cobjt AS mwb_obj_logon ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_cobjt AS mwb_obj_en ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN I_User AS usr ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /ltb/mc_evtrel AS evt_rel ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /ltb/mc_evttypt AS txt_logon ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /ltb/mc_evttypt AS txt_en ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /ltb/mc_evtstatt AS stt_logon ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /ltb/mc_evtstatt AS stt_en ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_trobj AS trobj ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_trobjt AS trobjt_en ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_trobjt AS trobjt_logon ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_fixedvalue AS fv ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_fixedvaluet AS fvt_en ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_fixedvaluet AS fvt_logon ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_cntrlparam AS cp ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_cntrlparamt AS cpt_en ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN dmc_cntrlparamt AS cpt_logon ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN CNV_PE_MC_TASK AS pe_task 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