/FTI/V_FILE_SOL_VIEW

DDL: /FTI/V_DDL_FILE_SOLUTION SQL: /FTI/V_FILE_SOL Type: view Package: /FTI/COMMON

All files per solution

/FTI/V_FILE_SOL_VIEW is a CDS View that provides data about "All files per solution" in SAP S/4HANA. It reads from 5 data sources (/FTI/V_FILE_SOL_MIN_SEQ_VIEW, /FTI/V_FILE_SOL_MIN_SEQ_VIEW, /smb/bb_lib_i, /smb/bb_lib_i, /smb/bb_img_sobj) and exposes 15 fields with key fields solution_id, bbid, bbid. Part of development package /FTI/COMMON.

Data Sources (5)

SourceAliasJoin Type
/FTI/V_FILE_SOL_MIN_SEQ_VIEW /FTI/V_FILE_SOL_MIN_SEQ_VIEW from
/FTI/V_FILE_SOL_MIN_SEQ_VIEW /FTI/V_FILE_SOL_MIN_SEQ_VIEW union_all
/smb/bb_lib_i BlockActivities inner
/smb/bb_lib_i BlockActivities inner
/smb/bb_img_sobj IMGObject inner

Parameters (1)

NameTypeDefault
p_mandt mandt

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName /FTI/V_FILE_SOL view
ObjectModel.usageType.serviceQuality C view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass MIXED view

Fields (15)

KeyFieldSource TableSource FieldDescription
KEY solution_id BuildingBlocks solution_id Solution Id
KEY bbid BuildingBlocks bbid Building Block
objid /smb/bb_lib_i objid Work Center
objty /smb/bb_lib_i objty Prj. Obj. Type
cust_obj /smb/bb_lib_i altn_objid Char 70
filename /smb/bb_lib_i filename URL or Filenam Path
subobjid /smb/bb_lib_i fieldname Work Center
p_mandt
KEY bbid BuildingBlocks bbid Building Block
objid /smb/bb_lib_i objid Work Center
objty /smb/bb_lib_i objty Prj. Obj. Type
cust_obj /smb/bb_lib_i altn_objid Char 70
filename /smb/bb_img_sobj filename URL or Filenam Path
subobjid /smb/bb_img_sobj objid Work Center
demo_flag /smb/bb_lib_i demo Demo data

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/V_FILE_SOL_VIEW.
-- 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_FILE_SOL
-- Parameters: p_mandt : mandt

CREATE VIEW /FTI/V_FILE_SOL_VIEW AS
SELECT
  BuildingBlocks.solution_id AS solution_id,
  BuildingBlocks.bbid AS bbid,
  BlockActivities.objid AS objid,
  BlockActivities.objty AS objty,
  BlockActivities.altn_objid AS cust_obj,
  BlockActivities.filename AS filename,
  BlockActivities.fieldname AS subobjid,
  BlockActivities.demo as demo_flag AS p_mandt,
  BlockActivities.demo AS demo_flag
FROM /FTI/V_FILE_SOL_MIN_SEQ_VIEW
INNER JOIN /smb/bb_lib_i AS BlockActivities ON /* join condition not captured in parsed metadata */
INNER JOIN /smb/bb_img_sobj AS IMGObject ON /* join condition not captured in parsed metadata */
-- UNION ALL with additional select branch(es): /FTI/V_FILE_SOL_MIN_SEQ_VIEW
;