Vb_Cdsviews_Appl_Text_Query

DDL: VB_CDSVIEWS_APPL_TEXT_QUERY SQL: VBCDSAPPLCOMPTXT Type: view

View Browser CDS Views Application Component Query

Vb_Cdsviews_Appl_Text_Query is a CDS View that provides data about "View Browser CDS Views Application Component Query" in SAP S/4HANA. It reads from 2 data sources (Cds_Views, Cds_Views_Pkg_Appcomp) and exposes 2 fields with key field DDLSourceName.

Data Sources (2)

SourceAliasJoin Type
Cds_Views Cds_Views from
Cds_Views_Pkg_Appcomp CDSPkgAppComp inner

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName VBCDSAPPLCOMPTXT view
EndUserText.label View Browser CDS Views Application Component Query view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DDLSourceName Cds_Views DDLSourceName DDL Source Name
ApplicationComponentText

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 Vb_Cdsviews_Appl_Text_Query.
-- 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: VBCDSAPPLCOMPTXT

CREATE VIEW Vb_Cdsviews_Appl_Text_Query AS
SELECT
  Cds_Views.DDLSourceName AS DDLSourceName,
  CDSPkgAppComp._CDSAppCompText[Language = $session.system_language].ApplicationComponentText AS ApplicationComponentText
FROM Cds_Views
INNER JOIN Cds_Views_Pkg_Appcomp AS CDSPkgAppComp ON /* join condition not captured in parsed metadata */
;