R_CustRetDelivItemSerialNmbrTP

DDL: R_CUSTRETDELIVITEMSERIALNMBRTP Type: view_entity TRANSACTIONAL Package: RAP_LE_RET

Customer Returns Deliv Item SrlNmbr - TP

R_CustRetDelivItemSerialNmbrTP is a Transactional CDS View that provides data about "Customer Returns Deliv Item SrlNmbr - TP" in SAP S/4HANA. It reads from 1 data source (I_SerialNumberDeliveryDocument) and exposes 7 fields with key fields CustomerReturnDelivery, CustomerReturnDeliveryItem, SerialNumber. It has 1 association to related views. Part of development package RAP_LE_RET.

Data Sources (1)

SourceAliasJoin Type
I_SerialNumberDeliveryDocument CustomerReturnsDelivSerialNmbr from

Associations (1)

CardinalityTargetAliasCondition
[1..1] R_CustomerReturnsDeliveryTP _Delivery $projection.CustomerReturnDelivery = _Delivery.CustomerReturnDelivery

Annotations (9)

NameValueLevelField
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
VDM.viewType #TRANSACTIONAL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.representativeKey SerialNumber view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Customer Returns Deliv Item SrlNmbr - TP view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CustomerReturnDelivery DeliveryDocument Outbound Delivery
KEY CustomerReturnDeliveryItem DeliveryDocumentItem Outb. Delivery Item
KEY SerialNumber SerialNumber Serial Number
Equipment Equipment Equipment check
Material Material Vehicle Model
_Item _Item
_Delivery _Delivery

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 R_CustRetDelivItemSerialNmbrTP.
-- 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 R_CustRetDelivItemSerialNmbrTP AS
SELECT
  DeliveryDocument AS CustomerReturnDelivery,
  DeliveryDocumentItem AS CustomerReturnDeliveryItem,
  SerialNumber,
  Equipment,
  Material
FROM I_SerialNumberDeliveryDocument AS CustomerReturnsDelivSerialNmbr
LEFT OUTER JOIN R_CustomerReturnsDeliveryTP AS _Delivery ON CustomerReturnDelivery = _Delivery.CustomerReturnDelivery  -- association [1..1]
;