P_CapFilterAll

DDL: P_CAPFILTERALL Type: view_entity BASIC Package: PPH_VDM_CAP_EVAL

Capcity Planning Filter for All

P_CapFilterAll is a Basic CDS View that provides data about "Capcity Planning Filter for All" in SAP S/4HANA. It reads from 2 data sources (dd07t, dd07l) and exposes 3 fields with key fields AllFilter, Language. Part of development package PPH_VDM_CAP_EVAL.

Data Sources (2)

SourceAliasJoin Type
dd07t _domtext inner
dd07l _domval from

Annotations (3)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY AllFilter
KEY Language dd07t ddlanguage
AllFilterText dd07t ddtext
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.viewType: #BASIC
@VDM.private: true
define view entity 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'
)