/PF1/P_DD07L

DDL: /PF1/P_DD07L SQL: /PF1/PV_DD07L Type: view

Domain Fix Values

/PF1/P_DD07L is a CDS View that provides data about "Domain Fix Values" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 7 fields with key fields domname, as4local, valpos, as4vers.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (7)

NameValueLevelField
AbapCatalog.sqlViewName /PF1/PV_DD07L view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Domain Fix Values view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY domname domname Domain
KEY as4local as4local Activation State
KEY valpos valpos Value key
KEY as4vers as4vers Version
domvalue_l domvalue_l Lower Value
domvalue_h domvalue_h Dom.upper limit
appval appval App

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view /PF1/P_DD07L.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: /PF1/PV_DD07L

CREATE VIEW /PF1/P_DD07L AS
SELECT
  domname,
  as4local,
  valpos,
  as4vers,
  domvalue_l,
  domvalue_h,
  appval
FROM dd07l
;