I_DeliveryPriority

DDL: I_DELIVERYPRIORITY SQL: ILEDELIVPRIO Type: view BASIC

Delivery Priority

I_DeliveryPriority (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

Delivery Priority · Supply Chain

I_DeliveryPriority is a Basic CDS View (Dimension) that provides data about "Delivery Priority" in SAP S/4HANA. It reads from 1 data source (tprio) and exposes 3 fields with key field DeliveryPriority. It has 1 association to related views.

SAP API Hub

StateC1
Line of BusinessSupply Chain
Application ComponentLE-SHP-GF
CapabilitiesData Source in SQL Select, Data Source for Defining CDS Entities, Analytical Dimension, Data Source for Search
PackageSupply Chain for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view is the basic interface view for Delivery Priority.</p> <p>You can use this CDS view to build your own consumption view on top.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
tprio tprio from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_DeliveryPriorityText _Text $projection.DeliveryPriority = _Text.DeliveryPriority

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey DeliveryPriority view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
Search.searchable true view
EndUserText.label Delivery Priority view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ILEDELIVPRIO view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name DeliveryPriority view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY DeliveryPriority lprio Delivery Priority
DeliveryPriorityDesc Description
_Text _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_DeliveryPriority.
-- 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: ILEDELIVPRIO

CREATE VIEW I_DeliveryPriority AS
SELECT
  lprio AS DeliveryPriority,
  cast(_Text[1: Language=$session.system_language].DeliveryPriorityDesc as bezei30) AS DeliveryPriorityDesc
FROM tprio
LEFT OUTER JOIN I_DeliveryPriorityText AS _Text ON DeliveryPriority = _Text.DeliveryPriority  -- association [0..*]
;