/FTI/MIXED_MULTI_Y_CASE

DDL: /FTI/MIXED_MULTI_Y_CASE SQL: /FTI/V_MIXED Type: view Package: /FTI/WEBGUI_SSCUI

Get Filename for Mixed Multiple Y Case in WEBGUI

/FTI/MIXED_MULTI_Y_CASE is a CDS View that provides data about "Get Filename for Mixed Multiple Y Case in WEBGUI" in SAP S/4HANA. It reads from 6 data sources and exposes 8 fields. Part of development package /FTI/WEBGUI_SSCUI.

Data Sources (6)

SourceAliasJoin Type
/FTI/V_FILE_SOL_MIN_SEQ_VIEW /FTI/V_FILE_SOL_MIN_SEQ_VIEW inner
/smb/cust_sol CurrentSol inner
/smb/sba1_t_file pme inner
/smb/bb_img_sobj sobj inner
/cfg/webgui_h WebGuis from
/cfg/webgui_i WebuiItem inner

Parameters (1)

NameTypeDefault
p_mandt mandt

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName /FTI/V_MIXED view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality D view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass MIXED view
EndUserText.label Get Filename for Mixed Multiple Y Case in WEBGUI view

Fields (8)

KeyFieldSource TableSource FieldDescription
Solution_Id /smb/cust_sol solution_id Solution Id
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 /smb/bb_img_sobj bbid Building Block
Filename /smb/bb_img_sobj filename URL or Filenam Path
seq

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/MIXED_MULTI_Y_CASE.
-- 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/V_MIXED
-- Parameters: p_mandt : mandt

CREATE VIEW /FTI/MIXED_MULTI_Y_CASE AS
SELECT
  CurrentSol.solution_id AS Solution_Id,
  WebGuis.activity_id AS Activity_Id,
  WebGuis.cust_obj_name AS Customizing_Object,
  WebGuis.cust_obj_type AS Object_Type,
  WebuiItem.subobjname AS SubObject,
  sobj.bbid AS bbid,
  sobj.filename AS Filename,
  min(BuildingBlocks.seq) AS seq
FROM /cfg/webgui_h AS WebGuis
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 */
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 */
;