C_PPS_PurReqItemDelivAddressTP

DDL: C_PPS_PURREQITEMDELIVADDRESSTP Type: view_entity CONSUMPTION

Purchase Request Item Delivery Address

C_PPS_PurReqItemDelivAddressTP is a Consumption CDS View that provides data about "Purchase Request Item Delivery Address" in SAP S/4HANA. It reads from 1 data source (R_PPS_PurReqItemDelivAddressTP) and exposes 20 fields with key field PPSPurchaseRequestItemUUID.

Data Sources (1)

SourceAliasJoin Type
R_PPS_PurReqItemDelivAddressTP R_PPS_PurReqItemDelivAddressTP projection

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
EndUserText.label Purchase Request Item Delivery Address view
ObjectModel.sapObjectNodeType.name PPS_PurReqItemDeliveryAddress view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
Feature SW:PPS_NG_MVP2025 view

Fields (20)

KeyFieldSource TableSource FieldDescription
KEY PPSPurchaseRequestItemUUID PPSPurchaseRequestItemUUID
PPSPurchaseRequestUUID PPSPurchaseRequestUUID
PPSPurchaseRequest PPSPurchaseRequest Purch.Reqn.
PPSPurchaseRequestItem PPSPurchaseRequestItem Requisn. item
PurchasingDeliveryAddressType PurchasingDeliveryAddressType Delivery Addr Type
AddressTypeDesclocalized
Plant Plant Valuation Area
PlantName _Plant PlantName Plant Name
StorageLocation StorageLocation StorageLocation
StorageLocationName _StorageLocationAddress StorageLocationName Storage Loc. Name
DeliveryAddressID DeliveryAddressID Address
StreetName StreetName Text
Region Region Venue Region
PostalCode PostalCode Postal Code
FullName FullName Name
BusinessPartnerName2 BusinessPartnerName2 Name 2
CityName CityName Name
Country Country Venue: Ctry/Reg
_Region _Region
_Country _Country

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_PPS_PurReqItemDelivAddressTP.
-- 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_PPS_PurReqItemDelivAddressTP AS
SELECT
  PPSPurchaseRequestItemUUID,
  PPSPurchaseRequestUUID,
  PPSPurchaseRequest,
  PPSPurchaseRequestItem,
  PurchasingDeliveryAddressType,
  _AddressTypeText.AddressTypeDesc : localized AS AddressTypeDesclocalized,
  Plant,
  _Plant.PlantName AS PlantName,
  StorageLocation,
  _StorageLocationAddress.StorageLocationName AS StorageLocationName,
  DeliveryAddressID,
  StreetName,
  Region,
  PostalCode,
  FullName,
  BusinessPartnerName2,
  CityName,
  Country
FROM R_PPS_PurReqItemDelivAddressTP
;