/FTI/MULTIPLE_FILE_ACTID_SOLN

DDL: /FTI/MULTIPLE_FILE_ACTID_SOLN SQL: /FTI/MUL_FIL_ACT Type: view

Support MultipleFile/Activity in WebGuis

/FTI/MULTIPLE_FILE_ACTID_SOLN is a CDS View that provides data about "Support MultipleFile/Activity in WebGuis" in SAP S/4HANA. It reads from 4 data sources (/fti/v_multiple_file_soln, /smb/bb_img_sobj, /cfg/webgui_h, /cfg/webgui_i) and exposes 7 fields.

Data Sources (4)

SourceAliasJoin Type
/fti/v_multiple_file_soln /fti/v_multiple_file_soln from
/smb/bb_img_sobj sobj inner
/cfg/webgui_h WebuiHeader inner
/cfg/webgui_i WebuiItem inner

Parameters (2)

NameTypeDefault
p_mandt mandt
p_actid cus_img_ac

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName /FTI/MUL_FIL_ACT view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality D view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass MIXED view
EndUserText.label Support MultipleFile/Activity in WebGuis view

Fields (7)

KeyFieldSource TableSource FieldDescription
Activity_Id /cfg/webgui_h activity_id IMG Activity
Customizing_Object /cfg/webgui_h cust_obj_name Customizing object
Object_Type /cfg/webgui_h cust_obj_type Type
SubObject /cfg/webgui_i subobjname Table/View Name
bbid multiFiles bbid Building Block
Filename multiFiles Filename URL or Filenam Path
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/MULTIPLE_FILE_ACTID_SOLN.
-- 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/MUL_FIL_ACT
-- Parameters: p_mandt : mandt, p_actid : cus_img_ac

CREATE VIEW /FTI/MULTIPLE_FILE_ACTID_SOLN AS
SELECT
  WebuiHeader.activity_id AS Activity_Id,
  WebuiHeader.cust_obj_name AS Customizing_Object,
  WebuiHeader.cust_obj_type AS Object_Type,
  WebuiItem.subobjname AS SubObject,
  multiFiles.bbid AS bbid,
  multiFiles.Filename AS Filename,
  sobj.task_id AS Task_Id
FROM /fti/v_multiple_file_soln
INNER JOIN /cfg/webgui_h AS WebuiHeader ON /* join condition not captured in parsed metadata */
INNER JOIN /cfg/webgui_i AS WebuiItem ON /* join condition not captured in parsed metadata */
INNER JOIN /smb/bb_img_sobj AS sobj ON /* join condition not captured in parsed metadata */
;