R_PPS_PurReqnDelivAddrDraft

DDL: R_PPS_PURREQNDELIVADDRDRAFT Type: view_entity BASIC

Purchase Reqn Delivery Address - Draft

R_PPS_PurReqnDelivAddrDraft is a Basic CDS View that provides data about "Purchase Reqn Delivery Address - Draft" in SAP S/4HANA. It reads from 1 data source (pps_pr_deladdr_d) and exposes 31 fields with key fields PurchaseRequisition, PurchaseRequisitionItem, DraftUUID.

Data Sources (1)

SourceAliasJoin Type
pps_pr_deladdr_d pps_pr_deladdr_d from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchase Reqn Delivery Address - Draft view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view

Fields (31)

KeyFieldSource TableSource FieldDescription
KEY PurchaseRequisition purchaserequisition Requisition
KEY PurchaseRequisitionItem purchaserequisitionitem Requisn. item
KEY DraftUUID draftuuid UUID
ParentDraftUUID parentdraftuuid NodeID
PurchaseRequisitionDraftUUID purchasereqndraftuuid Draft Document ID
AddressID addressid Ship-to address
PurchasingDeliveryAddressType purchasingdeliveryaddresstype Delivery Addr Type
Plant plant Valuation Area
StorageLocation storagelocation StorageLocation
ItemDeliveryAddressID itemdeliveryaddressid Address
FullName fullname Name
CityName cityname Name
PostalCode postalcode Postal Code
StreetName streetname Text
HouseNumber housenumber House Number
Country country Venue: Ctry/Reg
Region region Venue Region
FormOfAddress formofaddress Title Key
BusinessPartnerName2 businesspartnername2 Name 2
RequestedDeliveryDate requesteddeliverydate Requested Delivery Date
DeliveryAddressID deliveryaddressid Address
DraftEntityCreationDateTime draftentitycreationdatetime Draft Created On
DraftEntityLastChangeDateTime draftentitylastchangedatetime Draft Last Changed On
DraftAdministrativeDataUUID draftadministrativedatauuid UUID
DraftEntityOperationCode draftentityoperationcode Draft - Operation Code
HasActiveEntity hasactiveentity TRUE
DraftFieldChanges draftfieldchanges Field Changes
PurchaseReqnDraftUUID purchasereqndraftuuid Draft Document ID
Customer customer Sold-to Party
PurchasingDocumentCategory purchasingdocumentcategory Doc. Category
PurchasingDocumentItemCategory purchasingdocumentitemcategory Item Category

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_PPS_PurReqnDelivAddrDraft.
-- 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_PPS_PurReqnDelivAddrDraft AS
SELECT
  PurchaseRequisition,
  PurchaseRequisitionItem,
  DraftUUID,
  ParentDraftUUID,
  purchasereqndraftuuid AS PurchaseRequisitionDraftUUID,
  AddressID,
  PurchasingDeliveryAddressType,
  Plant,
  StorageLocation,
  ItemDeliveryAddressID,
  FullName,
  CityName,
  PostalCode,
  StreetName,
  HouseNumber,
  Country,
  Region,
  FormOfAddress,
  BusinessPartnerName2,
  RequestedDeliveryDate,
  DeliveryAddressID,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges,
  PurchaseReqnDraftUUID,
  Customer,
  PurchasingDocumentCategory,
  PurchasingDocumentItemCategory
FROM pps_pr_deladdr_d
;