P_CapFilterAll
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.
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| 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 |
@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
}
}*/
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