Deprecated
This CDS view is deprecated in S/4HANA. View all deprecated CDS views →

I_ProcurementDomainValues

DDL: I_PROCUREMENTDOMAINVALUES SQL: IMMDOMAINVAL Type: view BASIC

Procurement Domain Values

I_ProcurementDomainValues is a Basic CDS View that provides data about "Procurement Domain Values" in SAP S/4HANA.

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMMDOMAINVAL view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Procurement Domain Values view
VDM.viewType #BASIC view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor view
AbapCatalog.preserveKey true view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY Name domname Domain
KEY Language ddlanguage Lang.
KEY DomainValue domvalue_l Lower Value
DomainText ddtext Short text

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 I_ProcurementDomainValues.
-- 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: IMMDOMAINVAL

CREATE VIEW I_ProcurementDomainValues AS
SELECT
  domname AS Name,
  ddlanguage AS Language,
  domvalue_l AS DomainValue,
  ddtext AS DomainText
;