Application_Component_Query

DDL: APPLICATION_COMPONENT_QUERY SQL: APPLCOMPQUERY Type: view

Application Component with Description

Application_Component_Query is a CDS View that provides data about "Application Component with Description" in SAP S/4HANA. It reads from 1 data source (Application_Component) and exposes 3 fields with key field ApplicationComponent.

Data Sources (1)

SourceAliasJoin Type
Application_Component Application_Component from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName APPLCOMPQUERY view
EndUserText.label Application Component with Description view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ApplicationComponent Application_Component ApplicationComponent Component
ApplicationComponentName Application_Component ApplicationComponentName WBS Element
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 Application_Component_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: APPLCOMPQUERY

CREATE VIEW Application_Component_Query AS
SELECT
  Application_Component.ApplicationComponent AS ApplicationComponent,
  Application_Component.ApplicationComponentName AS ApplicationComponentName,
  Application_Component._Text[Language = $session.system_language].ApplicationComponentText AS ApplicationComponentText
FROM Application_Component
;