P_CapFilterAll
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.
Annotations (3)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | true | view |
@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'
)
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA