DDIC_VFS_ACTIVE_TYPE

DDL: DDIC_VFS_ACTIVE_TYPE Type: view_entity

DDIC_VFS_ACTIVE_TYPE is a CDS View in SAP S/4HANA. It reads from 2 data sources (DDIC_ACTIVE_TYPE, DDIC_VFS_ALL) and exposes 22 fields.

Data Sources (2)

SourceAliasJoin Type
DDIC_ACTIVE_TYPE ddls_table left_outer
DDIC_VFS_ALL vfs from

Annotations (1)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view

Fields (22)

KeyFieldSource TableSource FieldDescription
Ddlname DDIC_ACTIVE_TYPE ddlname DDL Source Name
SourceType DDIC_ACTIVE_TYPE source_type SRVC Source Type
version DDIC_VFS_ALL version XML Vers.
object_type DDIC_VFS_ALL object_type Type
object_name DDIC_VFS_ALL object_name Technical Name
author DDIC_VFS_ALL author User Name
devclass DDIC_VFS_ALL devclass Package (Obsolete)
created_on DDIC_VFS_ALL created_on Variant created on
creation_day DDIC_VFS_ALL creation_day
masterlang DDIC_VFS_ALL masterlang Single-Character Flag
alias_type DDIC_VFS_ALL alias_type Payee Alias Type
alias_name DDIC_VFS_ALL alias_name Short Description
wb_type DDIC_VFS_ALL wb_type
full_type DDIC_VFS_ALL full_type
fav_list DDIC_VFS_ALL fav_list
docu DDIC_VFS_ALL docu Schema Documentation
package_low DDIC_VFS_ALL package_low
package_high DDIC_VFS_ALL package_high
ap_component DDIC_VFS_ALL ap_component Applic. Component
sw_component DDIC_VFS_ALL sw_component Softw. Comp.
tr_layer DDIC_VFS_ALL tr_layer Transport Layer
use_alias DDIC_VFS_ALL use_alias

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 DDIC_VFS_ACTIVE_TYPE.
-- 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.

CREATE VIEW DDIC_VFS_ACTIVE_TYPE AS
SELECT
  ddls_table.ddlname AS Ddlname,
  ddls_table.source_type AS SourceType,
  vfs.version AS version,
  vfs.object_type AS object_type,
  vfs.object_name AS object_name,
  vfs.author AS author,
  vfs.devclass AS devclass,
  vfs.created_on AS created_on,
  vfs.creation_day AS creation_day,
  vfs.masterlang AS masterlang,
  vfs.alias_type AS alias_type,
  vfs.alias_name AS alias_name,
  vfs.wb_type AS wb_type,
  vfs.full_type AS full_type,
  vfs.fav_list AS fav_list,
  vfs.docu AS docu,
  vfs.package_low AS package_low,
  vfs.package_high AS package_high,
  vfs.ap_component AS ap_component,
  vfs.sw_component AS sw_component,
  vfs.tr_layer AS tr_layer,
  vfs.use_alias AS use_alias
FROM DDIC_VFS_ALL AS vfs
LEFT OUTER JOIN DDIC_ACTIVE_TYPE AS ddls_table ON /* join condition not captured in parsed metadata */
;