P_PCF_Domain_Value
Fixed values of a DDIC domain
P_PCF_Domain_Value is a CDS View that provides data about "Fixed values of a DDIC domain" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key fields Name, Code. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | Value | from |
Parameters (1)
| Name | Type | Default |
|---|---|---|
| p_domain_name | abap.char(30) |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | P_PCF_Domain_Value_Text | _Text | $projection.Name = _Text.Name and $projection.Code = _Text.Code |
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Fixed values of a DDIC domain | view |
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Fixed values of a DDIC domain'
define view entity P_PCF_Domain_Value
with parameters
p_domain_name : abap.char(30)
as select from dd07l as Value
association [1..*] to P_PCF_Domain_Value_Text as _Text on $projection.Name = _Text.Name
and $projection.Code = _Text.Code
{
key Value.domname as Name,
key Value.domvalue_l as Code,
_Text
}
where
Value.as4local = 'A'
and Value.domname = $parameters.p_domain_name
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