/FTI/MAP_ACT_MULTX

DDL: /FTI/MAP_ACT_MULTX SQL: /FTI/MAP_MULTX Type: view

CDS view for Mutiple File X

/FTI/MAP_ACT_MULTX is a CDS View that provides data about "CDS view for Mutiple File X" in SAP S/4HANA. It reads from 5 data sources (/FTI/V_FILE_SOL_MIN_SEQ_VIEW, /smb/cust_sol, /fti/map_act, /smb/sba1_t_file, /smb/bb_img_sobj) and exposes 10 fields.

Data Sources (5)

SourceAliasJoin Type
/FTI/V_FILE_SOL_MIN_SEQ_VIEW /FTI/V_FILE_SOL_MIN_SEQ_VIEW inner
/smb/cust_sol CurrentSol inner
/fti/map_act mapact from
/smb/sba1_t_file pme inner
/smb/bb_img_sobj sobj inner

Parameters (5)

NameTypeDefault
p_mandt mandt
p_act cus_img_ac
p_obj ob_object
p_typ ob_typ
p_sobj ob_object

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /FTI/MAP_MULTX view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality D view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass MIXED view
EndUserText.label CDS view for Mutiple File X view

Fields (10)

KeyFieldSource TableSource FieldDescription
Solution_Id /smb/cust_sol solution_id Solution Id
Activity_Id /smb/bb_img_sobj img_activity IMG Activity
Customizing_Object /fti/map_act cust_obj_name_main Customizing object
Object_Type /fti/map_act cust_obj_type_main Type
SubObject /fti/map_act subobjname_main Sub object name
bbid /smb/bb_img_sobj bbid Building Block
Filename /smb/bb_img_sobj filename URL or Filenam Path
det_file /fti/map_act det_file Determine File
seq
task_id /smb/bb_img_sobj task_id TaskID

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 /FTI/MAP_ACT_MULTX.
-- 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: /FTI/MAP_MULTX
-- Parameters: p_mandt : mandt, p_act : cus_img_ac, p_obj : ob_object, p_typ : ob_typ, p_sobj : ob_object

CREATE VIEW /FTI/MAP_ACT_MULTX AS
SELECT
  CurrentSol.solution_id AS Solution_Id,
  sobj.img_activity AS Activity_Id,
  mapact.cust_obj_name_main AS Customizing_Object,
  mapact.cust_obj_type_main AS Object_Type,
  mapact.subobjname_main AS SubObject,
  sobj.bbid AS bbid,
  sobj.filename AS Filename,
  mapact.det_file AS det_file,
  min(BuildingBlocks.seq) AS seq,
  sobj.task_id AS task_id
FROM /fti/map_act AS mapact
INNER JOIN /smb/bb_img_sobj AS sobj ON /* join condition not captured in parsed metadata */
INNER JOIN /FTI/V_FILE_SOL_MIN_SEQ_VIEW ON /* join condition not captured in parsed metadata */
INNER JOIN /smb/sba1_t_file AS pme ON /* join condition not captured in parsed metadata */
INNER JOIN /smb/cust_sol AS CurrentSol ON /* join condition not captured in parsed metadata */
;