P_CapFilterAll

DDL: P_CAPFILTERALL SQL: PCAPALL Type: view BASIC

P_CapFilterAll is a Basic CDS View in SAP S/4HANA. It reads from 2 data sources (dd07t, dd07l) and exposes 3 fields with key fields AllFilter, Language.

Data Sources (2)

SourceAliasJoin Type
dd07t _domtext inner
dd07l _domval from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName PCAPALL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AllFilter
KEY Language dd07t ddlanguage Lang.
AllFilterText dd07t ddtext Short text

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 P_CapFilterAll.
-- 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: PCAPALL

CREATE VIEW P_CapFilterAll AS
SELECT
  cast( _domval.domvalue_l as pph_cap_filter_all ) AS AllFilter,
  _domtext.ddlanguage AS Language,
  _domtext.ddtext AS AllFilterText
FROM dd07l AS _domval
INNER JOIN dd07t AS _domtext ON /* join condition not captured in parsed metadata */
;