/FTI/V_FILE_UI_SOL_VIEW

DDL: /FTI/V_DDL_FT_UI SQL: /FTI/V_FILE_UISO Type: view

/FTI/V_FILE_UI_SOL_VIEW is a CDS View in SAP S/4HANA. It reads from 3 data sources (/FTI/V_FT_FILE_SOL_VIEW, /fti/ft_scope, /fti/ft_config) and exposes 21 fields with key field id.

Data Sources (3)

SourceAliasJoin Type
/FTI/V_FT_FILE_SOL_VIEW /FTI/V_FT_FILE_SOL_VIEW left_outer
/fti/ft_scope FT_Scope left_outer
/fti/ft_config ServiceConfig left_outer

Parameters (2)

NameTypeDefault
p_mandt mandt
p_language spras

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName /FTI/V_FILE_UISO view
ObjectModel.usageType.serviceQuality D view
ObjectModel.usageType.sizeCategory L view
ObjectModel.usageType.dataClass MIXED view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY id ui ui_id
kw_link ui kw_link Knowl Warehouse link
country_dep ui country_dep Cntry/Rgn Dependency
external_id ui external_id WEBGUI External ID
entity ui entity Supply Chain Unit
availability ui availability Pkg. Release Status
aae_id sol Application_Area Leading App ID
lead sol Lead_Application_Area
short_text sol Application_Area_stext
long_text sol Application_Area_ltext
bb_id sol bbid Building Block
filename sol filename URL or Filenam Path
default_seq /fti/ft_scope default_seq Sequential Number
ongoing /fti/ft_config ongoing Run
evaluation /fti/ft_config evaluation Valid evaluatn
preparation /fti/ft_config reparation Prepare
realized /fti/ft_config realized Realize
launch /fti/ft_config launch Deploy
company_rel /fti/ft_config company_rel Company
plant_rel /fti/ft_config plant_rel Plant Rel.
sal_org /fti/ft_config sal_org S.Org Rel.

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_UI_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_UISO
-- Parameters: p_mandt : mandt, p_language : spras

CREATE VIEW /FTI/V_FILE_UI_SOL_VIEW AS
SELECT
  ui.ui_id AS id,
  ui.kw_link AS kw_link,
  ui.country_dep AS country_dep,
  ui.external_id AS external_id,
  ui.entity AS entity,
  ui.availability AS availability,
  sol.Application_Area AS aae_id,
  sol.Lead_Application_Area AS lead,
  sol.Application_Area_stext AS short_text,
  sol.Application_Area_ltext AS long_text,
  sol.bbid AS bb_id,
  sol.filename AS filename,
  FT_Scope.default_seq AS default_seq,
  ServiceConfig.ongoing AS ongoing,
  ServiceConfig.evaluation AS evaluation,
  ServiceConfig.reparation AS preparation,
  ServiceConfig.realized AS realized,
  ServiceConfig.launch AS launch,
  ServiceConfig.company_rel AS company_rel,
  ServiceConfig.plant_rel AS plant_rel,
  ServiceConfig.sal_org AS sal_org
LEFT OUTER JOIN /fti/ft_config AS ServiceConfig ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /fti/ft_scope AS FT_Scope ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN /FTI/V_FT_FILE_SOL_VIEW ON /* join condition not captured in parsed metadata */
;