P_Cfd_Domain_Value
Fixed values of a DDIC domain
P_Cfd_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.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | Value | from |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | P_CFD_DOM_VAL | view | |
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | Fixed values of a DDIC domain | view | |
| VDM.private | true | view |
@AbapCatalog.sqlViewName: 'P_CFD_DOM_VAL'
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'Fixed values of a DDIC domain'
@VDM.private: true
define view P_Cfd_Domain_Value
as select from dd07l as Value
association[1..*] to P_Cfd_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'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07L"
],
"ASSOCIATED":
[
"P_CFD_DOMAIN_VALUE_TEXT"
],
"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