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

C_RDPDeliveryDocumentDEX

DDL: C_RDPDELIVERYDOCUMENTDEX Type: view CONSUMPTION

Delivery Documents Extractor for RDP

C_RDPDeliveryDocumentDEX (Consumption)

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

Sales Document · Cross Applications

C_RDPDeliveryDocumentDEX is a Consumption CDS View (Fact) that provides data about "Delivery Documents Extractor for RDP" in SAP S/4HANA. It reads from 1 data source (I_DeliveryDocument) and exposes 16 fields with key field DeliveryDocument. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Circular Economy
StatusOverall goods movement status
Purpose
This CDS view is used by SAP Responsible Design and Production for the data extraction of relevant delivery documents. The view provides the necessary data based upon delivery documents. See also CDS view I_DeliveryDocument . See Delivery Document . Note: This CDS view supports delta extraction.

Prerequisites
Since the CDS entity uses a privileged access control, access is only possible through the data extraction runtime or through other CDS access controls. Therefore, no additional authorizations are needed.

Structure
Field Name Description DeliveryDocument Number of the delivery document DeliveryDocumentType Type of the delivery document SalesOrganization Sales organization OverallSDProcessStatus Overall processing status of a customer return OverallGoodsMovementStatus Overall goods movement status Further important fields Important fields in this view include the following: Field Name Description ShipToParty ID ShipToPartyCountry Country/region of the ship-to business partner ShipToPartyRegion State/province of the ship-to business partner CreatedByUser Administrative information CreationDate CreationTime LastChangedByUser LastChangeDate DeletionIndicator

SAP Business Warehouse (SAP BW) Extraction
Data extraction type Full (physical deletions are possible in source tables) Delta (change data capture)

View on SAP Help Portal →

SAP API Hub

StateDeprecated
Line of BusinessCross Applications
Application ComponentSUS-RDP-INT
CapabilitiesData Source for Data Extraction
PackageCross Applications for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view is used by SAP Responsible Design and Production for the data extraction of relevant delivery documents. The view provides the necessary data based upon delivery documents. See also CDS view I_DeliveryDocument. See Delivery Document.</p> <p>Note: This CDS view supports delta extraction.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_DeliveryDocument I_DeliveryDocument from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_SDDocumentCompletePartners _SDDocumentCompletePartners $projection.DeliveryDocument = _SDDocumentCompletePartners.SDDocument and _SDDocumentCompletePartners.SDDocumentItem = '000000' and _SDDocumentCompletePartners.PartnerFunction = 'WE' and ( _SDDocumentCompletePartners.SDDocPartnerAddressRefType = 'D' or _SDDocumentCompletePartners.SDDocPartnerAddressRefType = 'E' or _SDDocumentCompletePartners.SDDocPartnerAddressRefType = 'F' )

Annotations (21)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName CRDPDELIVDOCDEX view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.sapObjectNodeType.name SalesDocument view
ObjectModel.modelingPattern #NONE view
Consumption.semanticObject SalesDocument view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
AccessControl.personalData.blocking #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
EndUserText.label Delivery Documents Extractor for RDP view
Analytics.dataCategory #FACT view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
VDM.lifecycle.status #DEPRECATED view
VDM.lifecycle.successor C_SustDeliveryDocumentDEX view

Fields (16)

KeyFieldSource TableSource FieldDescription
KEY DeliveryDocument DeliveryDocument Outbound Delivery
DeliveryDocumentType DeliveryDocumentType Delivery Type
SalesOrganization SalesOrganization Sales Organization
ShipToParty ShipToParty Ship-To Party (obsolete)
ShipToPartyAddressID _SDDocumentCompletePartners AddressID Ship-to address
ShipToPartyCountry Country/Region Key
ShipToPartyRegion Region (State, Province, County)
ActualGoodsMovementDate ActualGoodsMovementDate Actual Goods Movement Date
OverallSDProcessStatus OverallSDProcessStatus Overall Processing Status (Header/All Items)
OverallGoodsMovementStatus OverallGoodsMovementStatus Goods Movement Status (All Items)
CreatedByUser CreatedByUser Name of Person Responsible for Creating the Object
CreationDate CreationDate Record Created On
CreationTime CreationTime Time of Change
LastChangedByUser LastChangedByUser Name of Person Who Changed Object
LastChangeDate LastChangeDate Last Changed On
DeletionIndicator DeletionIndicator Document deletion indicator

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 C_RDPDeliveryDocumentDEX.
-- 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.

CREATE VIEW C_RDPDeliveryDocumentDEX AS
SELECT
  DeliveryDocument,
  DeliveryDocumentType,
  SalesOrganization,
  ShipToParty,
  _SDDocumentCompletePartners.AddressID AS ShipToPartyAddressID,
  _SDDocumentCompletePartners._DfltAddrRprstn.Country AS ShipToPartyCountry,
  _SDDocumentCompletePartners._DfltAddrRprstn.Region AS ShipToPartyRegion,
  ActualGoodsMovementDate,
  OverallSDProcessStatus,
  OverallGoodsMovementStatus,
  CreatedByUser,
  CreationDate,
  CreationTime,
  LastChangedByUser,
  LastChangeDate,
  DeletionIndicator
FROM I_DeliveryDocument
LEFT OUTER JOIN I_SDDocumentCompletePartners AS _SDDocumentCompletePartners ON DeliveryDocument = _SDDocumentCompletePartners.SDDocument AND _SDDocumentCompletePartners.SDDocumentItem = '000000' AND _SDDocumentCompletePartners.PartnerFunction = 'WE' AND ( _SDDocumentCompletePartners.SDDocPartnerAddressRefType = 'D' OR _SDDocumentCompletePartners.SDDocPartnerAddressRefType = 'E' OR _SDDocumentCompletePartners.SDDocPartnerAddressRefType = 'F' )  -- association [0..1]
;