P_PCF_Domain_Value

DDL: P_PCF_DOMAIN_VALUE Type: view_entity

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)

SourceAliasJoin Type
dd07l Value from

Parameters (1)

NameTypeDefault
p_domain_name abap.char(30)

Associations (1)

CardinalityTargetAliasCondition
[1..*] P_PCF_Domain_Value_Text _Text $projection.Name = _Text.Name and $projection.Code = _Text.Code

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label Fixed values of a DDIC domain view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY Name dd07l domname
KEY Code dd07l domvalue_l
_Text _Text
@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