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
AllFilterText dd07t ddtext
@AbapCatalog.sqlViewName: 'PCAPALL'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.private: true
define view P_CapFilterAll
  as select from dd07l as _domval
    inner join   dd07t as _domtext on  _domval.domvalue_l = _domtext.domvalue_l
                                   and _domval.as4local   = _domtext.as4local
{
  key cast( _domval.domvalue_l as pph_cap_filter_all ) as AllFilter,
  key _domtext.ddlanguage                              as Language,
      _domtext.ddtext                                  as AllFilterText
}
where
  (
        _domval.domname  = 'PPH_CAP_FILTER_ALL'
    and _domval.as4local = 'A'
  )
and
(
       _domtext.domname  = 'PPH_CAP_FILTER_ALL'
    and _domtext.as4local = 'A'
)
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L",
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/