/CFG/V_FILE_SOL_VIEW

DDL: /CFG/V_FILE_SOL_VIEW SQL: /CFG/V_FILE_SOL Type: view

Get solution to file

/CFG/V_FILE_SOL_VIEW is a CDS View that provides data about "Get solution to file" in SAP S/4HANA. It reads from 5 data sources (/CFG/V_FILE_SOL_MIN_SEQ_VIEW, /CFG/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.

Data Sources (5)

SourceAliasJoin Type
/CFG/V_FILE_SOL_MIN_SEQ_VIEW /CFG/V_FILE_SOL_MIN_SEQ_VIEW from
/CFG/V_FILE_SOL_MIN_SEQ_VIEW /CFG/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 (7)

NameValueLevelField
AbapCatalog.sqlViewName /CFG/V_FILE_SOL 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 Get solution to file 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 /CFG/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: /CFG/V_FILE_SOL
-- Parameters: p_mandt : mandt

CREATE VIEW /CFG/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 /CFG/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): /CFG/V_FILE_SOL_MIN_SEQ_VIEW
;