/CFG/v_multiple_file_soln

DDL: /CFG/V_MULTIPLE_FILE_SOLN SQL: /CFG/MULTI_FILE Type: view

Weg GUIs for multiple files scenario

/CFG/v_multiple_file_soln is a CDS View that provides data about "Weg GUIs for multiple files scenario" in SAP S/4HANA. It reads from 12 data sources and exposes 16 fields.

Data Sources (12)

SourceAliasJoin Type
/CFG/V_FILE_SOL_MIN_SEQ_VIEW /CFG/V_FILE_SOL_MIN_SEQ_VIEW inner
/CFG/V_FILE_SOL_MIN_SEQ_VIEW /CFG/V_FILE_SOL_MIN_SEQ_VIEW inner
/smb/cust_sol CurrentSol inner
/smb/cust_sol CurrentSol inner
/smb/sba1_t_file pme inner
/smb/sba1_t_file pme inner
/smb/bb_img_sobj sobj inner
/smb/bb_img_sobj sobj inner
/cfg/webgui_h Webgui from
/cfg/webgui_h Webgui union_all
/cfg/webgui_i WebguiItems inner
/cfg/webgui_i WebguiItems inner

Parameters (1)

NameTypeDefault
p_mandt mandt

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName /CFG/MULTI_FILE view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality C view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass MIXED view
EndUserText.label Weg GUIs for multiple files scenario view

Fields (16)

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
p_mandt
solution_idasSolution_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 /CFG/v_multiple_file_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: /CFG/MULTI_FILE
-- Parameters: p_mandt : mandt

CREATE VIEW /CFG/v_multiple_file_soln AS
SELECT
  CurrentSol.solution_id AS Solution_Id,
  Webgui.activity_id AS Activity_Id,
  Webgui.cust_obj_name AS Customizing_Object,
  Webgui.cust_obj_type AS Object_Type,
  WebguiItems.subobjname AS SubObject,
  sobj.bbid AS bbid,
  sobj.filename AS Filename,
  min(BuildingBlocks.seq) as seq AS p_mandt,
  min(BuildingBlocks.seq) AS seq
FROM /cfg/webgui_h AS Webgui
INNER JOIN /cfg/webgui_i AS WebguiItems 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 /CFG/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 */
-- UNION ALL with additional select branch(es): /cfg/webgui_h
;