I_PartialDeliveryItem

DDL: I_PARTIALDELIVERYITEM SQL: IPARTDELITM Type: view BASIC

Partial Delivery Control Item

I_PartialDeliveryItem (Basic)

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

SD Partial Delivery Code · Supply Chain

I_PartialDeliveryItem is a Basic CDS View that provides data about "Partial Delivery Control Item" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field PartialDeliveryIsAllowed. 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, Data Source for Data Extraction
PackageSupply Chain for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view is the basic interface view for partial delivery control.</p> <p>You can use this CDS view to build your own consumption view on top.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PartialDeliveryItemText _Text $projection.PartialDeliveryIsAllowed = _Text.PartialDeliveryIsAllowed

Annotations (16)

NameValueLevelField
EndUserText.label Partial Delivery Control Item view
AbapCatalog.sqlViewName IPARTDELITM view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
ObjectModel.resultSet.sizeCategory #XS view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey PartialDeliveryIsAllowed view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MASTER view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
Search.searchable true view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name SDPartialDeliveryCode view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PartialDeliveryIsAllowed Partial delivery at item level
_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_PartialDeliveryItem.
-- 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: IPARTDELITM

CREATE VIEW I_PartialDeliveryItem AS
SELECT
  cast ( cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as kztlf ) AS PartialDeliveryIsAllowed
FROM dd07l
LEFT OUTER JOIN I_PartialDeliveryItemText AS _Text ON PartialDeliveryIsAllowed = _Text.PartialDeliveryIsAllowed  -- association [0..*]
;