Vfs_All_Search

DDL: VFS_ALL_SEARCH SQL: VFS_ALL_SEARCH1 Type: view

Search data source

Vfs_All_Search is a CDS View that provides data about "Search data source" in SAP S/4HANA. It reads from 7 data sources and exposes 18 fields.

Data Sources (7)

SourceAliasJoin Type
VFS_Language_Version alvers left_outer
VFS_Api_States api left_outer
vfs_documentation docu left_outer
vfs_fav_objects fav left_outer
Vfs_Object_Search obj from
pak_intervals package_intervals left_outer
Vfs_Inactive_Objects version left_outer

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName VFS_ALL_SEARCH1 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Search data source view

Fields (18)

KeyFieldSource TableSource FieldDescription
object_type Vfs_Object_Search object_type Type
object_name Vfs_Object_Search object_name Technical Name
author Vfs_Object_Search author User Name
devclass Vfs_Object_Search devclass Package (Obsolete)
created_on Vfs_Object_Search created_on Variant created on
creation_day
masterlang Vfs_Object_Search masterlang Single-Character Flag
alias_type Vfs_Object_Search alias_type Payee Alias Type
alias_name Vfs_Object_Search alias_name Short Description
wb_type Vfs_Object_Search wb_type Worklist Type
fav_list vfs_fav_objects list_id Value Range ID
package_low pak_intervals low Value from
package_high pak_intervals high Value up to
ap_component pak_intervals ap_component Applic. Component
sw_component pak_intervals sw_component Softw. Comp.
tr_layer pak_intervals tr_layer Transport Layer
use_alias Vfs_Object_Search use_alias
is_virtual Vfs_Object_Search is_virtual Virtual

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 Vfs_All_Search.
-- 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: VFS_ALL_SEARCH1

CREATE VIEW Vfs_All_Search AS
SELECT
  obj.object_type AS object_type,
  obj.object_name AS object_name,
  obj.author AS author,
  obj.devclass AS devclass,
  obj.created_on AS created_on,
  substring(obj.created_on, 7, 2 ) AS creation_day,
  obj.masterlang AS masterlang,
  obj.alias_type AS alias_type,
  obj.alias_name AS alias_name,
  obj.wb_type AS wb_type,
  fav.list_id AS fav_list,
  package_intervals.low AS package_low,
  package_intervals.high AS package_high,
  package_intervals.ap_component AS ap_component,
  package_intervals.sw_component AS sw_component,
  package_intervals.tr_layer AS tr_layer,
  obj.use_alias AS use_alias,
  obj.is_virtual AS is_virtual
FROM Vfs_Object_Search AS obj
LEFT OUTER JOIN VFS_Api_States AS api ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN Vfs_Inactive_Objects AS version ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN pak_intervals AS package_intervals ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN vfs_fav_objects AS fav ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN vfs_documentation AS docu ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN VFS_Language_Version AS alvers ON /* join condition not captured in parsed metadata */
;