R_PPS_PurReqnDelivAddrDraft

DDL: R_PPS_PURREQNDELIVADDRDRAFT SQL: DLVADDRDRAFT_SQL Type: view 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 66 fields with key fields PurchaseRequisition, PurchaseRequisitionItem, DraftUUID.

Data Sources (1)

SourceAliasJoin Type
pps_pr_deladdr_d pps_pr_deladdr_d from

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName DLVADDRDRAFT_SQL view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Purchase Reqn Delivery Address - Draft view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
Metadata.ignorePropagatedAnnotations true view

Fields (66)

KeyFieldSource TableSource FieldDescription
KEY PurchaseRequisition purchaserequisition Requisition
KEY PurchaseRequisitionItem purchaserequisitionitem Requisn. item
KEY DraftUUID draftuuid UUID
ParentDraftUUID parentdraftuuid NodeID
PurchaseRequisitionDraftUUID purchasereqndraftuuid Draft Document ID
AddressType addresstype Address Type
AddressID addressid Ship-to address
Plant plant Valuation Area
StorageLocation storagelocation StorageLocation
ManualDeliveryAddressID manualdeliveryaddressid Address Number
ItemDeliveryAddressID itemdeliveryaddressid Address
CareOfName careofname c/o
AdditionalStreetSuffixName additionalstreetsuffixname Street 5
CorrespondenceLanguage correspondencelanguage Language
PrfrdCommMediumType prfrdcommmediumtype Comm. Method
POBox pobox PO Box
POBoxIsWithoutNumber poboxiswithoutnumber PO Box w/o No.
POBoxPostalCode poboxpostalcode PO Box Postal Code
POBoxLobbyName poboxlobbyname PO Box Lobby
POBoxDeviatingCityName poboxdeviatingcityname PO Box City
POBoxDeviatingRegion poboxdeviatingregion PO Region
POBoxDeviatingCountry poboxdeviatingcountry PO Box C/R
DeliveryServiceTypeCode deliveryservicetypecode Delvry Serv Type
DeliveryServiceNumber deliveryservicenumber Delivery Service No.
AddressTimeZone addresstimezone Time Zone
FullName fullname Name
CityName cityname Name
District district District Court
CityCode citycode IATA: City
HomeCityName homecityname Different City
PostalCode postalcode Postal Code
CompanyPostalCode companypostalcode Company Post Cd
StreetName streetname Text
StreetPrefixName streetprefixname Street 2
AdditionalStreetPrefixName additionalstreetprefixname Street 3
StreetSuffixName streetsuffixname Street 4
HouseNumber housenumber House Number
HouseNumberSupplementText housenumbersupplementtext Supplement
Building building Building code
Floor floor Floor
RoomNumber roomnumber Room Number
Country country Venue: Ctry/Reg
Region region Venue Region
County county Wyoming County
FormOfAddress formofaddress Title Key
BusinessPartnerName1 businesspartnername1 Name
BusinessPartnerName2 businesspartnername2 Name 2
Nation nation Country/Region
PhoneNumber phonenumber Telephone no.
FaxNumber faxnumber Fax Number
SearchTerm1 searchterm1 Search Term 1
BusinessPartnerName3 businesspartnername3 Name 3
BusinessPartnerName4 businesspartnername4 Name 4
TaxJurisdiction taxjurisdiction Tax Jurisdiction
TransportZone transportzone Transport Zone
Person person Person/ Farm/ Field
PlantText planttext Plant Name
RequestedDeliveryDate requesteddeliverydate Requested Delivery Date
AddressTypeDesc addresstypedesc Short Description
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

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.
-- SQL view name: DLVADDRDRAFT_SQL

CREATE VIEW R_PPS_PurReqnDelivAddrDraft AS
SELECT
  PurchaseRequisition,
  PurchaseRequisitionItem,
  DraftUUID,
  ParentDraftUUID,
  purchasereqndraftuuid AS PurchaseRequisitionDraftUUID,
  AddressType,
  AddressID,
  Plant,
  StorageLocation,
  ManualDeliveryAddressID,
  ItemDeliveryAddressID,
  CareOfName,
  AdditionalStreetSuffixName,
  CorrespondenceLanguage,
  PrfrdCommMediumType,
  POBox,
  POBoxIsWithoutNumber,
  POBoxPostalCode,
  POBoxLobbyName,
  POBoxDeviatingCityName,
  POBoxDeviatingRegion,
  POBoxDeviatingCountry,
  DeliveryServiceTypeCode,
  DeliveryServiceNumber,
  AddressTimeZone,
  FullName,
  CityName,
  District,
  CityCode,
  HomeCityName,
  PostalCode,
  CompanyPostalCode,
  StreetName,
  StreetPrefixName,
  AdditionalStreetPrefixName,
  StreetSuffixName,
  HouseNumber,
  HouseNumberSupplementText,
  Building,
  Floor,
  RoomNumber,
  Country,
  Region,
  County,
  FormOfAddress,
  BusinessPartnerName1,
  BusinessPartnerName2,
  Nation,
  PhoneNumber,
  FaxNumber,
  SearchTerm1,
  BusinessPartnerName3,
  BusinessPartnerName4,
  TaxJurisdiction,
  TransportZone,
  Person,
  PlantText,
  RequestedDeliveryDate,
  AddressTypeDesc,
  DraftEntityCreationDateTime,
  DraftEntityLastChangeDateTime,
  DraftAdministrativeDataUUID,
  DraftEntityOperationCode,
  HasActiveEntity,
  DraftFieldChanges,
  PurchaseReqnDraftUUID
FROM pps_pr_deladdr_d
;